You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solved the issue. It also automatically passed stuff like Silithus stones, and probably multiple others which can be dangerous (especially for HC players, if you pop wind stone too early, when you dont want it).
In line 666 there is "or GossipOptions[i] == "gossip" or", that doesnt check "processgossip" value, it means even when "processgossip" is nil, it still gets passed.
The solution is to just change it to "or GossipOptions[i] == "gossip" and processgossip or"
Its stops gossips to be skipped when we dont want them to. (when the option is disabled, and we use dont shift click)
Same "and" needs also be added after first "or" in the same line, otherwise it will auto skip trainer dialogue, regardless of setting while under lvl 10.
Auto gossips seems impossible to be fully disabled, and it always activates on the Twow custom Gryphons (the ones in guildbases for example).
The text was updated successfully, but these errors were encountered: