From b4e54fc9a2b3955689e48c02402d8090516ccae1 Mon Sep 17 00:00:00 2001 From: flavio Date: Fri, 06 Apr 2012 20:53:07 +0000 Subject: Correcciones --- (limited to 'Derecho_a_Transitar.py') 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 -- cgit v0.9.1