Adding ranks in Ruse base
I'm trying to add a hardcore account to the Ruse base. I changed this
Code:
public enum GameMode {
NORMAL,
IRONMAN,
HC_ IRONMAN;
to this
Code:
public enum GameMode {
NORMAL,
HC_ACC,
IRONMAN;
When I go select the hardcore acc, it shows an ironman icon and for the ironman account is a hardcore ironman icon.
I want to select a hardcore account with no icon next to it.
So it can look like this
Code:
public enum GameMode {
NORMAL,
HC_ACC,
IRONMAN,
HC_IRONMAN;
But if I do those 4, the hardcore ironman account will have a smiley face icon next to it's name from the other <img> tag. I think this has to do with the packet stuff. But I don't think I know how that works. Could someone help me with this please?