From b30ff1735263417ea894f685b98db3c9e9123e02 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 9 Jan 2022 05:28:19 -0600 Subject: [PATCH] Add anim freeze type const --- scripts/shared/const.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 80ac8964..4d27d354 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -67,7 +67,7 @@ const VRR_ANIMTYPE_SHARED = 3; // Forces this animation to play const VRR_ANIMTYPE_SPECIALACTION = 4; // This animtype uses a special action (only in SA) const VRR_ANIMTYPE_SURRENDER = 5; // This animtype is used to surrender (like handsup or cower) const VRR_ANIMTYPE_FORCED = 6; // This animtype is forced (can't use stopanim to get out of it) -const VRR_ANIMTYPE_FREEZE = 6; // This animtype is forced (can't use stopanim to get out of it) +const VRR_ANIMTYPE_FREEZE = 7; // This animtype is forced (can't use stopanim to get out of it) // Animation Move Types const VRR_ANIMMOVE_NONE = 0;