Merge branch 'main' into main

This commit is contained in:
caiocinel
2026-01-20 20:21:16 -03:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -704,6 +704,9 @@ class GameWindow(ui.ScriptWindow):
def OpenQuestWindow(self, skin, idx):
self.interface.OpenQuestWindow(skin, idx)
def BINARY_ClearQuest(self, index):
self.interface.BINARY_ClearQuest(index)
def AskGuildName(self):
guildNameBoard = uiCommon.InputDialog()

View File

@@ -108,6 +108,8 @@ class BeltInventoryWindow(ui.ScriptWindow):
ui.ScriptWindow.__init__(self)
self.AddFlag("float")
self.isLoaded = 0
self.wndInventory = wndInventory
@@ -1106,6 +1108,9 @@ class InventoryWindow(ui.ScriptWindow):
if None != self.tooltipItem:
self.tooltipItem.SetTop()
if self.wndBelt:
self.wndBelt.SetTop()
def OnPressEscapeKey(self):
self.Close()
return True