mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 06:50:12 +01:00
Remove disableTeleportationSuffocationCheck config (#11822)
This commit is contained in:
parent
763b32d825
commit
946314fb58
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,8 @@ interface RemovedConfigurations {
|
||||||
path("entities", "spawning", "despawn-ranges", "hard"),
|
path("entities", "spawning", "despawn-ranges", "hard"),
|
||||||
path("fixes", "fix-curing-zombie-villager-discount-exploit"),
|
path("fixes", "fix-curing-zombie-villager-discount-exploit"),
|
||||||
path("entities", "mob-effects", "undead-immune-to-certain-effects"),
|
path("entities", "mob-effects", "undead-immune-to-certain-effects"),
|
||||||
path("entities", "entities-target-with-follow-range")
|
path("entities", "entities-target-with-follow-range"),
|
||||||
|
path("environment", "disable-teleportation-suffocation-check")
|
||||||
};
|
};
|
||||||
// spawn.keep-spawn-loaded and spawn.keep-spawn-loaded-range are no longer used, but kept
|
// spawn.keep-spawn-loaded and spawn.keep-spawn-loaded-range are no longer used, but kept
|
||||||
// in the world default config for compatibility with old worlds being migrated to use the gamerule
|
// in the world default config for compatibility with old worlds being migrated to use the gamerule
|
||||||
|
|
|
@ -445,7 +445,6 @@ public class WorldConfiguration extends ConfigurationPart {
|
||||||
public int portalSearchRadius = 128;
|
public int portalSearchRadius = 128;
|
||||||
public int portalCreateRadius = 16;
|
public int portalCreateRadius = 16;
|
||||||
public boolean portalSearchVanillaDimensionScaling = true;
|
public boolean portalSearchVanillaDimensionScaling = true;
|
||||||
public boolean disableTeleportationSuffocationCheck = false;
|
|
||||||
public IntOr.Disabled netherCeilingVoidDamageHeight = IntOr.Disabled.DISABLED;
|
public IntOr.Disabled netherCeilingVoidDamageHeight = IntOr.Disabled.DISABLED;
|
||||||
public int maxFluidTicks = 65536;
|
public int maxFluidTicks = 65536;
|
||||||
public int maxBlockTicks = 65536;
|
public int maxBlockTicks = 65536;
|
||||||
|
|
Loading…
Reference in a new issue