More code cleanup

This commit is contained in:
Anuken
2019-03-24 21:10:59 -04:00
parent 97f5bf3cc4
commit 71c2c7ad05
25 changed files with 28 additions and 12 deletions

View File

@@ -305,9 +305,10 @@ public class Puddle extends SolidEntity implements SaveTrait, Poolable, DrawTrai
y = data.readFloat();
liquid = content.liquid(data.readByte());
targetAmount = data.readShort() / 4f;
tile = world.tile(data.readInt());
int pos = data.readInt();
tile = world.tile(pos);
map.put(tile.pos(), this);
map.put(pos, this);
}
@Override