forked from metin2/client
Added game files from TMP4
This commit is contained in:
@ -124,7 +124,7 @@ class TargetBoard(ui.ThinBoard):
|
||||
self.nameLength = 0
|
||||
self.vid = 0
|
||||
self.eventWhisper = None
|
||||
self.isShowButton = FALSE
|
||||
self.isShowButton = False
|
||||
|
||||
self.__Initialize()
|
||||
self.ResetTargetBoard()
|
||||
@ -138,7 +138,7 @@ class TargetBoard(ui.ThinBoard):
|
||||
self.nameString = ""
|
||||
self.nameLength = 0
|
||||
self.vid = 0
|
||||
self.isShowButton = FALSE
|
||||
self.isShowButton = False
|
||||
|
||||
def Destroy(self):
|
||||
self.eventWhisper = None
|
||||
@ -286,7 +286,7 @@ class TargetBoard(ui.ThinBoard):
|
||||
|
||||
def ShowDefaultButton(self):
|
||||
|
||||
self.isShowButton = TRUE
|
||||
self.isShowButton = True
|
||||
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_WHISPER])
|
||||
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_EXCHANGE])
|
||||
self.showingButtonList.append(self.buttonDict[localeInfo.TARGET_BUTTON_FIGHT])
|
||||
@ -295,7 +295,7 @@ class TargetBoard(ui.ThinBoard):
|
||||
button.Show()
|
||||
|
||||
def HideAllButton(self):
|
||||
self.isShowButton = FALSE
|
||||
self.isShowButton = False
|
||||
for button in self.showingButtonList:
|
||||
button.Hide()
|
||||
self.showingButtonList = []
|
||||
@ -370,7 +370,7 @@ class TargetBoard(ui.ThinBoard):
|
||||
|
||||
def OnPressEscapeKey(self):
|
||||
self.OnPressedCloseButton()
|
||||
return TRUE
|
||||
return True
|
||||
|
||||
def IsShowButton(self):
|
||||
return self.isShowButton
|
||||
|
Reference in New Issue
Block a user