Notex-3/src/kubejs/server/src/Main.hx

20 lines
575 B
Haxe
Raw Normal View History

2021-02-12 13:27:49 +01:00
package;
import kubejs.Events;
import kubejs.Settings;
import kubejs.events.server.RecipesEvent;
2021-02-12 13:27:49 +01:00
import kubejs.Events.EventType;
class Main {
static function main() {
Settings.logAddedRecipes = true;
Settings.logRemovedRecipes = true;
Settings.logSkippedRecipes = false;
Settings.logErroringRecipes = true;
2021-02-12 13:27:49 +01:00
2021-02-18 17:43:21 +01:00
Events.onEvent(EventType.ItemTagsEventType, Tags.onItemTagsEvent);
Events.onEvent(EventType.BlockTagsEventType, Tags.onBlockTagsEvent);
Events.onEvent(EventType.RecipesEventType, Recipes.onEvent);
}
2021-02-12 13:27:49 +01:00
}