Add all Sone-specific options when creating a Sone.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Core.java
index 1fe843e..e18fabc 100644 (file)
@@ -876,6 +876,8 @@ public class Core implements IdentityListener, UpdateListener {
                        return null;
                }
                Sone sone = addLocalSone(ownIdentity);
+               sone.getOptions().addBooleanOption("AutoFollow", new DefaultOption<Boolean>(false));
+               saveSone(sone);
                return sone;
        }