use of buildcraft.api.filler.IFillerPattern in project BuildCraft by BuildCraft.
the class ActionFiller method resetMap.
public static void resetMap() {
actions.clear();
for (IFillerPattern pattern : FillerManager.registry.getPatterns()) {
FillerPattern fil = (FillerPattern) pattern;
actions.put(fil, new ActionFiller(fil));
}
}
Aggregations