Hey,
So recently there were some updates for rust as well for some of the plugins I use for Titles in my server.
Namely:
- BetterChat
- PlayerRankings
- PlaytimeTracker
(I also noticed that GatherManager stopped working, which is why I thought it might be a general Rust problem)
Normally I have it configured that when a player reaches a certain time played (using PlaytimeTracker) they are granted a title.
Unfortunately they have all dissapeared when people started gaining new levels of playtime.
I have been tryin to fix it for probably over 10 hours but can't find the solution.
So far I have tried:
- Updating all mods
- Downgrading them again
- Removing all existing groups and let them regenerate
- Manually adjust playtime
- Change the time requirements for levelups to trigger a title update (dissapears)
I'm at my wit's end, if anyone know how to fix this problem, any help will be appreciated!
Kind regards
Acralegend
None of my titles show up!
so figured out the problem i found this in another thread do exactly this
I'll see about making a pull request, but I changed line 838 to the following and it's working for me now:
var groups = _instance._chatGroups.Where(g => oxideGroups.Any(name => g.GroupName.ToLower() == name.ToLower())).ToList();
This fixed all my issues I was having. THANK YOU!
lextronicgamingso figured out the problem i found this in another thread do exactly this
I'll see about making a pull request, but I changed line 838 to the following and it's working for me now:
var groups = _instance._chatGroups.Where(g => oxideGroups.Any(name => g.GroupName.ToLower() == name.ToLower())).ToList();
had same issues fixed it for me to thanks