When set to true the entity will not play sounds. @param isSilent Should the mob be set to silent?
(boolean isSilent)
| 1037 | * @param isSilent Should the mob be set to silent? |
| 1038 | */ |
| 1039 | public void setSilent(boolean isSilent) |
| 1040 | { |
| 1041 | this.dataWatcher.updateObject(4, (byte) (isSilent ? 1 : 0)); |
| 1042 | } |
| 1043 | |
| 1044 | /** |
| 1045 | * returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to |
no test coverage detected