On Mon, 23 Sep 2002, Yrahcaz Yelhcir wrote:

> Its not a problem with player fields and mob fields, I
> understand all that. Its all about act messages.
> Before I patched in OLC i had no problems...a switched
> imm could type 'look' and see the room, they could see
> channels, etc etc. Since putting in OLC a switched imm
> can't see ANY act messages. I've seen a few bug fixes
> for this posted in places but none of them work. They
> refer to the following:
>
> in the void act_new function (usually in comm.c)
>
> if ( (!IS_NPC(to) && to->desc == NULL)
>       || (IS_NPC(to) && !HAS_TRIGGER (to,TRIG_ACT))
>       || to->position < min_pos)
>       continue;
>
> None of the changes they suggest to that have done
> anything.

How about:

  if ( (!IS_NPC(to) && to->desc == NULL)
         || (IS_NPC(to) && !HAS_TRIGGER (to,TRIG_ACT) && to->desc == NULL)
         || to->position < min_pos)
        continue;

Dennis



Reply via email to