mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 08:17:40 +00:00
HYPNO: implemented infinite health for arcade sequences in spider
This commit is contained in:
parent
c1ee795b8d
commit
26369c7de4
@ -118,7 +118,8 @@ void SpiderEngine::missedTarget(Shoot *s, ArcadeShooting *arc) {
|
||||
if (_arcadeMode != "YC" && _arcadeMode != "YD")
|
||||
return;
|
||||
if ((uint32)(s->name[0]) == _currentPlayerPosition) {
|
||||
_health = _health - s->attackWeight;
|
||||
if (!_infiniteHealthCheat)
|
||||
_health = _health - s->attackWeight;
|
||||
hitPlayer();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user