wall render bug fixed

- wall wouldn't render if transparent-yet-sold tiles like glass is placed on top of it
This commit is contained in:
minjaesong
2017-07-15 00:02:00 +09:00
parent 75cd080023
commit dfa2a0a86d
12 changed files with 242 additions and 155 deletions

View File

@@ -1,5 +1,6 @@
package net.torvald.terrarum.console
import net.torvald.terrarum.ccO
import net.torvald.terrarum.ccW
import net.torvald.terrarum.langpack.Lang
@@ -38,7 +39,7 @@ internal object CodexEdictis : ConsoleCommand {
private fun printList() {
Echo(Lang["DEV_MESSAGE_CONSOLE_AVAILABLE_COMMANDS"])
CommandDict.dict.forEach { name, cmd ->
Echo("$ccW" + name)
Echo("$ccO" + name)
cmd.printUsage()
}
}