diff --git a/src/mon.c b/src/mon.c index 3e078a319..dabfef3d0 100644 --- a/src/mon.c +++ b/src/mon.c @@ -2396,7 +2396,8 @@ mm_aggression( struct permonst *ma, *md; ma = magr->data; md = mdef->data; - /* Don't allow pets to fight each other. */ + + /* don't allow pets to fight each other */ if (magr->mtame && mdef->mtame) return 0; @@ -2404,10 +2405,6 @@ mm_aggression( /* Put one-way aggressions below here, and two-way aggressions in * mm_2way_aggression. */ - /* don't allow pets to fight each other */ - if (magr->mtame && mdef->mtame) - return 0; - /* supposedly purple worms are attracted to shrieking because they like to eat shriekers, so attack the latter when feasible */ if ((ma == &mons[PM_PURPLE_WORM] || ma == &mons[PM_BABY_PURPLE_WORM])