added smaler mining area
This commit is contained in:
@@ -5,11 +5,14 @@ import tkinter as tk
|
||||
|
||||
class DiggingOverlay(threading.Thread):
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self, large_display=True):
|
||||
threading.Thread.__init__(self)
|
||||
self.root = tk.Tk
|
||||
self.EnemyLabel = tk.Label
|
||||
self.TkPosition = '1440x1150+570+22'
|
||||
if large_display:
|
||||
self.TkPosition = '1440x1150+570+22'
|
||||
else:
|
||||
self.TkPosition = '1440x210+560+700'
|
||||
self.setDaemon(True)
|
||||
self.start()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user