mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-14 12:29:15 +00:00
fix operator precedent bug
This commit is contained in:
parent
bfc8745539
commit
fc990ee050
1 changed files with 2 additions and 2 deletions
|
@ -426,11 +426,11 @@ function C012_AfterClass_Amanda_ForceChangePlayer(NewCloth) {
|
|||
function C012_AfterClass_Amanda_ForceRandomBondage(BondageType) {
|
||||
if ((BondageType == "Full") || (BondageType == "Hug") || (BondageType == "Gag")) {
|
||||
PlayerRandomGag();
|
||||
if (!Common_PlayerGagged && (BondageType == "Gag")) OverridenIntroText = GetText("CantFindRestrain" + (BondageType == "Hug") ? "ForHug" : "");
|
||||
if (!Common_PlayerGagged && (BondageType == "Gag")) OverridenIntroText = GetText("CantFindRestrain" + ((BondageType == "Hug") ? "ForHug" : ""));
|
||||
}
|
||||
if ((BondageType == "Full") || (BondageType == "Hug") || (BondageType == "Restrain")) {
|
||||
PlayerRandomRestrain();
|
||||
if (!Common_PlayerRestrained) OverridenIntroText = GetText("CantFindRestrain" + (BondageType == "Hug") ? "ForHug" : "");
|
||||
if (!Common_PlayerRestrained) OverridenIntroText = GetText("CantFindRestrain" + ((BondageType == "Hug") ? "ForHug" : ""));
|
||||
}
|
||||
CurrentTime = CurrentTime + 50000;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue