Zircon icon indicating copy to clipboard operation
Zircon copied to clipboard

Guild bonus removed while in grp with member of another guild

Open Patan87 opened this issue 1 year ago • 2 comments

as title.

Patan87 avatar Apr 02 '24 20:04 Patan87

repaired it for me like this. Playerobject.cs Public Void GroupJoin() ..... foreach (PlayerObject ob in GroupMembers) { if (ob == this) continue;

    ob.Enqueue(new S.GroupMember { ObjectID = ObjectID, Name = Name });
    Enqueue(new S.GroupMember { ObjectID = ob.ObjectID, Name = ob.Name });

    ob.AddAllObjects();
    ob.RefreshStats();
   // ob.ApplyGuildBuff();
}

AddAllObjects();
//ApplyGuildBuff();

RefreshStats();
Enqueue(new S.GroupMember { ObjectID = ObjectID, Name = Name });

}

removed the both applyguildbuffs

Patan87 avatar Apr 13 '24 18:04 Patan87

This doesn't look like a bug. Its an intended feature of the files to only apply the guild buff if you're grouping with people in your own guild

Suprcode avatar Apr 13 '24 19:04 Suprcode