Skip to content

Commit

Permalink
Fixed|Hexen: Fall through star bridge, etc. (mobj collision range)
Browse files Browse the repository at this point in the history
A trivial refactoring oversight.

IssueID #1740
  • Loading branch information
skyjake committed Apr 15, 2014
1 parent b5158aa commit 8877b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/p_map.cpp
Expand Up @@ -3032,7 +3032,7 @@ mobj_t *P_CheckOnMobj(mobj_t *mo)

if(!(mo->flags & MF_NOCLIP))
{
int blockdist = mo->radius - MAXRADIUS;
int blockdist = mo->radius + MAXRADIUS;
AABoxd aaBox(mo->origin[VX] - blockdist, mo->origin[VY] - blockdist,
mo->origin[VX] + blockdist, mo->origin[VY] + blockdist);

Expand Down

0 comments on commit 8877b73

Please sign in to comment.