mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-01 05:04:43 +02:00
Fixing merge issues, again.
This commit is contained in:
@ -5,6 +5,7 @@ import java.util.List;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.PlayerInventory;
|
||||
@ -165,7 +166,7 @@ public class SimpleRepairManager implements RepairManager {
|
||||
item.setAmount(item.getAmount() - 1);
|
||||
}
|
||||
else {
|
||||
item = new ItemStack(0);
|
||||
item = new ItemStack(Material.AIR);
|
||||
}
|
||||
|
||||
// I suspect this may not be needed, but I don't think it hurts
|
||||
|
Reference in New Issue
Block a user