[Scummvm-git-logs] scummvm master -> 662ffac79b9906fd04b753b41794969afe764a18
tag2015
noreply at scummvm.org
Fri Feb 17 14:00:13 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
662ffac79b DREAMWEB: Only enable gun action next to hovercar
Commit: 662ffac79b9906fd04b753b41794969afe764a18
https://github.com/scummvm/scummvm/commit/662ffac79b9906fd04b753b41794969afe764a18
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2023-02-17T14:54:25+01:00
Commit Message:
DREAMWEB: Only enable gun action next to hovercar
Enable gun usage when next to the hovercar instead
of the entire roof. Fixes TRAC #14038
Changed paths:
engines/dreamweb/use.cpp
diff --git a/engines/dreamweb/use.cpp b/engines/dreamweb/use.cpp
index 72094d978c7..8b03ae40bfa 100644
--- a/engines/dreamweb/use.cpp
+++ b/engines/dreamweb/use.cpp
@@ -752,7 +752,7 @@ void DreamWebEngine::useGun() {
_getBack = 1;
_vars._progressPoints++;
- } else if (_realLocation == 25) {
+ } else if (_realLocation == 25 && _mapX == 0 && _mapY == 50) {
// helicopter
showPuzText(34, 300);
_vars._lastWeapon = 1;
More information about the Scummvm-git-logs
mailing list