diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-07 21:50:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-07 21:50:21 -0300 |
commit | e1c24b018e674c7fbab98bc9bab802c67f5f43ac (patch) | |
tree | 1fb72687902a5904982d41fcd31424c5e2021fdc | |
parent | 735389e9e0146660d7c12b44d8e2b22739d4ac0f (diff) | |
download | serverdata-e1c24b018e674c7fbab98bc9bab802c67f5f43ac.tar.gz serverdata-e1c24b018e674c7fbab98bc9bab802c67f5f43ac.tar.bz2 serverdata-e1c24b018e674c7fbab98bc9bab802c67f5f43ac.tar.xz serverdata-e1c24b018e674c7fbab98bc9bab802c67f5f43ac.zip |
Move main.txt priority up in the load order.
This means functions which relies on other critical functions goes to utils,
the smallest of critical functions block (subject to be reverted)
-rw-r--r-- | npc/scripts.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/scripts.conf b/npc/scripts.conf index 12f0b1ac6..dfb082c4e 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -2,10 +2,10 @@ // Critical functions "npc/functions/permissions.txt", -"npc/functions/array.txt", -"npc/functions/math.txt", "npc/functions/string.txt", "npc/functions/main.txt", +"npc/functions/array.txt", +"npc/functions/math.txt", "npc/functions/util.txt", // General-purpose Framework functions |