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-b93c2d0d6712
master
akirschbaum 2016-06-19 15:13:49 +00:00
parent 591b77cb83
commit 2fc8c10923
1 changed files with 2 additions and 1 deletions

View File

@ -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)))