the burger fix (#681)

This commit is contained in:
AstrlJelly
2024-02-04 11:15:14 -05:00
committed by minenice55
parent 94bc2c4366
commit 460c2ffc7e
3 changed files with 51 additions and 63 deletions

View File

@ -83,9 +83,9 @@ namespace HeavenStudio.Games.Scripts_ForkLifter
player.currentPerfectPeasOnFork++;
player.topbun = type == 1;
player.middleburger = type == 2;
player.bottombun = type == 3;
if (type == 1) player.topbun = true;
if (type == 2) player.middleburger = true;
if (type == 3) player.bottombun = true;
Destroy(this.gameObject);
}