diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-24 11:26:26 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-02-24 11:26:26 -0500 |
commit | 293df1887f4b849e96d06530c722bd39afb7b72b (patch) | |
tree | 15a817edeac161c2eadbc25fb5be2fe86c0005dc /src/script.c | |
parent | b71b10623b31065a9a29b43938cf602087bcfc73 (diff) |
Fix comment typo
Diffstat (limited to 'src/script.c')
-rw-r--r-- | src/script.c | 2 |
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) |