Rename and clean up MapleInventory
This commit is contained in:
@@ -27,7 +27,7 @@ import client.MapleCharacter;
|
||||
import client.MapleClient;
|
||||
import client.command.Command;
|
||||
import client.inventory.Equip;
|
||||
import client.inventory.MapleInventory;
|
||||
import client.inventory.Inventory;
|
||||
import client.inventory.MapleInventoryType;
|
||||
import constants.inventory.ItemConstants;
|
||||
|
||||
@@ -46,7 +46,7 @@ public class SetEqStatCommand extends Command {
|
||||
|
||||
short newStat = (short) Math.max(0, Integer.parseInt(params[0]));
|
||||
short newSpdJmp = params.length >= 2 ? (short) Integer.parseInt(params[1]) : 0;
|
||||
MapleInventory equip = player.getInventory(MapleInventoryType.EQUIP);
|
||||
Inventory equip = player.getInventory(MapleInventoryType.EQUIP);
|
||||
|
||||
for (byte i = 1; i <= equip.getSlotLimit(); i++) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user