mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Accidentally changed the wrong SaveElevatorThinker call to SaveCrumbleThinker
This commit is contained in:
parent
554de0e0f5
commit
f4282718dc
1 changed files with 2 additions and 2 deletions
|
@ -2399,7 +2399,7 @@ static void P_NetArchiveThinkers(void)
|
|||
}
|
||||
else if (th->function.acp1 == (actionf_p1)T_CameraScanner)
|
||||
{
|
||||
SaveCrumbleThinker(th, tc_camerascanner);
|
||||
SaveElevatorThinker(th, tc_camerascanner);
|
||||
continue;
|
||||
}
|
||||
else if (th->function.acp1 == (actionf_p1)T_Scroll)
|
||||
|
@ -2424,7 +2424,7 @@ static void P_NetArchiveThinkers(void)
|
|||
}
|
||||
else if (th->function.acp1 == (actionf_p1)T_StartCrumble)
|
||||
{
|
||||
SaveElevatorThinker(th, tc_startcrumble);
|
||||
SaveCrumbleThinker(th, tc_startcrumble);
|
||||
continue;
|
||||
}
|
||||
else if (th->function.acp1 == (actionf_p1)T_MarioBlock)
|
||||
|
|
Loading…
Reference in a new issue