mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-27 02:14:18 +00:00
Name spawn areas (#1636)
This commit is contained in:
@@ -82,7 +82,7 @@ void Helicopter::Exit()
|
||||
|
||||
if (GameState()->GetCurrentAct() == LegoGameState::e_act1) {
|
||||
SpawnPlayer(
|
||||
LegoGameState::e_unk40,
|
||||
LegoGameState::e_helicopterSpawn,
|
||||
TRUE,
|
||||
IslePathActor::c_spawnBit1 | IslePathActor::c_playMusic | IslePathActor::c_spawnBit3
|
||||
);
|
||||
|
||||
@@ -355,7 +355,7 @@ void IslePathActor::RegisterSpawnLocations()
|
||||
JukeboxScript::c_PoliceStation_Music
|
||||
);
|
||||
g_spawnLocations[16] = SpawnLocation(
|
||||
LegoGameState::e_unk40,
|
||||
LegoGameState::e_helicopterSpawn,
|
||||
g_isleScript,
|
||||
0,
|
||||
"edg02_51",
|
||||
@@ -379,7 +379,7 @@ void IslePathActor::RegisterSpawnLocations()
|
||||
JukeboxScript::c_noneJukebox
|
||||
);
|
||||
g_spawnLocations[18] = SpawnLocation(
|
||||
LegoGameState::e_unk43,
|
||||
LegoGameState::e_dunebuggySpawn,
|
||||
g_isleScript,
|
||||
0,
|
||||
"edg02_35",
|
||||
@@ -391,7 +391,7 @@ void IslePathActor::RegisterSpawnLocations()
|
||||
JukeboxScript::c_noneJukebox
|
||||
);
|
||||
g_spawnLocations[19] = SpawnLocation(
|
||||
LegoGameState::e_unk44,
|
||||
LegoGameState::e_racecarSpawn,
|
||||
g_isleScript,
|
||||
0,
|
||||
"EDG03_01",
|
||||
@@ -403,7 +403,7 @@ void IslePathActor::RegisterSpawnLocations()
|
||||
JukeboxScript::c_noneJukebox
|
||||
);
|
||||
g_spawnLocations[20] = SpawnLocation(
|
||||
LegoGameState::e_unk45,
|
||||
LegoGameState::e_jetskiSpawn,
|
||||
g_isleScript,
|
||||
0,
|
||||
"edg10_70",
|
||||
@@ -475,7 +475,7 @@ void IslePathActor::RegisterSpawnLocations()
|
||||
JukeboxScript::c_noneJukebox
|
||||
);
|
||||
g_spawnLocations[26] = SpawnLocation(
|
||||
LegoGameState::e_unk52,
|
||||
LegoGameState::e_towTrackHookedUp,
|
||||
g_isleScript,
|
||||
0,
|
||||
"edg02_19",
|
||||
|
||||
@@ -67,7 +67,7 @@ void Jetski::Animate(float p_time)
|
||||
// FUNCTION: LEGO1 0x1007e6f0
|
||||
void Jetski::Exit()
|
||||
{
|
||||
SpawnPlayer(LegoGameState::e_unk45, FALSE, c_spawnBit1 | c_playMusic | c_spawnBit3);
|
||||
SpawnPlayer(LegoGameState::e_jetskiSpawn, FALSE, c_spawnBit1 | c_playMusic | c_spawnBit3);
|
||||
IslePathActor::Exit();
|
||||
GameState()->m_currentArea = LegoGameState::e_jetski;
|
||||
RemoveFromWorld();
|
||||
|
||||
@@ -432,7 +432,7 @@ MxLong TowTrack::HandleClick()
|
||||
}
|
||||
|
||||
if (m_state->m_state == TowTrackMissionState::e_hookedUp) {
|
||||
SpawnPlayer(LegoGameState::e_unk52, TRUE, 0);
|
||||
SpawnPlayer(LegoGameState::e_towTrackHookedUp, TRUE, 0);
|
||||
FindROI("rcred")->SetVisibility(FALSE);
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user