mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-23 01:42:19 -05:00
[Enhancement] Include minigame ammo in infinite ammo cheat (#1973)
This commit is contained in:
parent
c569a46933
commit
1ae4e2c1f7
@ -1874,7 +1874,9 @@ void func_808337D4(PlayState* play, Player* this) {
|
||||
this->actor.shape.rot.y, 0, 0);
|
||||
if (spawnedActor != NULL) {
|
||||
if ((explosiveType != 0) && (play->bombchuBowlingStatus != 0)) {
|
||||
play->bombchuBowlingStatus--;
|
||||
if (!CVar_GetS32("gInfiniteAmmo", 0)) {
|
||||
play->bombchuBowlingStatus--;
|
||||
}
|
||||
if (play->bombchuBowlingStatus == 0) {
|
||||
play->bombchuBowlingStatus = -1;
|
||||
}
|
||||
@ -2515,9 +2517,13 @@ s32 func_808350A4(PlayState* play, Player* this) {
|
||||
func_80834380(play, this, &item, &arrowType);
|
||||
|
||||
if (gSaveContext.minigameState == 1) {
|
||||
play->interfaceCtx.hbaAmmo--;
|
||||
if (!CVar_GetS32("gInfiniteAmmo", 0)) {
|
||||
play->interfaceCtx.hbaAmmo--;
|
||||
}
|
||||
} else if (play->shootingGalleryStatus != 0) {
|
||||
play->shootingGalleryStatus--;
|
||||
if (!CVar_GetS32("gInfiniteAmmo", 0)) {
|
||||
play->shootingGalleryStatus--;
|
||||
}
|
||||
} else {
|
||||
Inventory_ChangeAmmo(item, -1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user