Revert "movement"

This reverts commit 329cf8ad7a.
This commit is contained in:
2023-08-23 20:56:30 +03:00
parent a8bdffd3fe
commit f5f8b43b8a
22 changed files with 0 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