Wave spawning improvements

This commit is contained in:
Anuken
2021-01-25 10:28:36 -05:00
parent f16990edcb
commit 4630e5b3a4
5 changed files with 22 additions and 15 deletions

View File

@@ -888,6 +888,7 @@ public class LExecutor{
String strValue =
v.objval == null ? "null" :
v.objval instanceof String s ? s :
v.objval == Blocks.stoneWall ? "solid" : //special alias
v.objval instanceof MappableContent content ? content.name :
v.objval instanceof Content ? "[content]" :
v.objval instanceof Building build ? build.block.name :