Skip to content

Commit

Permalink
Suffer Crest: Suffer Crest should not increase the gauge if it is loc…
Browse files Browse the repository at this point in the history
…ked.
  • Loading branch information
JFCat authored and ManlyMarco committed Feb 22, 2021
1 parent 4620543 commit bc2ffb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KK_LewdCrestX/LewdCrestXGameController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private void Update()
var heroineInfo = _hSceneHeroines[id];
heroineInfo.TotalRoughTime += Time.deltaTime;

if (heroineInfo.CrestType == CrestType.suffer)
if (heroineInfo.CrestType == CrestType.suffer && !_hSceneProc.flags.lockGugeFemale)
_hSceneProc.flags.gaugeFemale += speed * Time.deltaTime * 2;
}
}
Expand Down

0 comments on commit bc2ffb8

Please sign in to comment.