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.
|
Implements the command.
|
||||||
"""
|
"""
|
||||||
caller = self.caller
|
caller = self.caller
|
||||||
arg = self.args.lower()
|
arg = self.args.strip().lower()
|
||||||
if not arg in ("male", "female", "neutral"):
|
if not arg in ("male", "female", "neutral"):
|
||||||
caller.msg("Usage: @gender male|female|neutral")
|
caller.msg("Usage: @gender male|female|neutral")
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue