In the file sh_boost_store.gnut, the functions ClientCommand_Deposit and ClientCommand_Withdraw do not check if the Boost Store is open before executing their operations.
Relevant code:
bool function ClientCommand_Deposit( entity player, array<string> args )
{
// if ( !BoostStoreOpen() )
// return true;
...
}
bool function ClientCommand_Withdraw( entity player, array<string> args )
{
// if ( !BoostStoreOpen() )
// return true;
...
}
In the file
sh_boost_store.gnut, the functionsClientCommand_DepositandClientCommand_Withdrawdo not check if the Boost Store is open before executing their operations.Relevant code: