Fixes crash with player detectors, closes #973

(cherry picked from commit 58ff71b)
This commit is contained in:
modmuss50 2017-02-13 10:17:34 +00:00
parent a1c438e752
commit 2a543b4170
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA

View file

@ -119,7 +119,7 @@ public class BlockPlayerDetector extends BlockMachineBase implements ITexturedBl
newType = "all";
}
world.setBlockState(pos, state.withProperty(TYPE, newType));
if (!world.isRemote) {
if (world.isRemote) {
ChatUtils.sendNoSpamMessages(MessageIDs.playerDetectorID, new TextComponentString(
TextFormatting.GRAY + I18n.translateToLocal("techreborn.message.detects") + " " + color
+ StringUtils.toFirstCapital(newType)));