mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +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 posInit() {}
|
||||
public void postInit() {}
|
||||
}
|
||||
|
|
|
@ -116,13 +116,13 @@ public class Unicopia implements IGuiHandler {
|
|||
}
|
||||
|
||||
@EventHandler
|
||||
public void posInit(FMLPostInitializationEvent event) {
|
||||
public void postInit(FMLPostInitializationEvent event) {
|
||||
craftingManager.load();
|
||||
|
||||
Pages.instance().load();
|
||||
|
||||
Biome.REGISTRY.forEach(UEntities::registerSpawnEntries);
|
||||
UClient.instance().posInit();
|
||||
UClient.instance().postInit();
|
||||
|
||||
UItems.fixRecipes();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue