fix(Spectate): Inverted FREEZE_ENTITY_POSITION toggle

This commit is contained in:
Yimura 2022-03-30 23:40:49 +02:00
parent 3314208e4e
commit 13c9a57575
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -19,7 +19,7 @@ namespace big
NETWORK::NETWORK_SET_IN_SPECTATOR_MODE(false, -1);
HUD::SET_MINIMAP_IN_SPECTATOR_MODE(false, -1);
ENTITY::FREEZE_ENTITY_POSITION(PLAYER::PLAYER_PED_ID(), true);
ENTITY::FREEZE_ENTITY_POSITION(PLAYER::PLAYER_PED_ID(), false);
}
return;
@ -30,7 +30,7 @@ namespace big
NETWORK::NETWORK_SET_IN_SPECTATOR_MODE(true, target);
HUD::SET_MINIMAP_IN_SPECTATOR_MODE(true, target);
ENTITY::FREEZE_ENTITY_POSITION(PLAYER::PLAYER_PED_ID(), false);
ENTITY::FREEZE_ENTITY_POSITION(PLAYER::PLAYER_PED_ID(), true);
bReset = false;
}