Bugfix in string output.

This commit is contained in:
2023-04-04 18:14:54 -04:00
parent 6a5f0596e0
commit 2b214f8934
+1 -1
View File
@@ -357,7 +357,7 @@ public class InfoCmd extends AbstractDevCmd {
if (mobBase != null) { if (mobBase != null) {
output += "Mobbbase: " + mobBase.getObjectUUID(); output += "Mobbbase: " + mobBase.getObjectUUID();
output += newline; output += newline;
output += "Flags: " + targetNPC.getMobBase().getFlags().toString(); output += "Flags: " + mobBase.getFlags().toString();
} }
output += newline; output += newline;