(String name, float volume, float pitch)
| 1016 | } |
| 1017 | |
| 1018 | public void playSound(String name, float volume, float pitch) |
| 1019 | { |
| 1020 | if (!this.isSilent()) |
| 1021 | { |
| 1022 | this.worldObj.playSoundAtEntity(this, name, volume, pitch); |
| 1023 | } |
| 1024 | } |
| 1025 | |
| 1026 | /** |
| 1027 | * @return True if this entity will not play sounds |
no test coverage detected