Rename and clean up MapleClient

This commit is contained in:
P0nk
2021-09-09 21:13:48 +02:00
parent da8837710a
commit b07e6799dc
425 changed files with 1110 additions and 1109 deletions

View File

@@ -19,7 +19,7 @@
*/
package server;
import client.MapleClient;
import client.Client;
import client.inventory.Equip;
import client.inventory.Item;
import config.YamlConfig;
@@ -173,11 +173,11 @@ class PairedQuicksort {
}
public class MapleStorageInventory {
private MapleClient c;
private Client c;
private Map<Short, Item> inventory = new LinkedHashMap<>();
private byte slotLimit;
public MapleStorageInventory(MapleClient c, List<Item> toSort) {
public MapleStorageInventory(Client c, List<Item> toSort) {
this.inventory = new LinkedHashMap<>();
this.slotLimit = (byte)toSort.size();
this.c = c;