After the recent update to version 31.00, I’ve encountered a warning in the code for the player_stats_manager as outlined in Persistent Player Statistics.
The editor is showing warnings for the unique specifier on classes that lack the allocates effect. The ecosystem updates also state this detail: v31.00 Ecosystem Updates], however it doesn’t provide a solution for existing classes that use the specifier.
I think it is asking you to pass a constructor to your “DebugString” if you want, pass a little more of the fragment or the code and I will try to correct it
#change where is
DebugString<override>():string = "Deaths
#for this
DebugString<override>()<transacts>:string = "Deaths
#add transacts
#in condition change this
if(Stat = StatType.Elo):
#for this
if(Stat.DebugString() = StatType.Elo.DebugString()):
#dont forget this if not instantiate yet
# Instances of each stat_type you can use in your experience
Kills<public>:kill_stat = kill_stat{}
Deaths<public>:death_stat = death_stat{}
Elo<public>:elo_stat = elo_stat{}
Version<public>:version_stat = version_stat{}