mirror of
https://github.com/SimplexDevelopment/Uncraftables.git
synced 2025-07-03 09:26:42 +00:00
Fixed result amount issue
Fixed an issue where results only gave one item for crafting regardless of how many were set during the initial recipe creation.
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package dev.coomware;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
@ -18,10 +19,12 @@ public class Uncraftables extends JavaPlugin {
|
||||
@Override
|
||||
public void onEnable() {
|
||||
new Craftable(this).craftables();
|
||||
new CraftingListener(this);
|
||||
Bukkit.getLogger().info("[Uncraftables] successfully loaded all recipes.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user