home · contact · privacy
Server, plugin: Refactor ai (plugin hooks).
[plomrogue] / client / window_management.py
index 141cc656b6e92fa81427b704f9c87e006eabd570..610764b5402bf69fd83b57c5ad94243acf64b616 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 import curses
 import types
 
@@ -90,6 +95,8 @@ def set_windows():
     curses.endwin()
     stdscr = curses.initscr()
     screen_size = stdscr.getmaxyx()
+    global windows
+    windows = []
     for config in windows_config:
         size = size_window(config["config"])
         window = Window(config["title"], config["func"], size)