confirmation that some tricks would not work

This commit is contained in:
minjaesong
2021-08-14 17:02:54 +09:00
parent 168e4f08b5
commit 3d5bb55514
3 changed files with 46 additions and 18 deletions

View File

@@ -120,7 +120,7 @@ object BlockCodex {
}
}*/
operator fun get(blockID: ItemID?): BlockProp {
if (blockID == null || blockID == "basegame:"+Block.NULL) {
if (blockID == null || blockID == Block.NULL) {
return nullProp
}
@@ -136,7 +136,7 @@ object BlockCodex {
// TODO fluid from other mods
if (fluidType == null || fluidType.value == 0) {
return blockProps["basegame:"+Block.AIR]!!
return blockProps[Block.AIR]!!
}
try {