mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Don't register DungeonLoot to the event bus
This commit is contained in:
parent
d49d29b7e9
commit
4a16be41c9
7 changed files with 9 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"parent": "forge:item/bucket",
|
"parent": "neoforge:item/bucket",
|
||||||
"fluid": "actuallyadditions:canola_oil",
|
"fluid": "actuallyadditions:canola_oil",
|
||||||
"loader": "forge:fluid_container"
|
"loader": "neoforge:fluid_container"
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"parent": "forge:item/bucket",
|
"parent": "neoforge:item/bucket",
|
||||||
"fluid": "actuallyadditions:crystallized_oil",
|
"fluid": "actuallyadditions:crystallized_oil",
|
||||||
"loader": "forge:fluid_container"
|
"loader": "neoforge:fluid_container"
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"parent": "forge:item/bucket",
|
"parent": "neoforge:item/bucket",
|
||||||
"fluid": "actuallyadditions:empowered_oil",
|
"fluid": "actuallyadditions:empowered_oil",
|
||||||
"loader": "forge:fluid_container"
|
"loader": "neoforge:fluid_container"
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"parent": "forge:item/bucket",
|
"parent": "neoforge:item/bucket",
|
||||||
"fluid": "actuallyadditions:refined_canola_oil",
|
"fluid": "actuallyadditions:refined_canola_oil",
|
||||||
"loader": "forge:fluid_container"
|
"loader": "neoforge:fluid_container"
|
||||||
}
|
}
|
|
@ -15,17 +15,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"announce_to_chat": true,
|
|
||||||
"background": "minecraft:textures/blocks/stone.png",
|
"background": "minecraft:textures/blocks/stone.png",
|
||||||
"description": {
|
"description": {
|
||||||
"translate": "achievement.actuallyadditions.craftPhantomface.desc"
|
"translate": "achievement.actuallyadditions.craftPhantomface.desc"
|
||||||
},
|
},
|
||||||
"frame": "task",
|
|
||||||
"hidden": false,
|
|
||||||
"icon": {
|
"icon": {
|
||||||
"item": "actuallyadditions:phantom_itemface"
|
"item": "actuallyadditions:phantom_itemface"
|
||||||
},
|
},
|
||||||
"show_toast": true,
|
|
||||||
"title": {
|
"title": {
|
||||||
"translate": "achievement.actuallyadditions.craftPhantomface"
|
"translate": "achievement.actuallyadditions.craftPhantomface"
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,17 +5,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"display": {
|
"display": {
|
||||||
"announce_to_chat": true,
|
|
||||||
"background": "minecraft:textures/gui/advancements/backgrounds/stone.png",
|
"background": "minecraft:textures/gui/advancements/backgrounds/stone.png",
|
||||||
"description": {
|
"description": {
|
||||||
"translate": "achievement.actuallyadditions.openBooklet.desc"
|
"translate": "achievement.actuallyadditions.openBooklet.desc"
|
||||||
},
|
},
|
||||||
"frame": "task",
|
|
||||||
"hidden": false,
|
|
||||||
"icon": {
|
"icon": {
|
||||||
"item": "actuallyadditions:booklet"
|
"item": "actuallyadditions:booklet"
|
||||||
},
|
},
|
||||||
"show_toast": true,
|
|
||||||
"title": {
|
"title": {
|
||||||
"translate": "achievement.actuallyadditions.openBooklet"
|
"translate": "achievement.actuallyadditions.openBooklet"
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,7 +106,7 @@ public class ActuallyAdditions {
|
||||||
NeoForge.EVENT_BUS.addListener(this::serverStarted);
|
NeoForge.EVENT_BUS.addListener(this::serverStarted);
|
||||||
NeoForge.EVENT_BUS.addListener(this::serverStopped);
|
NeoForge.EVENT_BUS.addListener(this::serverStopped);
|
||||||
NeoForge.EVENT_BUS.register(new CommonEvents());
|
NeoForge.EVENT_BUS.register(new CommonEvents());
|
||||||
NeoForge.EVENT_BUS.register(new DungeonLoot());
|
// NeoForge.EVENT_BUS.register(new DungeonLoot());
|
||||||
NeoForge.EVENT_BUS.addListener(ActuallyAdditions::reloadEvent);
|
NeoForge.EVENT_BUS.addListener(ActuallyAdditions::reloadEvent);
|
||||||
NeoForge.EVENT_BUS.addListener(Worm::onHoe);
|
NeoForge.EVENT_BUS.addListener(Worm::onHoe);
|
||||||
InitFluids.init(eventBus);
|
InitFluids.init(eventBus);
|
||||||
|
|
Loading…
Reference in a new issue