{"id":2975,"date":"2023-04-04T18:28:31","date_gmt":"2023-04-04T18:28:31","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=2975"},"modified":"2026-06-15T19:21:22","modified_gmt":"2026-06-15T19:21:22","slug":"how-to-disable-fall-damage-on-your-minecraft-server","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/","title":{"rendered":"How to disable fall damage on your Minecraft server"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Fall damage is one of the most common things server owners want to switch off. Whether you are running a creative build server where players are constantly working at height, a parkour map where dying to a missed jump kills the fun, or a survival realm where you simply want a more forgiving experience, knowing exactly how to disable fall damage saves a lot of frustration. The good news is that on any modern Minecraft Java server it takes a single command. The slightly more involved news is that the method depends on your version, whether you want it server-wide or per-player, and whether you are on Java or Bedrock. This guide walks through every approach in depth.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The quick answer: the fallDamage gamerule<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your server is running Minecraft Java Edition 1.15 or newer, you disable fall damage with a single game rule. Run this command in-game (as an operator) or in the server console:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/gamerule fallDamage false<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">That is it. From the moment the command runs, players on your server take no damage from falling, regardless of the distance. To turn it back on, set the same rule to <code>true<\/code>. You can also check the current value at any time by running the command without a value:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/gamerule fallDamage\n\/gamerule fallDamage true<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">When you run a game rule command from the server console rather than in-game, you do not include the leading slash \u2014 just type <code>gamerule fallDamage false<\/code>. The change is saved with the world and persists across restarts, so you only need to set it once. The <code>fallDamage<\/code> game rule was introduced in Java Edition 1.15 (snapshot 19w36a) and defaults to <code>true<\/code> on every world.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Version matters: camelCase vs snake_case game rule names<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Mojang renamed every game rule to <code>snake_case<\/code> in Java Edition 1.21.11 (released December 9, 2025). On that version and newer, the rule is written <code>fall_damage<\/code> rather than <code>fallDamage<\/code>. The behaviour and the default value are identical \u2014 only the spelling changed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Java 1.15 through 1.21.10\n\/gamerule fallDamage false\n\n# Java 1.21.11 and newer (calendar versions like 26.x)\n\/gamerule fall_damage false<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The old camelCase names still work on 1.21.10 and earlier, and a huge number of existing servers, hosting panels, and tutorials still reference them \u2014 so do not panic if you see <code>fallDamage<\/code> everywhere. If you are unsure which version you are on, just try one; if the server reports an unknown game rule, switch to the other spelling. Mojang also moved to calendar-based version numbers in 2026 (for example 26.1.2), with the 1.21.x line being the last of the classic numbering before the switch.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Minecraft version<\/th><th>Game rule name<\/th><th>Command<\/th><\/tr><\/thead><tbody><tr><td>1.15 \u2013 1.21.10<\/td><td><code>fallDamage<\/code><\/td><td><code>\/gamerule fallDamage false<\/code><\/td><\/tr><tr><td>1.21.11+ \/ 26.x<\/td><td><code>fall_damage<\/code><\/td><td><code>\/gamerule fall_damage false<\/code><\/td><\/tr><tr><td>Pre-1.15<\/td><td>No vanilla rule<\/td><td>Requires a plugin (see below)<\/td><\/tr><tr><td>Bedrock Edition<\/td><td>No equivalent<\/td><td>Requires a behavior pack \/ add-on<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Who can run the command? Operator permissions explained<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Changing a game rule is a cheat-level action. On a vanilla, Spigot, or Paper server you need to be an operator at <strong>permission level 2 or higher<\/strong> to run <code>\/gamerule<\/code> in-game. The <code>\/gamerule<\/code> command sits in the same tier as <code>\/difficulty<\/code>, command blocks, and target selectors. The server console always operates at the equivalent of level 4, so you can always set game rules from the console even if no one is opped.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have not opped yourself yet, you will need to do that first. The <code>\/op <player><\/code> command grants the level defined by the <code>op-permission-level<\/code> key in <code>server.properties<\/code>, which defaults to <strong>4<\/strong> (full owner access). For a complete walkthrough of opping yourself, including editing <code>ops.json<\/code> directly to assign a custom level, see our guide on <a href=\"https:\/\/xgamingserver.com\/blog\/adding-an-op-admin-to-minecraft-server-using-ops-json-and-op-username\/\">adding an op admin via ops.json<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Disabling fall damage before Minecraft 1.15<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you are running an older server \u2014 perhaps a legacy modpack or a long-lived world pinned to an early version \u2014 the <code>fallDamage<\/code> game rule simply does not exist. There is no vanilla way to turn off fall damage on Minecraft versions earlier than 1.15. Your only route is a plugin, which means your server must be running a plugin-capable fork such as <strong>Paper, Spigot, or Bukkit<\/strong> rather than the plain Mojang <code>server.jar<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The general approach is to install a damage-control plugin (an EssentialsX-style or region plugin) that can cancel fall damage events. The exact command and configuration vary by plugin and version, so rather than quoting a command that may not match your setup, the reliable path is: install the plugin, open its config file, and look for a fall-damage or damage-cause toggle, then reload the plugin. Always check the plugin&#8217;s current documentation for the precise syntax on your version. If you have the option, the cleanest long-term fix is simply to update the server to 1.15 or newer and use the native game rule \u2014 it is faster, has zero performance cost, and never breaks on a plugin update.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Per-player fall damage immunity<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>fallDamage<\/code> game rule is global \u2014 it affects every player on the world at once. There is no vanilla game rule that disables fall damage for a single named player while keeping it on for everyone else. If you need true per-player control, you have a few options:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Permission-based plugins:<\/strong> Plugins such as EssentialsX (and many region\/protection plugins) expose per-player or per-group toggles via permission nodes. You grant a node to a specific player or rank and only they become immune. Check the plugin&#8217;s wiki for the exact node name on your version before relying on it.<\/li><li><strong>Game mode:<\/strong> Players in Creative or Spectator mode never take fall damage. If the goal is to let a builder work at height safely, switching that one player with <code>\/gamemode creative <player><\/code> is the simplest no-plugin solution.<\/li><li><strong>Effects:<\/strong> Slow Falling and Resistance can be applied per-player with <code>\/effect give <player><\/code>. Slow Falling in particular eliminates fall damage entirely for its duration, and you can refresh it or apply it for a very long duration as a lightweight per-player workaround.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Apply Slow Falling to one player for ~1,000,000 ticks (long duration)\n\/effect give Notch minecraft:slow_falling 1000000 0 true<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">For most servers, the global game rule is the right tool. Reach for per-player methods only when you specifically want different rules for different people.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Disabling fall damage on Bedrock Edition<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Bedrock Edition is a different beast. The Bedrock Dedicated Server (BDS) is Mojang-only software with <strong>no plugin API<\/strong> \u2014 instead of plugins, it uses behavior packs and add-ons. Critically, the game rule sets between Java and Bedrock are not identical, and Bedrock does not have a <code>fallDamage<\/code> game rule equivalent the way Java does. You cannot simply run the Java command on a Bedrock realm or BDS instance and expect it to work.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On Bedrock, the practical routes to remove fall damage are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Behavior pack \/ add-on:<\/strong> A behavior pack can override entity damage behaviour or apply effects, achieving the same result as the Java game rule. This is the closest thing to a &#8220;native&#8221; solution on Bedrock.<\/li><li><strong>Slow Falling effect:<\/strong> The <code>\/effect<\/code> command exists on Bedrock too, and Slow Falling cancels fall damage while active \u2014 usable per-player or via repeating command blocks for everyone.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Worth knowing about the broader Java\/Bedrock split: Bedrock servers listen on <strong>UDP port 19132<\/strong> (and 19133 for IPv6) rather than Java&#8217;s <strong>TCP 25565<\/strong>; Bedrock uses an <code>allow-list<\/code> with <code>allowlist.json<\/code> instead of Java&#8217;s <code>white-list<\/code> and <code>whitelist.json<\/code>; and Bedrock uses a visitor \/ member \/ operator permission model keyed by XUID in <code>permissions.json<\/code> rather than Java&#8217;s numeric op levels 1\u20134. The two editions are not server-compatible, so always confirm a feature exists on your edition before relying on it.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Feature<\/th><th>Java Edition<\/th><th>Bedrock Edition<\/th><\/tr><\/thead><tbody><tr><td>Default port<\/td><td>TCP 25565<\/td><td>UDP 19132 (IPv6 19133)<\/td><\/tr><tr><td>Server software<\/td><td>server.jar \/ Paper \/ Spigot<\/td><td>Bedrock Dedicated Server (BDS)<\/td><\/tr><tr><td>Extensions<\/td><td>Plugins (on Paper\/Spigot)<\/td><td>Behavior packs \/ add-ons<\/td><\/tr><tr><td>Fall damage toggle<\/td><td><code>\/gamerule fallDamage false<\/code><\/td><td>No game rule \u2014 behavior pack or effect<\/td><\/tr><tr><td>Allow list file<\/td><td>whitelist.json<\/td><td>allowlist.json<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Setting it on XGamingServer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">On a managed Java server the workflow is straightforward. Connect to your server&#8217;s in-game console or open the console in your control panel, make sure you are opped at level 2 or above, and run <code>\/gamerule fallDamage false<\/code> (or <code>fall_damage<\/code> on 1.21.11+). The setting is saved to the world immediately and survives restarts. If you would rather host somewhere that makes running these commands painless \u2014 with an instant console, one-click version switching, and full file access for plugins \u2014 take a look at our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">Minecraft server plans<\/a>. For step-by-step panel screenshots covering console access, op management, and game rules, our <a href=\"https:\/\/xgamingserver.com\/docs\/minecraft\">Minecraft documentation<\/a> walks through the control panel in detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Related server tweaks worth knowing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Fall damage is usually one of several survival rules people relax when setting up a casual or creative-leaning server. Game rules follow the same pattern, so once you have the syntax down you can apply it everywhere. A few common companions to disabling fall damage:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>\/gamerule keepInventory true<\/code> \u2014 players keep their items and experience on death.<\/li><li><code>\/gamerule doDaylightCycle false<\/code> \u2014 freeze the time of day. See <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-stop-the-day-cycle-in-your-minecraft-server\/\">how to stop the day cycle<\/a>.<\/li><li><code>\/gamerule mobGriefing false<\/code> \u2014 stop mobs (including creepers) from breaking blocks. If you only want to stop creepers while keeping TNT working, that needs WorldGuard \u2014 see <a href=\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\">disabling creeper explosions and TNT<\/a>.<\/li><li><code>\/gamerule doWardenSpawning false<\/code> \u2014 yes, there is a real vanilla rule for this (added in 1.19, renamed <code>spawn_wardens<\/code> in 1.21.11). See <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-stop-warden-spawning-in-your-minecraft-server\/\">how to stop warden spawning<\/a>.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Remember the same camelCase-to-snake_case rename in 1.21.11 applies to all of these \u2014 for example <code>keepInventory<\/code> became <code>keep_inventory<\/code> and <code>doDaylightCycle<\/code> became <code>advance_time<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What is the command to turn off fall damage in Minecraft?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">On Java Edition 1.15 and newer, run <code>\/gamerule fallDamage false<\/code> in-game as an operator (level 2+) or type <code>gamerule fallDamage false<\/code> in the server console. On Java 1.21.11 and newer the rule is spelled <code>fall_damage<\/code>, so use <code>\/gamerule fall_damage false<\/code>. The setting saves with the world and stays in effect after restarts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why doesn&#8217;t \/gamerule fallDamage work on my server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There are three usual causes. First, your version may be too old \u2014 the rule did not exist before 1.15, so a pre-1.15 server will report it as unknown and you will need a plugin instead. Second, you may be on 1.21.11 or newer, where the rule was renamed to <code>fall_damage<\/code> \u2014 try that spelling. Third, you may lack permission: you need to be opped at level 2 or higher, or run the command from the console. Double-check the version and the spelling before assuming something is broken.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I disable fall damage for just one player?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Not with a vanilla game rule \u2014 <code>fallDamage<\/code> is global and affects everyone. For true per-player control you need a permission-based plugin like EssentialsX, where you grant a fall-damage immunity node to a specific player or rank. Without plugins, the simplest workarounds are putting that player in Creative or Spectator mode (neither takes fall damage) or applying the Slow Falling effect to them with <code>\/effect give <player> minecraft:slow_falling<\/code>, which cancels fall damage for its duration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I turn off fall damage on a Bedrock or Realms server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Bedrock Edition has no <code>fallDamage<\/code> game rule equivalent, and the Bedrock Dedicated Server has no plugin API. The two practical options are a behavior pack\/add-on that overrides damage behaviour, or applying the Slow Falling effect (per-player or via repeating command blocks) since <code>\/effect<\/code> works on Bedrock. The Java command will not work on Bedrock \u2014 the editions have different game rule sets and are not server-compatible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Does disabling fall damage affect mobs too?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>fallDamage<\/code> game rule applies to players. Mob fall damage is handled separately \u2014 for example, in a WorldGuard region you would use that plugin&#8217;s own fall-damage flag rather than the vanilla game rule. If you specifically need to control mob fall damage (for instance, in a mob farm), confirm the exact flag or setting in your protection plugin&#8217;s current documentation before relying on it, as behaviour can differ by version.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Will turning off fall damage cause lag or performance issues?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No. The vanilla game rule has essentially zero performance cost \u2014 it is just a boolean flag the server checks when calculating damage, so it is far lighter than running a plugin to do the same job. This is one more reason that, if your only obstacle is an old pre-1.15 version, updating to use the native game rule is preferable to installing a damage-control plugin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For the vast majority of servers, disabling fall damage is a one-line job: <code>\/gamerule fallDamage false<\/code> on Java 1.15 through 1.21.10, or <code>\/gamerule fall_damage false<\/code> on 1.21.11 and newer. Drop to a plugin only if you are stuck on a pre-1.15 version or need genuine per-player control, and remember that Bedrock requires a behavior pack or the Slow Falling effect rather than a game rule. Set it once, op level 2 or higher, and your players can leap from any height in peace. While you are in the console, it is a good time to dial in the rest of your survival rules too \u2014 keep-inventory, day cycle, mob griefing, and warden spawning all follow exactly the same pattern.<\/p>\n\n\n<!-- xg-tools-mesh -->\n\n<div class=\"wp-block-group xg-tools-box is-layout-flow wp-block-group-is-layout-flow\" style=\"border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:18px 22px;margin-top:8px;background:rgba(76,175,80,.04);\">\n<h3 class=\"wp-block-heading\">Free Minecraft Tools<\/h3>\n<p class=\"wp-block-paragraph\">Speed up your server with our free Minecraft tools:<\/p>\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/give-command\">Give Command Generator<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/ore-distribution\">Ore Distribution Chart<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/enchantment-calculator\">Enchantment Calculator<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/minecraft\/achievement-generator\">Achievement Generator<\/a><\/li><\/ul>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>Fall damage is one of the most common things server owners want to switch off. Whether you are running a creative build server where players are constantly working at height, a parkour map where dying to a missed jump kills the fun, or a survival realm where you simply want a more forgiving experience, knowing [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":2976,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[67,19],"tags":[],"class_list":["post-2975","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-manage-minecraft-server","category-minecraft-server-docs"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to disable fall damage on your Minecraft server - XGamingServer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to disable fall damage on your Minecraft server\" \/>\n<meta property=\"og:description\" content=\"Fall damage is one of the most common things server owners want to switch off. Whether you are running a creative build server where players are constantly working at height, a parkour map where dying to a missed jump kills the fun, or a survival realm where you simply want a more forgiving experience, knowing [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-04T18:28:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:21:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"770\" \/>\n\t<meta property=\"og:image:height\" content=\"433\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Youssef Ayman\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Youssef Ayman\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\"},\"author\":{\"name\":\"Youssef Ayman\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\"},\"headline\":\"How to disable fall damage on your Minecraft server\",\"datePublished\":\"2023-04-04T18:28:31+00:00\",\"dateModified\":\"2026-06-15T19:21:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\"},\"wordCount\":2029,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png\",\"articleSection\":[\"Manage Minecraft server\",\"Minecraft\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\",\"name\":\"How to disable fall damage on your Minecraft server - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png\",\"datePublished\":\"2023-04-04T18:28:31+00:00\",\"dateModified\":\"2026-06-15T19:21:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Minecraft\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Manage Minecraft server\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/manage-minecraft-server\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to disable fall damage on your Minecraft server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\",\"name\":\"Youssef Ayman\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g\",\"caption\":\"Youssef Ayman\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to disable fall damage on your Minecraft server - XGamingServer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/","og_locale":"en_US","og_type":"article","og_title":"How to disable fall damage on your Minecraft server","og_description":"Fall damage is one of the most common things server owners want to switch off. Whether you are running a creative build server where players are constantly working at height, a parkour map where dying to a missed jump kills the fun, or a survival realm where you simply want a more forgiving experience, knowing [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2023-04-04T18:28:31+00:00","article_modified_time":"2026-06-15T19:21:22+00:00","og_image":[{"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","width":770,"height":433,"type":"image\/png"}],"author":"Youssef Ayman","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Youssef Ayman","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/"},"author":{"name":"Youssef Ayman","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e"},"headline":"How to disable fall damage on your Minecraft server","datePublished":"2023-04-04T18:28:31+00:00","dateModified":"2026-06-15T19:21:22+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/"},"wordCount":2029,"commentCount":1,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","articleSection":["Manage Minecraft server","Minecraft"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/","name":"How to disable fall damage on your Minecraft server - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","datePublished":"2023-04-04T18:28:31+00:00","dateModified":"2026-06-15T19:21:22+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-disable-fall-damage-on-your-minecraft-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Minecraft","item":"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/"},{"@type":"ListItem","position":3,"name":"Manage Minecraft server","item":"https:\/\/xgamingserver.com\/blog\/category\/minecraft-server-docs\/manage-minecraft-server\/"},{"@type":"ListItem","position":4,"name":"How to disable fall damage on your Minecraft server"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e","name":"Youssef Ayman","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fa92e71017a2bb7ab969b798cba0c8f3f827d2d4733dbe2cacf7f195db920fe1?s=96&d=mm&r=g","caption":"Youssef Ayman"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/04\/blog-background-3.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2975","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=2975"}],"version-history":[{"count":3,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2975\/revisions"}],"predecessor-version":[{"id":22466,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2975\/revisions\/22466"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/2976"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=2975"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=2975"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=2975"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}