MobLoot usage
This commit is contained in:
@@ -61,6 +61,8 @@ public class MobileFSM {
|
||||
if (mob == null) {
|
||||
return;
|
||||
}
|
||||
if (mob.isGuard())
|
||||
awakeNPCguard(mob);
|
||||
STATE state = mob.state;
|
||||
switch (state) {
|
||||
case Idle:
|
||||
|
||||
@@ -90,12 +90,12 @@ public class LootManager {
|
||||
break;
|
||||
}
|
||||
//iterate the booty tables and add items to mob inventory
|
||||
Item toAdd = getGenTableItem(bse.lootTable, mob);
|
||||
MobLoot toAdd = getGenTableItem(bse.lootTable, mob);
|
||||
if (toAdd != null) {
|
||||
mob.getCharItemManager().addItemToInventory(toAdd);
|
||||
}
|
||||
if (inHotzone) {
|
||||
Item toAddHZ = getGenTableItem(bse.lootTable + 1, mob);
|
||||
MobLoot toAddHZ = getGenTableItem(bse.lootTable + 1, mob);
|
||||
if (toAddHZ != null)
|
||||
mob.getCharItemManager().addItemToInventory(toAddHZ);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user