Removed the null checks.

This commit is contained in:
Sollace 2018-08-22 21:55:30 +02:00
parent 4aecea94cb
commit f5e0e355ae

View file

@ -69,7 +69,7 @@ public class GuiSkinsMineLP extends GuiSkins {
return; return;
} }
mc.getSoundHandler().playSound(PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_BREWING_STAND_BREW, 1)); playSound(SoundEvents.BLOCK_BREWING_STAND_BREW);
isWet = wet; isWet = wet;
localPlayer.releaseTextures(); localPlayer.releaseTextures();
@ -84,8 +84,9 @@ public class GuiSkinsMineLP extends GuiSkins {
@Override @Override
public void onSetLocalSkin(Type type) { public void onSetLocalSkin(Type type) {
super.onSetLocalSkin(type); super.onSetLocalSkin(type);
MineLittlePony.logger.debug("Invalidating old local skin, checking updated local skin"); MineLittlePony.logger.debug("Invalidating old local skin, checking updated local skin");
if (ponyManager != null && type == Type.SKIN) { if (type == Type.SKIN) {
ponyManager.removePony(localPlayer.getLocal(Type.SKIN).getTexture()); ponyManager.removePony(localPlayer.getLocal(Type.SKIN).getTexture());
} }
} }
@ -95,7 +96,7 @@ public class GuiSkinsMineLP extends GuiSkins {
super.onSetRemoteSkin(type, location, profileTexture); super.onSetRemoteSkin(type, location, profileTexture);
MineLittlePony.logger.debug("Invalidating old remote skin, checking updated remote skin"); MineLittlePony.logger.debug("Invalidating old remote skin, checking updated remote skin");
if (ponyManager != null && type == Type.SKIN) { if (type == Type.SKIN) {
ponyManager.removePony(location); ponyManager.removePony(location);
} }
} }