Fix activity recolouring on hop

The activity label had no default color so it remained green unless it was pvp/deadman/tournament, easy fix.
This commit is contained in:
psikoi
2018-08-16 01:56:33 +01:00
parent 6e26fa8177
commit 6506409f02

View File

@@ -220,6 +220,10 @@ class WorldTableRow extends JPanel
{
activityField.setForeground(TOURNAMENT_WORLD);
}
else
{
activityField.setForeground(Color.WHITE);
}
worldField.setForeground(world.getTypes().contains(WorldType.MEMBERS) ? MEMBERS_WORLD : FREE_WORLD);
}