From: Digital X. <dig...@us...> - 2007-04-14 22:34:17
|
Update of /cvsroot/openrpg/openrpg1/plugins In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21947/plugins Modified Files: xxsimpleinit.py Log Message: minor bug fix Index: xxsimpleinit.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/plugins/xxsimpleinit.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** xxsimpleinit.py 19 Feb 2007 04:21:28 -0000 1.6 --- xxsimpleinit.py 14 Apr 2007 22:34:16 -0000 1.7 *************** *** 27,31 **** self.plugin_addcommand('/rollinit', self.rollInit, '- This will roll a new set of Inits', False) self.plugin_addcommand('/startcombat', self.startInit, '- This will start the combat', False) ! self.plugin_addcommand('/nextPlayer', self.advanceInit, '- This will advance the Initiative to the next Player', False) self.plugin_addcommand('/stopcombat', self.stopInit, '- This will end the combat', False) self.plugin_addcommand('/pausecombat', self.pauseInit, '- This will pause the auto Advancer', False) --- 27,31 ---- self.plugin_addcommand('/rollinit', self.rollInit, '- This will roll a new set of Inits', False) self.plugin_addcommand('/startcombat', self.startInit, '- This will start the combat', False) ! self.plugin_addcommand('/nextplayer', self.advanceInit, '- This will advance the Initiative to the next Player', False) self.plugin_addcommand('/stopcombat', self.stopInit, '- This will end the combat', False) self.plugin_addcommand('/pausecombat', self.pauseInit, '- This will pause the auto Advancer', False) *************** *** 48,53 **** def plugin_disabled(self): self.plugin_removecmd('/inittoggle') self.plugin_removecmd('/startcombat') ! self.plugin_removecmd('/nextPlayer') self.plugin_removecmd('/stopcombat') self.plugin_removecmd('/pausecombat') --- 48,54 ---- def plugin_disabled(self): self.plugin_removecmd('/inittoggle') + self.plugin_removecmd('/rollinit') self.plugin_removecmd('/startcombat') ! self.plugin_removecmd('/nextplayer') self.plugin_removecmd('/stopcombat') self.plugin_removecmd('/pausecombat') |