HERPA DERP

This commit is contained in:
eraser1 2016-07-11 18:30:26 -05:00
parent 8e5c61ebf4
commit 1ff19ad869
2 changed files with 7 additions and 7 deletions

View File

@ -176,17 +176,17 @@ if (DMS_ShowDifficultyColorLegend) then
case "moderate": case "moderate":
{ {
_color = "ColorYellow"; _color = "ColorYellow";
_marker = "ExileMissionModerateIcon"; _markerType = "ExileMissionModerateIcon";
}; };
case "difficult": case "difficult":
{ {
_color = "ColorRed"; _color = "ColorRed";
_marker = "ExileMissionDifficultIcon"; _markerType = "ExileMissionDifficultIcon";
}; };
case "hardcore": case "hardcore":
{ {
_color = "ColorBlack"; _color = "ColorBlack";
_marker = "ExileMissionHardcoreIcon"; _markerType = "ExileMissionHardcoreIcon";
}; };
}; };

View File

@ -59,23 +59,23 @@ switch (toLower _difficulty) do
case "moderate": case "moderate":
{ {
_color = "ColorYellow"; _color = "ColorYellow";
_marker = "ExileMissionModerateIcon"; _markerType = "ExileMissionModerateIcon";
}; };
case "difficult": case "difficult":
{ {
_color = "ColorRed"; _color = "ColorRed";
_marker = "ExileMissionDifficultIcon"; _markerType = "ExileMissionDifficultIcon";
}; };
case "hardcore": case "hardcore":
{ {
_color = "ColorBlack"; _color = "ColorBlack";
_marker = "ExileMissionHardcoreIcon"; _markerType = "ExileMissionHardcoreIcon";
}; };
default default
{ {
_color = _difficulty; _color = _difficulty;
_marker = "mil_dot"; _markerType = "mil_dot";
}; };
}; };