mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-11 17:31:06 +01:00
Implement Slime.set/getSize()
This commit is contained in:
parent
cd50683f78
commit
9f30c9f8f4
1 changed files with 11 additions and 0 deletions
|
@ -16,4 +16,15 @@ public class CraftSlime extends CraftLivingEntity implements Slime {
|
||||||
return "CraftSlime";
|
return "CraftSlime";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public EntitySlime getHandle() {
|
||||||
|
return (EntitySlime) super.getHandle();
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSize() {
|
||||||
|
return getHandle().c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSize(int size) {
|
||||||
|
getHandle().e(size);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue