Remove "Maple" prefix from MaplePacketCreator name
This commit is contained in:
@@ -26,7 +26,7 @@ import client.MapleCharacter;
|
||||
import client.MapleClient;
|
||||
import net.AbstractMaplePacketHandler;
|
||||
import server.maps.MapleHiredMerchant;
|
||||
import tools.MaplePacketCreator;
|
||||
import tools.PacketCreator;
|
||||
import tools.data.input.SeekableLittleEndianAccessor;
|
||||
|
||||
/**
|
||||
@@ -42,13 +42,13 @@ public class RemoteStoreHandler extends AbstractMaplePacketHandler {
|
||||
if (hm.getChannel() == chr.getClient().getChannel()) {
|
||||
hm.visitShop(chr);
|
||||
} else {
|
||||
c.announce(MaplePacketCreator.remoteChannelChange((byte) (hm.getChannel() - 1)));
|
||||
c.announce(PacketCreator.remoteChannelChange((byte) (hm.getChannel() - 1)));
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
chr.dropMessage(1, "You don't have a Merchant open.");
|
||||
}
|
||||
c.announce(MaplePacketCreator.enableActions());
|
||||
c.announce(PacketCreator.enableActions());
|
||||
}
|
||||
|
||||
private static MapleHiredMerchant getMerchant(MapleClient c) {
|
||||
|
||||
Reference in New Issue
Block a user