Method renamed for new convention.

This commit is contained in:
2023-08-26 15:35:42 -04:00
parent a4dafd7155
commit e3ad7efa4f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public class dbMobHandler extends dbHandlerBase {
this.localObjectType = engine.Enum.GameObjectType.valueOf(this.localClass.getSimpleName()); this.localObjectType = engine.Enum.GameObjectType.valueOf(this.localClass.getSimpleName());
} }
public Mob ADD_MOB(Mob toAdd) { public Mob PERSIST(Mob toAdd) {
Mob mobile = null; Mob mobile = null;
+1 -1
View File
@@ -427,7 +427,7 @@ public class Mob extends AbstractIntelligenceAgent {
Mob mob; Mob mob;
try { try {
mob = DbManager.MobQueries.ADD_MOB(mobile); mob = DbManager.MobQueries.PERSIST(mobile);
} catch (Exception e) { } catch (Exception e) {
Logger.error("SQLException:" + e.getMessage()); Logger.error("SQLException:" + e.getMessage());