Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/game/SelectPartidaState.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/SelectPartidaState.py')
-rw-r--r--src/game/SelectPartidaState.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/game/SelectPartidaState.py b/src/game/SelectPartidaState.py
index cfcdfb9..276e8a9 100644
--- a/src/game/SelectPartidaState.py
+++ b/src/game/SelectPartidaState.py
@@ -409,7 +409,8 @@ class CSelectPartidaState(CGameState):
else:
ch = CSelectAreaState()
CGame().setState(ch)
- ch.setPartida(1)
+ CGame().setCurrentPartida(1)
+ #ch.setPartida(1)
return
elif self.mPartida2.clicked():
@@ -419,7 +420,8 @@ class CSelectPartidaState(CGameState):
else:
ch = CSelectAreaState()
CGame().setState(ch)
- ch.setPartida(2)
+ CGame().setCurrentPartida(2)
+ #ch.setPartida(2)
return
elif self.mPartida3.clicked():
@@ -429,7 +431,8 @@ class CSelectPartidaState(CGameState):
else:
ch = CSelectAreaState()
CGame().setState(ch)
- ch.setPartida(3)
+ CGame().setCurrentPartida(3)
+ #ch.setPartida(3)
return
x = CMouse().getX()