1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-09 23:00:57 -05:00

add example module to game interface. convert gi command registration to a iw4madmin request

This commit is contained in:
RaidMax
2023-06-06 12:08:58 -05:00
parent e47e0661c8
commit c24e838bb5
7 changed files with 167 additions and 22 deletions

View File

@ -542,11 +542,11 @@ OnExecuteCommand( event )
{
if ( IsDefined( executionContextEntity ) )
{
response = executionContextEntity [[command]]( event, data );
response = executionContextEntity thread [[command]]( event, data );
}
else
{
[[command]]( event );
thread [[command]]( event );
}
}
else