This commit is contained in:
DeltaNedas 2020-10-24 17:19:50 +00:00 committed by GitHub
parent 364a2b43c2
commit 801ff1701e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -877,10 +877,10 @@ public class LExecutor{
String strValue =
v.objval == null ? "null" :
v.objval instanceof String ? (String)v.objval :
v.objval instanceof MappableContent ? "[content] " + ((MappableContent)v.objval).name :
v.objval instanceof MappableContent ? ((MappableContent)v.objval).name :
v.objval instanceof Content ? "[content]" :
v.objval instanceof Building ? "[building] " + ((Building)v.objval).block.name :
v.objval instanceof Unit ? "[unit] " + ((Unit)v.objval).type.name :
v.objval instanceof Building ? ((Building)v.objval).block.name :
v.objval instanceof Unit ? ((Unit)v.objval).type.name :
"[object]";
exec.textBuffer.append(strValue);