Disable OSB prices by default

Depending on 3rd party API is bad enough, having it enabled by default
is worse.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-06-15 23:41:15 +02:00
parent e83d09124a
commit 93bb31eb1b

View File

@@ -65,6 +65,6 @@ public interface GrandExchangeConfig extends Config
)
default boolean enableOsbPrices()
{
return true;
return false;
}
}