Remove "Maple" prefix from MaplePacketCreator name

This commit is contained in:
P0nk
2021-08-19 21:31:57 +02:00
parent 579e3c639f
commit e184f25184
307 changed files with 2285 additions and 2328 deletions

View File

@@ -27,7 +27,7 @@ import client.creator.novice.LegendCreator;
import client.creator.novice.NoblesseCreator;
import net.AbstractMaplePacketHandler;
import tools.FilePrinter;
import tools.MaplePacketCreator;
import tools.PacketCreator;
import tools.data.input.SeekableLittleEndianAccessor;
import java.util.Arrays;
@@ -84,12 +84,12 @@ public final class CreateCharHandler extends AbstractMaplePacketHandler {
} else if (job == 2) { // Aran
status = LegendCreator.createCharacter(c, name, face, hair + haircolor, skincolor, top, bottom, shoes, weapon, gender);
} else {
c.announce(MaplePacketCreator.deleteCharResponse(0, 9));
c.announce(PacketCreator.deleteCharResponse(0, 9));
return;
}
if (status == -2) {
c.announce(MaplePacketCreator.deleteCharResponse(0, 9));
c.announce(PacketCreator.deleteCharResponse(0, 9));
}
}
}