1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #3326 from guizhanss/fix/smithing-table-listener

This commit is contained in:
Daniel Walsh 2021-10-28 02:31:17 +01:00 committed by GitHub
commit 82978f7d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -613,7 +613,6 @@ public final class Slimefun extends JavaPlugin implements SlimefunAddon {
new CauldronListener(this); new CauldronListener(this);
new GrindstoneListener(this); new GrindstoneListener(this);
new CartographyTableListener(this); new CartographyTableListener(this);
new SmithingTableListener(this);
new ButcherAndroidListener(this); new ButcherAndroidListener(this);
new MiningAndroidListener(this); new MiningAndroidListener(this);
new NetworkListener(this, networkManager); new NetworkListener(this, networkManager);
@ -632,6 +631,7 @@ public final class Slimefun extends JavaPlugin implements SlimefunAddon {
// Piglins were added in 1.16 // Piglins were added in 1.16
if (minecraftVersion.isAtLeast(MinecraftVersion.MINECRAFT_1_16)) { if (minecraftVersion.isAtLeast(MinecraftVersion.MINECRAFT_1_16)) {
new PiglinListener(this); new PiglinListener(this);
new SmithingTableListener(this);
} }
// Item-specific Listeners // Item-specific Listeners