Removed useless null

This commit is contained in:
Fabrizio La Rosa 2020-06-19 15:51:57 +02:00
parent cb586ee840
commit 8a601a605c

View File

@ -46,7 +46,7 @@ public class Spawner implements Listener {
spawner.setMaxSpawnDelay(400);
} else {
try {
Object MobSpawner = null;
Object MobSpawner;
try {
Field TileEntityMobSpawnerField = spawner.getClass().getDeclaredField("spawner");