Correct small syntax error in CFGamble.py

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@11286 282e977c-c81d-0410-88c4-b93c2d0d6712
master
anmaster 2009-01-30 01:45:22 +00:00
parent 3e5d3ee199
commit 309e78e3e0
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class SlotMachine:
self.maxpot = maxpot
def placebet(self,amount):
if self.slotname in not self.slotdb:
if self.slotname not in self.slotdb:
self.slotdb[self.slotname] = self.minpot+amount
else:
temp=self.slotdb[self.slotname]