mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-03 23:19:18 +00:00
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:
parent
fc990ee050
commit
0ed8ec40e8
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue