Twilight Lich sinks in water and walks around normally as if on land
Sonicwave opened this issue ยท 5 comments
Forge version: 14.23.0.2512
Twilight Forest version: 3.2.171
When you spawn a Twilight Lich in water, it sinks to the bottom instead of floating (causing drowning damage). It also walks and jumps normally as if on land.
Might have to do with these lines of code in EntityTfLich.java (line 153)
public boolean isInLava() {
return false;
}
@Override
public boolean isInWater() {
return false;
}