Merge pull request #143 from vemerion/master
Fix cubozoa and end fish getting smaller after every reload
This commit is contained in:
commit
a802b4e77d
2 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ public class CubozoaEntity extends SchoolingFishEntity {
|
|||
public void writeCustomDataToTag(CompoundTag tag) {
|
||||
super.writeCustomDataToTag(tag);
|
||||
tag.putByte("Variant", (byte) getVariant());
|
||||
tag.putByte("Scale", (byte) getScale());
|
||||
tag.putByte("Scale", dataTracker.get(SCALE));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -69,7 +69,7 @@ public class EndFishEntity extends SchoolingFishEntity {
|
|||
public void writeCustomDataToTag(CompoundTag tag) {
|
||||
super.writeCustomDataToTag(tag);
|
||||
tag.putByte("Variant", (byte) getVariant());
|
||||
tag.putByte("Scale", (byte) getScale());
|
||||
tag.putByte("Scale", dataTracker.get(SCALE));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue