Advertisement
Kapa3a

fix double map after teleport

Feb 13th, 2024 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | Source Code | 0 0
  1. search :
  2.  
  3.     def Destroy(self):
  4.         miniMap.UnregisterAtlasWindow()
  5.         self.ClearDictionary()
  6.         self.AtlasMainWindow = None
  7.         self.tooltipAtlasClose = 0
  8.         self.tooltipInfo = None
  9.         self.infoGuildMark = None
  10.         self.board = None
  11.  
  12. change :
  13.  
  14.     def Destroy(self):
  15.         self.Hide()
  16.         miniMap.UnregisterAtlasWindow()
  17.         self.ClearDictionary()
  18.         self.AtlasMainWindow = None
  19.         self.tooltipAtlasClose = 0
  20.         self.tooltipInfo = None
  21.         self.infoGuildMark = None
  22.         self.board = None
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement