Small fix

This commit is contained in:
Federico Cecchetto 2021-04-25 03:12:49 +02:00
parent 11cd144c35
commit 2773432da3

View File

@ -5,8 +5,8 @@
namespace scripting namespace scripting
{ {
std::unordered_map<std::string, unsigned> function_map = std::unordered_map<std::string, unsigned> function_map =
{ {
{"precacheturret", 1}, {"precacheturret", 1},
{"getweaponarray", 2}, {"getweaponarray", 2},
{"nullsub_428", 3}, {"nullsub_428", 3},
@ -618,9 +618,9 @@ namespace scripting
{"sub_7ff7de293f00", 798}, {"sub_7ff7de293f00", 798},
{"getmaxagents", 799}, {"getmaxagents", 799},
{"sub_7ff7de289110", 800}, {"sub_7ff7de289110", 800},
}; };
std::unordered_map<std::string, unsigned> method_map = std::unordered_map<std::string, unsigned> method_map =
{ {
{"thermaldrawenable", 32768}, {"thermaldrawenable", 32768},
{"playerforcedeathanim", 32769}, {"playerforcedeathanim", 32769},
@ -1768,4 +1768,5 @@ namespace scripting
{"isusingturret", 34256}, {"isusingturret", 34256},
{"begin", 34257}, {"begin", 34257},
{"nullsub_727", 34258}, {"nullsub_727", 34258},
};
} }