online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/Log.gd')
| -rw-r--r-- | ui/Log.gd | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -21,8 +21,7 @@ static func to_str(arg) -> String: elif typeof(arg) == TYPE_STRING: return arg else: - err("Called with invalid arguments") - return "" + return str(arg) static func arr2str(arr: Array) -> String: |