mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 23:47:16 +02:00
Stripped the argument to the gendersub contrib. Resolves #749.
This commit is contained in:
parent
16de3b0c1e
commit
1d52dea746
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ class SetGender(Command):
|
|||
Implements the command.
|
||||
"""
|
||||
caller = self.caller
|
||||
arg = self.args.lower()
|
||||
arg = self.args.strip().lower()
|
||||
if not arg in ("male", "female", "neutral"):
|
||||
caller.msg("Usage: @gender male|female|neutral")
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue