mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-24 01:22:23 +08:00
feat: Some small additions (#755)
This commit is contained in:
@ -27,12 +27,13 @@ namespace big
|
||||
void IS_DLC_PRESENT(rage::scrNativeCallContext* src)
|
||||
{
|
||||
const auto hash = src->get_arg<rage::joaat_t>(0);
|
||||
|
||||
bool return_value = DLC::IS_DLC_PRESENT(hash);
|
||||
|
||||
BOOL return_value = DLC::IS_DLC_PRESENT(hash);
|
||||
|
||||
if (hash == 0x96F02EE6)
|
||||
return_value = return_value || g.settings.dev_dlc;
|
||||
|
||||
src->set_return_value(return_value);
|
||||
src->set_return_value<BOOL>(return_value);
|
||||
}
|
||||
|
||||
void NETWORK_SET_THIS_SCRIPT_IS_NETWORK_SCRIPT(rage::scrNativeCallContext* src)
|
||||
|
Reference in New Issue
Block a user