From: Jeremy Stanley Date: Fri, 9 Nov 2018 21:54:21 +0000 (+0000) Subject: Move commands into a separate command module X-Git-Tag: 0.0.1~40 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=e25d11c16634028eaf5a498adf0aacc0ad9ffda0;hp=e25d11c16634028eaf5a498adf0aacc0ad9ffda0 Move commands into a separate command module For ease of maintainability, move all the mudpy.misc.command_*() functions into their own module accessible via mudpy.command.*() instead. In order to accomplish this, User objects now carry a universe attribute so that commands they call can identify the correct universe object in which to act. Alphabetize the command functions, update the corresponding function calls in the command elements, add the new module to the API documentation, and include it in the dynamic module reload list. ---