Created
March 28, 2015 00:08
-
-
Save Ivorforce/a5f6d46c1e8690b3a70d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2014, Lukas Tenbrink. | |
* * http://lukas.axxim.net | |
*/ | |
package ivorius.reccomplex.utils; | |
import cpw.mods.fml.relauncher.ReflectionHelper; | |
import net.minecraft.world.WorldServer; | |
import java.lang.reflect.*; | |
/** | |
* Created by lukas on 28.03.15. | |
*/ | |
public class RCAccessorWorldServer | |
{ | |
private static Class<?> worldServerServerBlockEventListClass; | |
private static Field blockEventListArrayField; | |
private static Constructor<?> blockEventListConstructor; | |
public static void ensureBlockEventArray(WorldServer worldServer) | |
{ | |
if (worldServerServerBlockEventListClass == null) | |
{ | |
try | |
{ | |
worldServerServerBlockEventListClass = Class.forName("net.minecraft.world.WorldServer$ServerBlockEventList"); | |
} | |
catch (ClassNotFoundException e) | |
{ | |
e.printStackTrace(); | |
} | |
} | |
if (blockEventListArrayField == null) | |
blockEventListArrayField = ReflectionHelper.findField(WorldServer.class, "field_147490_S"); | |
if (blockEventListConstructor == null) | |
{ | |
blockEventListConstructor = worldServerServerBlockEventListClass.getDeclaredConstructors()[0]; | |
blockEventListConstructor.setAccessible(true); | |
} | |
try | |
{ | |
if (blockEventListArrayField.get(worldServer) == null) | |
{ | |
Object instance = Array.newInstance(worldServerServerBlockEventListClass, 2); | |
Array.set(instance, 0, blockEventListConstructor.newInstance()); | |
Array.set(instance, 1, blockEventListConstructor.newInstance()); | |
blockEventListArrayField.set(worldServer, instance); | |
} | |
} | |
catch (IllegalAccessException | InstantiationException | InvocationTargetException e) | |
{ | |
e.printStackTrace(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment