Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Derecho_a_Transitar.py
diff options
context:
space:
mode:
Diffstat (limited to 'Derecho_a_Transitar.py')
-rw-r--r--Derecho_a_Transitar.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/Derecho_a_Transitar.py b/Derecho_a_Transitar.py
index 2f5078a..b06bffc 100644
--- a/Derecho_a_Transitar.py
+++ b/Derecho_a_Transitar.py
@@ -235,43 +235,43 @@ class gtkplug(gtk.Plug):
widget.destroy()
if game == "FGR_T0101":
from FGR_T0101 import FGR_T0101
- juego = FGR_T0101()
+ juego = FGR_T0101(self.usuario)
elif game == "FGR_T0102":
from FGR_T0102 import FGR_T0102
- juego = FGR_T0102()
+ juego = FGR_T0102(self.usuario)
elif game == "FGR_T0201":
from FGR_T0201 import FGR_T0201
- juego = FGR_T0201()
+ juego = FGR_T0201(self.usuario)
elif game == "FGR_T0202":
from FGR_T0202 import FGR_T0202
- juego = FGR_T0202()
+ juego = FGR_T0202(self.usuario)
elif game == "FGR_T0301":
from FGR_T0301 import FGR_T0301
- juego = FGR_T0301()
+ juego = FGR_T0301(self.usuario)
elif game == "FGR_T0302":
from FGR_T0302 import FGR_T0302
- juego = FGR_T0302()
+ juego = FGR_T0302(self.usuario)
elif game == "FGR_T0303":
from FGR_T0303 import FGR_T0303
- juego = FGR_T0303()
+ juego = FGR_T0303(self.usuario)
elif game == "FGR_T0401":
from FGR_T0401 import FGR_T0401
- juego = FGR_T0401()
+ juego = FGR_T0401(self.usuario)
elif game == "FGR_T0402":
from FGR_T0402 import FGR_T0402
- juego = FGR_T0402()
+ juego = FGR_T0402(self.usuario)
elif game == "FGR_T0501":
from FGR_T0501 import FGR_T0501
- juego = FGR_T0501()
+ juego = FGR_T0501(self.usuario)
elif game == "FGR_T0502":
from FGR_T0502 import FGR_T0502
- juego = FGR_T0502()
+ juego = FGR_T0502(self.usuario)
elif game == "FGR_T0503":
from FGR_T0503 import FGR_T0503
- juego = FGR_T0503()
+ juego = FGR_T0503(self.usuario)
elif game == "FGR_T0504":
from FGR_T0504 import FGR_T0504
- juego = FGR_T0504()
+ juego = FGR_T0504(self.usuario)
juego.connect("run_grupo", self.run_grupo)
juego.run()
return False