diff --git a/Minecraft.Server/ServerProperties.cpp b/Minecraft.Server/ServerProperties.cpp index 65c72191..9f3a787c 100644 --- a/Minecraft.Server/ServerProperties.cpp +++ b/Minecraft.Server/ServerProperties.cpp @@ -55,7 +55,7 @@ static const ServerPropertyDefault kServerPropertyDefaults[] = { "gamertags", "true" }, { "generate-structures", "true" }, { "hardcore", "false" }, - { "hardcore-ban-ip", "true" }, + { "hardcore-ban-ip", "false" }, { "host-can-be-invisible", "true" }, { "host-can-change-hunger", "true" }, { "host-can-fly", "true" }, @@ -864,7 +864,7 @@ ServerPropertiesConfig LoadServerPropertiesConfig() config.naturalRegeneration = ReadNormalizedBoolProperty(&merged, "natural-regeneration", true, &shouldWrite); config.doDaylightCycle = ReadNormalizedBoolProperty(&merged, "do-daylight-cycle", true, &shouldWrite); config.hardcore = ReadNormalizedBoolProperty(&merged, "hardcore", false, &shouldWrite); - config.hardcoreBanIp = ReadNormalizedBoolProperty(&merged, "hardcore-ban-ip", true, &shouldWrite); + config.hardcoreBanIp = ReadNormalizedBoolProperty(&merged, "hardcore-ban-ip", false, &shouldWrite); config.maxBuildHeight = ReadNormalizedIntProperty(&merged, "max-build-height", 256, 64, 256, &shouldWrite); config.motd = ReadNormalizedStringProperty(&merged, "motd", "A Minecraft Server", 255, &shouldWrite);