Rename and clean up MaplePlayerNPC

This commit is contained in:
P0nk
2021-09-09 22:12:29 +02:00
parent 2ee4cd79f6
commit f8e7a525bd
22 changed files with 94 additions and 89 deletions

View File

@@ -25,7 +25,7 @@ package client.command.commands.gm6;
import client.Client;
import client.command.Command;
import server.life.MaplePlayerNPC;
import server.life.PlayerNPC;
public class EraseAllPNpcsCommand extends Command {
{
@@ -34,6 +34,6 @@ public class EraseAllPNpcsCommand extends Command {
@Override
public void execute(Client c, String[] params) {
MaplePlayerNPC.removeAllPlayerNPC();
PlayerNPC.removeAllPlayerNPC();
}
}