Open Squizzy opened 3 months ago
in minescript.py: def log(message: str) -> bool:
if not message: return CallScriptFunction("log", message)
return is not implemented correctly.
possible correction: if not message: return False else CallScriptFunction("log", message) return True
in minescript.py: def log(message: str) -> bool:
return is not implemented correctly.
possible correction: if not message: return False else CallScriptFunction("log", message) return True