SPIGOT-6053: World#setHardcore() cannot be set to false

This commit is contained in:
Parker Hawke 2020-08-11 17:35:56 +10:00 committed by md_5
parent f6227934a3
commit c3184f875d
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -1921,7 +1921,7 @@ public class CraftWorld implements World {
@Override
public void setHardcore(boolean hardcore) {
world.worldDataServer.b.hardcore = true;
world.worldDataServer.b.hardcore = hardcore;
}
@Override