Rename and clean up MapleShopFactory

This commit is contained in:
P0nk
2021-09-09 22:48:25 +02:00
parent 104444e83b
commit 43a80f0491
7 changed files with 21 additions and 23 deletions

View File

@@ -25,7 +25,7 @@ package client.command.commands.gm2;
import client.Client;
import client.command.Command;
import server.MapleShopFactory;
import server.ShopFactory;
public class GmShopCommand extends Command {
{
@@ -34,6 +34,6 @@ public class GmShopCommand extends Command {
@Override
public void execute(Client c, String[] params) {
MapleShopFactory.getInstance().getShop(1337).sendShop(c);
ShopFactory.getInstance().getShop(1337).sendShop(c);
}
}

View File

@@ -25,7 +25,7 @@ package client.command.commands.gm3;
import client.Client;
import client.command.Command;
import server.MapleShopFactory;
import server.ShopFactory;
public class ReloadShopsCommand extends Command {
@@ -35,6 +35,6 @@ public class ReloadShopsCommand extends Command {
@Override
public void execute(Client c, String[] params) {
MapleShopFactory.getInstance().reloadShops();
ShopFactory.getInstance().reloadShops();
}
}