Remove unused clan rank class members

This commit is contained in:
Vortrex
2021-11-24 07:21:31 -06:00
parent b095c9c1e3
commit 28578f3b9f

View File

@@ -824,8 +824,7 @@ class ClanRankData {
this.level = toInteger(dbAssoc["clan_rank_level"]); this.level = toInteger(dbAssoc["clan_rank_level"]);
this.flags = toInteger(dbAssoc["clan_rank_flags"]); this.flags = toInteger(dbAssoc["clan_rank_flags"]);
this.tag = dbAssoc["clan_rank_tag"]; this.tag = dbAssoc["clan_rank_tag"];
this.enabled = intToBool(toInteger(dbAssoc["clan_enabled"])); this.enabled = intToBool(toInteger(dbAssoc["clan_rank_enabled"]));
this.colour = toColour(toInteger(dbAssoc["clan_colour_r"]), toInteger(dbAssoc["clan_colour_g"]), toInteger(dbAssoc["clan_colour_b"]));
} }
} }
}; };