Skip to content

Commit

Permalink
libcommon|Fixed: Wrong variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 15, 2012
1 parent 919fde0 commit 3536248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/plugins/common/src/mobj.c
Expand Up @@ -249,8 +249,8 @@ boolean Mobj_LookForPlayers(mobj_t* mo, boolean allAround)

boolean Mobj_ActionFunctionAllowed(mobj_t* mo)
{
if(!(mobj->ddFlags & DDMF_REMOTE) || // only for local mobjs
(mobj->flags3 & MF3_CLIENTACTION)) // action functions allowed?
if(!(mo->ddFlags & DDMF_REMOTE) || // only for local mobjs
(mo->flags3 & MF3_CLIENTACTION)) // action functions allowed?
{
return true;
}
Expand Down

0 comments on commit 3536248

Please sign in to comment.