diff options
author | Samuel Villareal | 2010-09-12 00:45:40 +0000 |
---|---|---|
committer | Samuel Villareal | 2010-09-12 00:45:40 +0000 |
commit | 3fc2b945a86e4f7f27d7250a31b06d9cf432f757 (patch) | |
tree | e3b649022fc068b685d7938f3491f51b1fab12f2 /src/strife | |
parent | 18e2e3f73e00447b013583415a0423f09b2b0af0 (diff) | |
download | chocolate-doom-3fc2b945a86e4f7f27d7250a31b06d9cf432f757.tar.gz chocolate-doom-3fc2b945a86e4f7f27d7250a31b06d9cf432f757.tar.bz2 chocolate-doom-3fc2b945a86e4f7f27d7250a31b06d9cf432f757.zip |
+ return fix for P_ItemBehavior
Subversion-branch: /branches/strife-branch
Subversion-revision: 2069
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/p_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/p_user.c b/src/strife/p_user.c index 80f33929..fa0e3f28 100644 --- a/src/strife/p_user.c +++ b/src/strife/p_user.c @@ -862,5 +862,5 @@ boolean P_ItemBehavior(player_t* player, int item) break; } - return true; + return false; } |