By default Mtg card price update is disabled
This commit is contained in:
@@ -152,7 +152,7 @@ public class ServerBuilder {
|
||||
|
||||
private static boolean isMtgEnabled() {
|
||||
String mtgEnabled = ApplicationConfiguration.getProperty("mtg.enabled");
|
||||
return mtgEnabled == null || mtgEnabled.equals("true");
|
||||
return mtgEnabled != null && mtgEnabled.equals("true");
|
||||
}
|
||||
|
||||
public static void destroyObjects(Map<Type, Object> objectMap) {
|
||||
|
||||
Reference in New Issue
Block a user