Fix a typo in /test/python.py that broke the exp test.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@11442 282e977c-c81d-0410-88c4-b93c2d0d6712
master
anmaster 2009-02-11 12:49:47 +00:00
parent e1ed299f38
commit 945064b553
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ def do_inventory():
def do_exp(): def do_exp():
if ( len(topic) < 2 ): if ( len(topic) < 2 ):
whoami.Say("Your exp is %d, perm is %d, mult is %d"%(who.Exp, who.PermExp, who.ExpMult)) whoami.Say("Your exp is %d, perm is %d, mult is %d"%(who.Exp, who.PermExp, who.ExpMul))
whoami.Say("Syntax is: exp <value> [option] [skill]") whoami.Say("Syntax is: exp <value> [option] [skill]")
else: else:
value = int(topic[1]) value = int(topic[1])