From a5372622f33f44ac83f28bc09ff8b79cb2676ef5 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sun, 1 Jun 2025 20:29:46 +0100 Subject: Fix bad returns missed in the feature init rewrite --- src/autojump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/autojump.c') 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"); -- cgit v1.2.3-54-g00ecf