tiny cleanup

This commit is contained in:
m 2023-05-12 21:52:08 -05:00
parent 1050340b86
commit 4fe501cf80

View File

@ -16,7 +16,6 @@ namespace script
utils::hook::detour db_findxassetheader_hook; utils::hook::detour db_findxassetheader_hook;
utils::hook::detour load_gametype_script_hook; utils::hook::detour load_gametype_script_hook;
utils::hook::detour server_script_checksum_hook;
utils::hook::detour gscr_get_bgb_remaining_hook; utils::hook::detour gscr_get_bgb_remaining_hook;
std::unordered_map<std::string, game::RawFile*> loaded_scripts; std::unordered_map<std::string, game::RawFile*> loaded_scripts;
@ -59,8 +58,7 @@ namespace script
loaded_scripts[name] = rawfile; loaded_scripts[name] = rawfile;
const auto base_name = name.substr(0, name.size() - 4); // .gsc suffix will be readded by Scr_LoadScript game::Scr_LoadScript(game::SCRIPTINSTANCE_SERVER, name.substr(0, name.size() - 4).data()); // .gsc suffix will be readded by Scr_LoadScript
game::Scr_LoadScript(game::SCRIPTINSTANCE_SERVER, base_name.data());
} }
void load_scripts_folder(const std::string& script_dir) void load_scripts_folder(const std::string& script_dir)