Do not use mutliple statements in one line.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@20285 282e977c-c81d-0410-88c4-b93c2d0d6712master
parent
591b77cb83
commit
2fc8c10923
|
@ -250,7 +250,8 @@ class GuildDues:
|
|||
whoami.Say("Uh? Ya wanna trick me, %s." % random.choice(buddylist))
|
||||
elif int(cost) > 1:
|
||||
plural=''
|
||||
if ucurrency.endswith('NOTE'): plural = 's'
|
||||
if ucurrency.endswith('NOTE'):
|
||||
plural = 's'
|
||||
whoami.Say("%s, you don't have %s %s%s." % (random.choice(exclaimlist), cost, currency, plural))
|
||||
else:
|
||||
whoami.Say("You don't have any %s, %s." % (currency, random.choice(buddylist)))
|
||||
|
|
Loading…
Reference in New Issue