Skip to content

Commit

Permalink
- removed PCD_GetActorZ double check.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed May 31, 2017
1 parent 1465102 commit d8d4723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/p_acs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9537,7 +9537,7 @@ int DLevelScript::RunScript ()
}
else
{
STACK(1) = DoubleToACS(pcd == PCD_GETACTORX ? actor->X() : pcd == PCD_GETACTORY ? actor->Y() : actor->Z());
STACK(1) = DoubleToACS(pcd == PCD_GETACTORX ? actor->X() : actor->Y());
}
}
break;
Expand Down

0 comments on commit d8d4723

Please sign in to comment.