(self)
| 916 | return {'valid':False,'entry':playerInput} |
| 917 | |
| 918 | def eventDealCards(self): |
| 919 | if self.displayEffects and not self.simulation: |
| 920 | self.elements['Console'] = 'Dealing Cards...' |
| 921 | for i in ('play1','play2','play3','play4'): |
| 922 | if i in self.players: |
| 923 | for j in range(7): |
| 924 | j #unused |
| 925 | self.dealCard(i) |
| 926 | if self.displayEffects and not self.simulation: |
| 927 | print(self.drawScreen(True)) |
| 928 | time.sleep(.1) |
| 929 | |
| 930 | def eventReverse(self): |
| 931 | if self.displayEffects and not self.simulation: |