diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 95145188a..2253f9857 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,6 @@ Changes towards version 0.3: +- Fixed starship location when being teleported from Procyon to + the Earth Starbase after the Precursor bomb is installed. - Svdb - Crew death on planet is now counted properly in all cases (bug #70) -Mika - Fixed lockup in 'save failed' alert box (bug #397), from ghakko - Fixed glitch in Pkunk animation (bug #354), from Paxtez diff --git a/sc2/src/sc2code/comm/chmmr/chmmrc.c b/sc2/src/sc2code/comm/chmmr/chmmrc.c index 91d0bee3a..49b5239b9 100644 --- a/sc2/src/sc2code/comm/chmmr/chmmrc.c +++ b/sc2/src/sc2code/comm/chmmr/chmmrc.c @@ -162,8 +162,8 @@ ExitConversation (RESPONSE_REF R) /* Magic numbers for Earth */ GLOBAL (ip_location.x) = -725; GLOBAL (ip_location.y) = 597; - GLOBAL (ShipStamp.origin.x) = 71; - GLOBAL (ShipStamp.origin.y) = 97; + GLOBAL (ShipStamp.origin.x) = 86 - SAFE_X; + GLOBAL (ShipStamp.origin.y) = 113 - SAFE_Y; } }