Merged branch 'demo_system'.

# Conflicts:
#	src/client/component/party.cpp
#	src/client/game/symbols.hpp
This commit is contained in:
Caball
2024-12-31 01:40:39 +01:00
44 changed files with 5166 additions and 228 deletions
+2 -2
View File
@@ -194,7 +194,7 @@ namespace command
void add_raw(const char* name, void (*callback)())
{
game::Cmd_AddCommandInternal(name, callback, utils::memory::get_allocator()->allocate<game::cmd_function_s>());
game::Cmd_AddCommandInternal(name, callback, utils::memory::get_allocator()->allocate<game::cmd_function_t>());
}
void add(const char* name, const std::function<void(const params&)>& callback)
@@ -321,7 +321,7 @@ namespace command
}
console::info("================================ COMMAND DUMP =====================================\n");
game::cmd_function_s* cmd = *game::cmd_functions;
game::cmd_function_t* cmd = *game::cmd_functions;
auto i = 0;
while (cmd)
{