Crash landing: Fix post-intro plane placement so it cannot slide into the lava #1615

objectmenu
Sven Eberhardt 2016-01-16 12:20:27 -05:00
parent 2cd5236339
commit 915ae02178
4 changed files with 5 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -28,10 +28,8 @@ func InitializeObjects()
var Tree_Coniferous2003 = CreateObjectAbove(Tree_Coniferous2, 347, 565);
var Tree_Coniferous2004 = CreateObjectAbove(Tree_Coniferous2, 422, 558);
CreateObjectAbove(Tree_Coniferous2, 1329, 384);
CreateObjectAbove(Tree_Coniferous2, 1364, 364);
CreateObjectAbove(Tree_Coniferous2, 1389, 327);
CreateObjectAbove(Tree_Coniferous2, 1295, 398);
CreateObjectAbove(Tree_Coniferous2, 1404, 390);
CreateObjectAbove(Tree_Coniferous2, 1290, 403);
CreateObject(Fern, 1331, 701);
CreateObject(Fern, 1468, 661);
@ -143,7 +141,7 @@ func InitializeObjects()
CreateObject(Loam, 1360, 781);
CreateObject(Loam, 1519, 721);
CreateObject(Loam, 1348, 718);
CreateObject(Loam, 1379, 349);
CreateObject(Loam, 1358, 388);
CreateObject(Loam, 559, 1120);
CreateObject(Loam, 505, 850);
CreateObject(Loam, 517, 858);

View File

@ -259,8 +259,8 @@ func Intro_Stop()
if (plane)
{
plane->FaceLeft();
plane->SetR(-130);
plane->SetPosition(1387, 238);
plane->SetR(-90);
plane->SetPosition(1387, 345);
}
return true;
}