{"id":2786,"date":"2023-03-11T04:07:52","date_gmt":"2023-03-11T04:07:52","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=2786"},"modified":"2026-06-15T19:21:27","modified_gmt":"2026-06-15T19:21:27","slug":"disabling-creeper-explosions-tnt-in-your-minecraft-server","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/","title":{"rendered":"Disabling Creeper Explosions &#038; TNT in your Minecraft server"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Nothing ruins a survival server faster than coming back to a crater where your base used to be. Creepers are the number-one source of grief complaints on Minecraft servers \u2014 and the good news is you have several ways to stop the block damage without turning your world into a sandbox. This guide covers the one-line vanilla fix, exactly what it does (and the side effects most guides skip), and the precise WorldGuard setup that stops creepers from breaking blocks <em>while still letting your players use TNT<\/em>. Everything here is current for modern Java (including the 1.21.11 game-rule rename) and Bedrock.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The quick fix: the mobGriefing game rule<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The fastest way to stop creepers destroying terrain is a single game rule. Run this from the server console or as an op in-game:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/gamerule mobGriefing false<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Version note:<\/strong> game rules were renamed to snake_case in <strong>Java 1.21.11<\/strong> (December 2025). On 1.21.11 and newer the rule is <code>mob_griefing<\/code>; on 1.21.10 and earlier (and most existing servers\/tutorials) it&#8217;s <code>mobGriefing<\/code>. The old camelCase name still works on older builds, so use whichever matches your version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Java 1.21.11+\n\/gamerule mob_griefing false\n\n# Java 1.21.10 and earlier\n\/gamerule mobGriefing false<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You can check the current value at any time by running the command with no value (e.g. <code>\/gamerule mobGriefing<\/code>). The setting is stored per-world and persists across restarts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What mobGriefing actually does<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s the part most guides gloss over. <code>mobGriefing<\/code> doesn&#8217;t target creepers specifically \u2014 it governs whether <strong>any<\/strong> mob can modify blocks or pick up items. Setting it to <code>false<\/code> stops creeper terrain damage and the block destruction from mob-triggered TNT, but it <em>also<\/em> changes the behaviour of every other griefing mob.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Crucially: with <code>mobGriefing false<\/code>, <strong>creepers still explode and still hurt players and entities<\/strong> \u2014 they just don&#8217;t break blocks. So your players still take damage; they just won&#8217;t lose their builds.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Affected behaviours when you set it to <code>false<\/code>:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Mob \/ source<\/th><th>What stops when mobGriefing = false<\/th><\/tr><\/thead><tbody><tr><td>Creepers<\/td><td>No longer destroy blocks (still explode &amp; damage players)<\/td><\/tr><tr><td>TNT lit by mobs<\/td><td>No mob-triggered block destruction<\/td><\/tr><tr><td>Endermen<\/td><td>Stop picking up \/ placing blocks<\/td><\/tr><tr><td>Zombies<\/td><td>Stop breaking doors<\/td><\/tr><tr><td>Withers &amp; ghasts<\/td><td>Explosions stop breaking blocks<\/td><\/tr><tr><td>Sheep \/ rabbits \/ villagers<\/td><td>Stop eating grass \/ crops, farming<\/td><\/tr><tr><td>Snow golems, silverfish, ravagers, end crystals<\/td><td>Block-changing behaviours disabled<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">For many survival servers that trade-off is fine. But if you rely on iron-farm villager mechanics, enderman behaviour, or you want players to keep using TNT for mining, you need a more surgical tool \u2014 and that&#8217;s where WorldGuard comes in.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Stop creepers but KEEP TNT (WorldGuard)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Vanilla cannot separate creepers from the rest of mob-griefing \u2014 there&#8217;s no game rule that isolates them. If you want creeper explosions blocked but functional TNT (and the rest of mob behaviour intact), you need the <strong>WorldGuard<\/strong> plugin (which requires a Bukkit\/Spigot\/Paper server). WorldGuard adds region flags that control explosions independently:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Flag<\/th><th>Controls<\/th><th>Values<\/th><\/tr><\/thead><tbody><tr><td><code>creeper-explosion<\/code><\/td><td>Whether creeper explosions do damage<\/td><td><code>allow<\/code> \/ <code>deny<\/code><\/td><\/tr><tr><td><code>tnt<\/code><\/td><td>Whether TNT detonation &amp; block damage is permitted<\/td><td><code>allow<\/code> \/ <code>deny<\/code><\/td><\/tr><tr><td><code>other-explosion<\/code><\/td><td>Other explosions (ghasts, end crystals, beds in the Nether)<\/td><td><code>allow<\/code> \/ <code>deny<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To block creeper damage everywhere while keeping TNT functional, apply the flags to the special <code>__global__<\/code> region (which covers the entire world):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/rg flag __global__ creeper-explosion deny\n\/rg flag __global__ tnt allow<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">(You can leave <code>tnt<\/code> unset to keep its default behaviour \u2014 explicitly setting it to <code>allow<\/code> just makes your intent clear.) To protect only a specific build instead of the whole world, define a region first and flag that region by name:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/wand                       (select two corners with WorldEdit)\n\/rg define spawn\n\/rg flag spawn creeper-explosion deny\n\/rg flag spawn tnt allow<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the correct, server-tested way to stop creeper terrain damage while keeping the rest of the game \u2014 including mining with TNT \u2014 fully functional. Leave <code>mobGriefing<\/code> at its default <code>true<\/code> when you use this method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bedrock servers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Bedrock Dedicated Server has its own <code>mobgriefing<\/code> game rule (all lowercase), set the same way: <code>\/gamerule mobgriefing false<\/code>. It behaves like the Java rule \u2014 creepers stop breaking blocks but still explode and damage players. Bedrock doesn&#8217;t support WorldGuard, so for surgical, region-based control you&#8217;d use a behaviour pack or an add-on rather than a plugin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Other options<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Stop creepers spawning at all<\/strong> \u2014 if you&#8217;d rather not deal with them, region-based <code>mob-spawning deny<\/code> (WorldGuard) or reducing hostile spawns limits them, though this affects all hostile mobs.<\/li>\n<li><strong>Difficulty<\/strong> \u2014 on <code>peaceful<\/code>, hostile mobs including creepers don&#8217;t spawn at all (but you lose all combat).<\/li>\n<li><strong>Charged creepers<\/strong> \u2014 note that lightning-charged creepers deal a much larger explosion; the same flags\/rules apply.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re tuning a lot of these world rules at once, our guides on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-stop-the-day-cycle-in-your-minecraft-server\/\">stopping the day\/night cycle<\/a> and <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-stop-warden-spawning-in-your-minecraft-server\/\">stopping the Warden from spawning<\/a> cover the same game-rule and region approach. For the full configuration reference, see the <a href=\"https:\/\/xgamingserver.com\/docs\/minecraft\">Minecraft server documentation<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Does mobGriefing false stop creepers from exploding?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No \u2014 creepers still explode and still damage players and entities. The rule only stops them (and other mobs) from <em>breaking blocks<\/em>. If you want to stop the explosion damage itself in an area, use WorldGuard&#8217;s <code>creeper-explosion deny<\/code> flag.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I stop creeper damage but keep TNT?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Vanilla can&#8217;t separate them \u2014 <code>mobGriefing<\/code> affects both. Use WorldGuard: <code>\/rg flag __global__ creeper-explosion deny<\/code> and leave <code>tnt<\/code> at <code>allow<\/code>. That blocks creeper block damage server-wide while keeping functional TNT.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What&#8217;s the command on newer versions?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">On Java 1.21.11+ the rule is <code>mob_griefing<\/code> (snake_case); on 1.21.10 and earlier it&#8217;s <code>mobGriefing<\/code>. On Bedrock it&#8217;s <code>mobgriefing<\/code>. The behaviour is the same on all three.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Will this affect my villager or iron farms?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes \u2014 <code>mobGriefing false<\/code> disables villager farming behaviour and other mob block interactions, which can break some farms. If that matters, use the WorldGuard <code>creeper-explosion<\/code> flag instead and leave <code>mobGriefing<\/code> on.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Want creeper-proofing handled without editing configs by hand? Our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">managed Minecraft servers<\/a> ship with Paper, WorldGuard-ready setups and a one-click config editor so you can apply these rules in seconds.<\/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>Nothing ruins a survival server faster than coming back to a crater where your base used to be. Creepers are the number-one source of grief complaints on Minecraft servers \u2014 and the good news is you have several ways to stop the block damage without turning your world into a sandbox. This guide covers the [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":2787,"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,66],"tags":[],"class_list":["post-2786","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-manage-minecraft-server","category-minecraft-server-docs","category-plugins-mods"],"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>Disabling Creeper Explosions &amp; TNT in 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\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Disabling Creeper Explosions &amp; TNT in your Minecraft server\" \/>\n<meta property=\"og:description\" content=\"Nothing ruins a survival server faster than coming back to a crater where your base used to be. Creepers are the number-one source of grief complaints on Minecraft servers \u2014 and the good news is you have several ways to stop the block damage without turning your world into a sandbox. This guide covers the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-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-03-11T04:07:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:21:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\"},\"author\":{\"name\":\"Youssef Ayman\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\"},\"headline\":\"Disabling Creeper Explosions &#038; TNT in your Minecraft server\",\"datePublished\":\"2023-03-11T04:07:52+00:00\",\"dateModified\":\"2026-06-15T19:21:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\"},\"wordCount\":930,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png\",\"articleSection\":[\"Manage Minecraft server\",\"Minecraft\",\"Plugins &amp; Mods\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\",\"name\":\"Disabling Creeper Explosions & TNT in your Minecraft server - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png\",\"datePublished\":\"2023-03-11T04:07:52+00:00\",\"dateModified\":\"2026-06-15T19:21:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-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\":\"Disabling Creeper Explosions &#038; TNT in 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":"Disabling Creeper Explosions & TNT in 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\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/","og_locale":"en_US","og_type":"article","og_title":"Disabling Creeper Explosions & TNT in your Minecraft server","og_description":"Nothing ruins a survival server faster than coming back to a crater where your base used to be. Creepers are the number-one source of grief complaints on Minecraft servers \u2014 and the good news is you have several ways to stop the block damage without turning your world into a sandbox. This guide covers the [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2023-03-11T04:07:52+00:00","article_modified_time":"2026-06-15T19:21:27+00:00","og_image":[{"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png","width":1024,"height":576,"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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/"},"author":{"name":"Youssef Ayman","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e"},"headline":"Disabling Creeper Explosions &#038; TNT in your Minecraft server","datePublished":"2023-03-11T04:07:52+00:00","dateModified":"2026-06-15T19:21:27+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/"},"wordCount":930,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png","articleSection":["Manage Minecraft server","Minecraft","Plugins &amp; Mods"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/","url":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/","name":"Disabling Creeper Explosions & TNT in your Minecraft server - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png","datePublished":"2023-03-11T04:07:52+00:00","dateModified":"2026-06-15T19:21:27+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-your-minecraft-server\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-12.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/disabling-creeper-explosions-tnt-in-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":"Disabling Creeper Explosions &#038; TNT in 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\/03\/blog-background-12.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2786","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=2786"}],"version-history":[{"count":5,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2786\/revisions"}],"predecessor-version":[{"id":22474,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2786\/revisions\/22474"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/2787"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=2786"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=2786"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=2786"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}