From: Jeremy Stanley Date: Mon, 30 Dec 2019 17:52:01 +0000 (+0000) Subject: Make sure all command functions return True X-Git-Tag: 0.1.1^0 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;h=bc3ee2dd11df80f98cd391a094a17c20df322e7c;hp=bc3ee2dd11df80f98cd391a094a17c20df322e7c;p=mudpy.git Make sure all command functions return True Because recent adjustments to handler_active() rely on the call_handler_function() return value to determine whether something went wrong, we need command functions to return something which evaluates boolean True if they ran to completion and didn't raise an exception. Just return True from all of them for now, but they may see more dynamic result handling in the future. ---