From 9936d394bf98932db7fa601edcd53e899933e3f8 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Wed, 11 Mar 2015 21:52:29 +0100 Subject: [PATCH] Improve input validation in command_worldactive(). --- roguelike-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roguelike-server b/roguelike-server index 10fbd36..d68b4ff 100755 --- a/roguelike-server +++ b/roguelike-server @@ -1370,7 +1370,7 @@ def command_worldactive(worldactive_string): map. On activation, rebuild all Things' FOVs, and the player's map memory. """ val = integer_test(worldactive_string, 0, 1) - if val: + if None != val: if 0 != world_db["WORLD_ACTIVE"]: if 0 == val: set_world_inactive() -- 2.30.2