fix Amanda C012 bug

Fixes the player being able to tie amanda when they shouldn't be able to
on stages between 20 and 610 due to missing lower bound check.
This commit is contained in:
gambit 2024-10-11 17:27:48 +03:00
parent fc990ee050
commit 0ed8ec40e8

View file

@ -262,7 +262,7 @@ function C012_AfterClass_Amanda_Click() {
}
// Amanda can be restrained to pleasure the player on stage 633
if ((C012_AfterClass_Amanda_CurrentStage <= 633) && (ClickInv != "") && (ClickInv != "Player") && !Common_PlayerRestrained && !ActorIsRestrained()) {
if ((C012_AfterClass_Amanda_CurrentStage >= 630) && (C012_AfterClass_Amanda_CurrentStage <= 633) && (ClickInv != "") && (ClickInv != "Player") && !Common_PlayerRestrained && !ActorIsRestrained()) {
if ((ClickInv == "Rope") || (ClickInv == "Cuffs") || (ClickInv == "Armbinder")) {
ActorApplyRestrain(ClickInv);
C012_AfterClass_Amanda_CalcParams();