From 7aad31b3dc16442c971f950ca0c180df59ee3b59 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 5 Dec 2014 23:57:14 +0100 Subject: [PATCH] MUTATOR_ONREMOVE for domination should be handled this way, like in the all the other game types --- qcsrc/server/mutators/gamemode_domination.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/server/mutators/gamemode_domination.qc b/qcsrc/server/mutators/gamemode_domination.qc index 2569a49d3..8e4d929be 100644 --- a/qcsrc/server/mutators/gamemode_domination.qc +++ b/qcsrc/server/mutators/gamemode_domination.qc @@ -647,7 +647,8 @@ MUTATOR_DEFINITION(gamemode_domination) MUTATOR_ONREMOVE { - error("This is a game type and it cannot be removed at runtime."); + print("This is a game type and it cannot be removed at runtime."); + return -1; } return 0; -- 2.39.2