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

@@ -21,7 +21,7 @@
package net.packet.logging;
import client.Character;
import client.MapleClient;
import client.Client;
import net.opcodes.RecvOpcode;
import tools.FilePrinter;
import tools.HexTool;
@@ -40,7 +40,7 @@ public class MapleLogger {
public static final Set<Integer> monitored = new HashSet<>();
public static final Set<Integer> ignored = new HashSet<>();
public static void logRecv(MapleClient c, short packetId, byte[] packetContent) {
public static void logRecv(Client c, short packetId, byte[] packetContent) {
Character chr = c.getPlayer();
if (chr == null) {
return;