Accidentally changed the wrong SaveElevatorThinker call to SaveCrumbleThinker

This commit is contained in:
MascaraSnake 2020-04-26 18:31:39 +02:00
parent 554de0e0f5
commit f4282718dc
1 changed files with 2 additions and 2 deletions

View File

@ -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)