Tweak to set model logic.

This commit is contained in:
2023-05-09 15:16:24 -04:00
parent 8068082768
commit 7168813ba5
+5 -2
View File
@@ -184,9 +184,12 @@ public class NPC extends AbstractCharacter {
if (this.contract != null)
this.loadID = this.contract.getMobbaseID();
else
this.loadID = 2011; //default to human
this.loadID = rs.getInt("npc_raceID");
this.loadID = rs.getInt("npc_raceID");
// Default to human male
if (loadID == 0)
loadID = 2100;
this.mobBase = MobBase.getMobBase(this.loadID);
this.level = rs.getByte("npc_level");