Update to info output.

This commit is contained in:
2023-04-30 09:02:50 -04:00
parent 61b87cbba7
commit 1e208c0881
+13 -7
View File
@@ -393,10 +393,16 @@ public class InfoCmd extends AbstractDevCmd {
if (targetNPC.region != null) { if (targetNPC.region != null) {
output += newline; output += newline;
output += "BuildingID : " + targetNPC.region.parentBuildingID; output += "Region found: " + "Building : " + targetNPC.region.parentBuildingID + newline;
output += "building level : " + targetNPC.region.level; ;
output += "building room : " + targetNPC.region.room; output += "building level : " + targetNPC.region.level + newline;
} else if (targetNPC.getBuilding() != null) { output += "building room : " + targetNPC.region.room + newline;
} else {
output += newline;
output += "No region was found.";
}
if (targetNPC.getBuilding() != null) {
output += newline; output += newline;
output += "Building : " + targetNPC.getBuilding(); output += "Building : " + targetNPC.getBuilding();
} else { } else {
@@ -404,9 +410,9 @@ public class InfoCmd extends AbstractDevCmd {
output += "No building found."; output += "No building found.";
} }
break; break;
case Mob: case Mob:
Mob targetMob = (Mob) target; Mob targetMob = (Mob) target;
output += "databaseID: " + targetMob.getDBID() + newline; output += "databaseID: " + targetMob.getDBID() + newline;
output += "Name: " + targetMob.getName(); output += "Name: " + targetMob.getName();
output += newline; output += newline;
output += StringUtils.addWS("Level: " + targetMob.getLevel(), 20); output += StringUtils.addWS("Level: " + targetMob.getLevel(), 20);