various patches and renaming; thai-variable font sheet

This commit is contained in:
minjaesong
2017-05-27 20:05:12 +09:00
parent 06cbac1cc5
commit 85ab2a2066
22 changed files with 861 additions and 137 deletions

View File

@@ -126,9 +126,9 @@ internal class Filesystem(globals: Globals, computer: TerrarumComputer) {
return "$base$local".replace("//", "/")
}
private fun tryBool(action: (Unit) -> Unit): LuaValue {
private fun tryBool(action: () -> Unit): LuaValue {
try {
action(Unit)
action()
return LuaValue.valueOf(true)
}
catch (gottaCatchemAll: Exception) {