diff options
author | 2025-06-01 20:29:46 +0100 | |
---|---|---|
committer | 2025-06-01 20:29:46 +0100 | |
commit | a5372622f33f44ac83f28bc09ff8b79cb2676ef5 (patch) | |
tree | ff323f8e701db296ab537d1dbd0542d1a1986d47 /src/autojump.c | |
parent | 0f6864be9339835b7187077a6b960dbf9f055535 (diff) | |
download | sst-a5372622f33f44ac83f28bc09ff8b79cb2676ef5.tar.gz sst-a5372622f33f44ac83f28bc09ff8b79cb2676ef5.zip |
Fix bad returns missed in the feature init rewrite
Diffstat (limited to 'src/autojump.c')
-rw-r--r-- | src/autojump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autojump.c b/src/autojump.c index 6d0fbda..2656796 100644 --- a/src/autojump.c +++ b/src/autojump.c @@ -91,7 +91,7 @@ INIT { errmsg_errorx("couldn't get server-side game movement interface"); return FEAT_FAIL; } - if_cold (!unprot(gmsv)) return false; + if_cold (!unprot(gmsv)) return FEAT_FAIL; gmcl = factory_client("GameMovement001", 0); if_cold (!gmcl) { errmsg_errorx("couldn't get client-side game movement interface"); |