lang for buckets

This commit is contained in:
minjaesong
2024-09-14 22:27:46 +09:00
parent dfac9ed9a8
commit e8eae1e961
7 changed files with 36 additions and 11 deletions

View File

@@ -34,13 +34,17 @@ class EntryPoint : ModuleEntryPoint() {
// the order of invocation is important! Material should be the first as blocks and items are depend on it.
// group 0
ModMgr.GameMaterialLoader.invoke(moduleName)
ModMgr.GameFluidLoader.invoke(moduleName)
// group 1
ModMgr.GameItemLoader.invoke(moduleName)
// group 2
ModMgr.GameBlockLoader.invoke(moduleName)
ModMgr.GameOreLoader.invoke(moduleName)
ModMgr.GameFluidLoader.invoke(moduleName)
ModMgr.GameLanguageLoader.invoke(moduleName)
// group 3
ModMgr.GameCraftingRecipeLoader.invoke(moduleName)
ModMgr.GameLanguageLoader.invoke(moduleName)
ModMgr.GameAudioLoader.invoke(moduleName)
ModMgr.GameWeatherLoader.invoke(moduleName)