追溯小问题

当我在游戏中使用“swtichbot bonuschanger”时出现该错误


回溯(最近一次调用最后一次):


OnToggleDown 中的文件“ui.py”,第 1506 行


文件“switchbot.py”,第 115 行,在 Activate


AttributeError 'int' 对象没有属性 'gameWindow'


用户界面


def OnToggleDown(self):

        if self.eventDown:

            self.eventDown()  #--Line 1506

开关机.py


def Activate(self):

    self.sub_parent.resetSwitch()

    self.Status_new.SetColor(COLOR_ACTIVE)

    self.sub_parent.StatusBar.SetColor(COLOR_ACTIVE)

    self.sub_parent.StatusText.SetText("Activ")

    self.Starter.SetText("Switcher slot ("+str(self.index+1)+")")

    self.sub_parent.boni_active = 1

    if self.parentWindow.parentWindow.gameWindow != None: #--line 115

        self.sub_parent.blockBar.swib_normal.SetColor(COLOR_ACTIVE)

pass

我如何编辑它们以不再出现此错误?只是一点帮助,我是新手:D


catspeake
浏览 199回答 1
1回答

慕勒3428872

我改变了这条线if self.parentWindow.parentWindow.gameWindow != None: #--line 115有了这个if self.sub_parent.parentWindow.parentWindow.gameWindow != None:非常感谢您的时间,您是最棒的!!!
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python