ground items: remove Highlight > Value

This commit is contained in:
Hydrox6
2020-03-14 16:36:22 +00:00
committed by Tomas Slusny
parent 4a378817fd
commit b95b30f606
2 changed files with 0 additions and 15 deletions

View File

@@ -184,17 +184,6 @@ public interface GroundItemsConfig extends Config
return ValueCalculationMode.HIGHEST;
}
@ConfigItem(
keyName = "highlightOverValue2",
name = "Highlight > Value",
description = "Configures highlighted ground items over either GE or HA value",
position = 12
)
default int getHighlightOverValue()
{
return 0;
}
@ConfigItem(
keyName = "hideUnderValue",
name = "Hide < Value",

View File

@@ -431,10 +431,6 @@ public class GroundItemsPlugin extends Plugin
// Cache colors
ImmutableList.Builder<PriceHighlight> priceCheckBuilder = ImmutableList.builder();
if (config.getHighlightOverValue() > 0)
{
priceCheckBuilder.add(new PriceHighlight(config.getHighlightOverValue(), config.highlightedColor()));
}
if (config.insaneValuePrice() > 0)
{