blob: 748f1a6e70da7c428066ae89703cf958f5128122 [file] [log] [blame] [raw]
package appeng.api.events;
import net.minecraft.world.World;
import net.minecraftforge.event.world.WorldEvent;
import appeng.api.WorldCoord;
/**
* an error, basically just causes an update, use it if there is really an error, other wise just ignore it.
*/
public class GridErrorEvent extends AEWorldEvent {
public WorldCoord coord;
public GridErrorEvent(World world, WorldCoord wc ) {
super(world);
coord = wc;
}
}