summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSamuel Villareal2010-09-06 22:35:53 +0000
committerSamuel Villareal2010-09-06 22:35:53 +0000
commit471b912a41d283f28b5fec6382adbdc13251fa8d (patch)
treef3fa964d274fece37253fda6449ae98ddfc8fe36 /src
parenta368593e8f268c3400c5810654232ffa9f0d2704 (diff)
downloadchocolate-doom-471b912a41d283f28b5fec6382adbdc13251fa8d.tar.gz
chocolate-doom-471b912a41d283f28b5fec6382adbdc13251fa8d.tar.bz2
chocolate-doom-471b912a41d283f28b5fec6382adbdc13251fa8d.zip
+ Fixed typo in A_SentinelAttack
Subversion-branch: /branches/strife-branch Subversion-revision: 2026
Diffstat (limited to 'src')
-rw-r--r--src/strife/p_enemy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/p_enemy.c b/src/strife/p_enemy.c
index eda65b8c..3f3b08d8 100644
--- a/src/strife/p_enemy.c
+++ b/src/strife/p_enemy.c
@@ -1293,7 +1293,7 @@ void A_SentinelAttack(mobj_t* actor)
mo = P_SpawnFacingMissile(actor, actor->target, MT_L_LASER);
an = actor->angle >> ANGLETOFINESHIFT;
- if(mo->momy || mo->momx)
+ if(mo->momy | mo->momx) // villsa - fixed typo (yes, they actually used '|' instead of'||')
{
for(i = 8; i > 1; i--)
{