Auth: Waom: authorized
You have authorized Waom.
Then they get
"You can not ascend to a higher level until you are authorized."
I mstat then-
Pcflags : deadly unauthed nstart
Their unauthed still. Why?
Their not in authorize list
After a bit of delving into the code it seems that the authorize command doesn't actually remove the unauthed bit, it just sets the auth_state to 3, so you can enter the Realms. Then when you enter the Realms the unauthed bit is removed.
Search for this:
REMOVE_BIT(victim->pcdata->flags, PCFLAG_UNAUTHED);
You might want to add that line to the do_authorize code, around the spot where it says you have authorized someone.
Alternatively, authorize them *before* they go out of the pre-auth area.
Ah, thanks. But I did auth them as soon as it said to. Oh well.
Add the line I quoted to the do_authorize code where it says you have authorized them. That should fix it.
I mean before I put the line in. It fixed it a while ago, right after you told me to put that in.