diff --git a/python/CFGamble.py b/python/CFGamble.py index 55c236416..f904fe803 100644 --- a/python/CFGamble.py +++ b/python/CFGamble.py @@ -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]