From 9a8bab9ff3b13c8f1d261d51ffc301b6e59969c9 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Sat, 11 Oct 2025 04:20:00 -0300 Subject: fix problem with summons being spawned as non-summons --- src/crnonpl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crnonpl.cc b/src/crnonpl.cc index 3ec73dc..f334626 100644 --- a/src/crnonpl.cc +++ b/src/crnonpl.cc @@ -1991,7 +1991,7 @@ TMonster::TMonster(int Race, int x, int y, int z, int Home, uint32 MasterID) : return; } - if(Master->Type != MONSTER || ((TMonster*)Master)->Master != 0){ + if(Master->Type != MONSTER || ((TMonster*)Master)->Master == 0){ this->LifeEndRound = Master->LifeEndRound; Master->SummonedCreatures += 1; break; -- cgit v1.2.3