Template now templteID to make room for the actual template.

This commit is contained in:
2023-10-20 15:20:30 -04:00
parent 6559f232a3
commit 4795a315ad
7 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -75,7 +75,7 @@ public class ZoneInfoCmd extends AbstractDevCmd {
output += newline;
output += "name: " + zone.zoneName;
output += newline;
output += "loadNum: " + zone.template;
output += "loadNum: " + zone.templateID;
if (zone.parent != null) {
output += StringUtils.addWS(", parent: " + zone.parent.getObjectUUID(), 30);
output += "Parentabs: x: " + zone.parent.absX + ", y: " + zone.parent.absY + ", z: " + zone.parent.absZ;
@@ -127,7 +127,7 @@ public class ZoneInfoCmd extends AbstractDevCmd {
for (Zone child : nodes) {
output += newline;
output += child.zoneName + " (" + child.template + ')';
output += child.zoneName + " (" + child.templateID + ')';
}
}
throwbackInfo(player, output);