mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-30 16:28:00 +01:00
Fixed a typo
This commit is contained in:
parent
b148126221
commit
29cf5b0cc8
2 changed files with 3 additions and 3 deletions
|
@ -92,5 +92,5 @@ public class UClient {
|
||||||
|
|
||||||
public void init() {}
|
public void init() {}
|
||||||
|
|
||||||
public void posInit() {}
|
public void postInit() {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,13 +116,13 @@ public class Unicopia implements IGuiHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void posInit(FMLPostInitializationEvent event) {
|
public void postInit(FMLPostInitializationEvent event) {
|
||||||
craftingManager.load();
|
craftingManager.load();
|
||||||
|
|
||||||
Pages.instance().load();
|
Pages.instance().load();
|
||||||
|
|
||||||
Biome.REGISTRY.forEach(UEntities::registerSpawnEntries);
|
Biome.REGISTRY.forEach(UEntities::registerSpawnEntries);
|
||||||
UClient.instance().posInit();
|
UClient.instance().postInit();
|
||||||
|
|
||||||
UItems.fixRecipes();
|
UItems.fixRecipes();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue