mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 04:55:47 +01:00
Implement Slime.set/getSize()
This commit is contained in:
parent
cd50683f78
commit
9f30c9f8f4
@ -16,4 +16,15 @@ public class CraftSlime extends CraftLivingEntity implements Slime {
|
||||
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 New Issue
Block a user