Removed custom exception candy
This commit is contained in:
@@ -10,13 +10,12 @@
|
||||
package engine.devcmd.cmds;
|
||||
|
||||
import engine.InterestManagement.InterestManager;
|
||||
import engine.InterestManagement.WorldGrid;
|
||||
import engine.devcmd.AbstractDevCmd;
|
||||
import engine.gameManager.BuildingManager;
|
||||
import engine.gameManager.ChatManager;
|
||||
import engine.gameManager.DbManager;
|
||||
import engine.mbEnums;
|
||||
import engine.objects.*;
|
||||
import engine.objects.AbstractGameObject;
|
||||
import engine.objects.NPC;
|
||||
import engine.objects.PlayerCharacter;
|
||||
|
||||
public class SetRaceCmd extends AbstractDevCmd {
|
||||
|
||||
@@ -30,13 +29,13 @@ public class SetRaceCmd extends AbstractDevCmd {
|
||||
|
||||
int newRace = Integer.parseInt(words[0]);
|
||||
|
||||
if(target.getObjectType().equals(mbEnums.GameObjectType.NPC) == false){
|
||||
if (target.getObjectType().equals(mbEnums.GameObjectType.NPC) == false) {
|
||||
throwbackError(player, "You Must Target An NPC");
|
||||
}
|
||||
|
||||
NPC npc = (NPC)target;
|
||||
NPC npc = (NPC) target;
|
||||
npc.loadID = newRace;
|
||||
DbManager.NPCQueries.UPDATE_RACE(npc,newRace);
|
||||
DbManager.NPCQueries.UPDATE_RACE(npc, newRace);
|
||||
InterestManager.reloadCharacter(npc);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user