Reduce default negative trust to -25.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 3 Apr 2011 19:29:51 +0000 (21:29 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 3 Apr 2011 19:29:51 +0000 (21:29 +0200)
src/main/java/net/pterodactylus/sone/core/Core.java

index c986d71..005524e 100644 (file)
@@ -1719,7 +1719,7 @@ public class Core implements IdentityListener, UpdateListener {
 
                }));
                options.addIntegerOption("PositiveTrust", new DefaultOption<Integer>(75));
-               options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-100));
+               options.addIntegerOption("NegativeTrust", new DefaultOption<Integer>(-25));
                options.addStringOption("TrustComment", new DefaultOption<String>("Set from Sone Web Interface"));
                options.addBooleanOption("SoneRescueMode", new DefaultOption<Boolean>(false));
                options.addBooleanOption("ClearOnNextRestart", new DefaultOption<Boolean>(false));