feat(Self): Set other ragdoll natives to false

This commit is contained in:
Yimura 2021-12-19 13:00:17 +01:00
parent 802aee41af
commit a128160e2b

View File

@ -8,5 +8,7 @@ namespace big
Ped player = PLAYER::PLAYER_PED_ID();
PED::SET_PED_CAN_RAGDOLL(player, !g.self.no_ragdoll);
PED::SET_PED_CAN_RAGDOLL_FROM_PLAYER_IMPACT(player, !g.self.no_ragdoll);
PED::SET_PED_RAGDOLL_ON_COLLISION(player, !g.self.no_ragdoll);
}
}