summaryrefslogtreecommitdiff
path: root/src/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/script.c')
-rw-r--r--src/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.c b/src/script.c
index 701042da2..726c06543 100644
--- a/src/script.c
+++ b/src/script.c
@@ -72,7 +72,7 @@ bool8 RunScriptCommand(struct ScriptContext *ctx)
return FALSE;
case SCRIPT_MODE_NATIVE:
// Try to call a function in C
- // Continue to bytecode if no function it returns TRUE
+ // Continue to bytecode if no function or it returns TRUE
if (ctx->nativePtr)
{
if (ctx->nativePtr() == TRUE)