diff --git a/source/net/yacy/peers/Protocol.java b/source/net/yacy/peers/Protocol.java index f186d7857..41f9aa611 100644 --- a/source/net/yacy/peers/Protocol.java +++ b/source/net/yacy/peers/Protocol.java @@ -273,7 +273,7 @@ public final class Protocol } else { final String myIP = result.get("yourip"); final String properIP = Seed.isProperIP(myIP); - mySeed.setFlagRootNode(mytype.equals(Seed.PEERTYPE_SENIOR) && responseTime < 1000 && Domains.isThisHostIP(myIP)); + mySeed.setFlagRootNode((mytype.equals(Seed.PEERTYPE_SENIOR) || mytype.equals(Seed.PEERTYPE_PRINCIPAL)) && responseTime < 1000 && Domains.isThisHostIP(myIP)); if ( properIP == null ) { mySeed.setIP(myIP); }