Refactor the window re-rendering into a utility function

This commit is contained in:
Oliver-Akins 2023-12-18 23:21:28 -07:00
parent 9d154cb303
commit b4657d18f8
2 changed files with 15 additions and 3 deletions

13
module/utils.mjs Normal file
View file

@ -0,0 +1,13 @@
export function reloadWindows(type = null) {
if (!type) {
for (const window of ui.windows) {
window.render(true);
};
return;
};
for (const window of ui.windows) {
if (window instanceof type) {
window.render(true);
};
};
};