context.put("old_current", new Element(event.getOldCurrent()));
context.put("new_current", new Element(event.getNewCurrent()));
String determination = EventManager.doEvents(Arrays.asList("redstone recalculated"), null, null, context, true);
Element det = new Element(determination);
if (det.isInt())
event.setNewCurrent(det.asInt());
}
}