This commit is contained in:
2023-08-23 13:46:08 +03:00
parent 43737ee734
commit 422d0a2ff2
22 changed files with 558 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
Encyclopedia._fillTree = Encyclopedia.fillTree
function Encyclopedia.fillTree()
include("chapters/wpeturrets")
Encyclopedia._fillTree()
local searchText = string.trim(self.searchTextBox.text)
if searchText == "" then
Encyclopedia.fillTreeCompletely()
else
Encyclopedia.fillTreeFiltered(searchText)
end
end