forked from MagicBane/Server
Writing string of bitset for contracts.
This commit is contained in:
@@ -369,7 +369,8 @@ public class InfoCmd extends AbstractDevCmd {
|
||||
output += newline;
|
||||
output += "InventorySet: " + targetNPC.getContract().inventorySet;
|
||||
output += newline;
|
||||
output += targetNPC.getContract().getAllowedBuildings().toString();
|
||||
Contract contract1 = targetNPC.getContract();
|
||||
output += contract1.allowedBuildings.toString();
|
||||
output += newline;
|
||||
output += "Extra Rune: " + targetNPC.getContract().getExtraRune();
|
||||
|
||||
@@ -383,7 +384,8 @@ public class InfoCmd extends AbstractDevCmd {
|
||||
output += newline;
|
||||
if (mobBase != null) {
|
||||
output += newline;
|
||||
output += "Slottable: " + targetNPC.getContract().getAllowedBuildings().toString();
|
||||
Contract contract = targetNPC.getContract();
|
||||
output += "Slottable: " + contract.allowedBuildings.toString();
|
||||
output += newline;
|
||||
output += "EquipSet: " + targetNPC.getEquipmentSetID();
|
||||
output += newline;
|
||||
|
||||
Reference in New Issue
Block a user