{"id":2724,"date":"2023-03-04T21:05:29","date_gmt":"2023-03-04T21:05:29","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=2724"},"modified":"2026-06-15T19:20:45","modified_gmt":"2026-06-15T19:20:45","slug":"how-to-change-the-level-type-of-your-minecraft-server","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/","title":{"rendered":"How to change the Level Type of Your Minecraft Server"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">The <code>level-type<\/code> setting in your Minecraft server&#8217;s <code>server.properties<\/code> file decides how the entire world is shaped: rolling vanilla terrain, a pancake-flat creative canvas, towering amplified mountains, or a single endless biome. Changing it is a one-line edit, but there is a catch that trips up almost everyone the first time: editing the value alone does nothing to an already-generated world. You have to regenerate the level for the new type to take hold. This guide walks through every valid level type, the modern <code>minecraft:<\/code>-prefixed syntax versus the old bare names, custom superflat configuration with <code>generator-settings<\/code>, how the world seed interacts with all of this, and the exact regeneration steps so you do not lose work by accident.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What level-type actually controls<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>level-type<\/code> is a single key in <code>server.properties<\/code>, the plain-text configuration file that Minecraft Java Edition reads once at startup. The format is <code>key=value<\/code>, one entry per line, no quotes. The default value is <code>minecraft:normal<\/code>, which produces the standard overworld generation most players expect.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The level type is a <em>world-generation preset<\/em>. It tells the server which algorithm to use the moment a chunk is created for the first time. Because of that, it only affects brand-new chunks. The terrain you have already explored is frozen in the region files on disk, so flipping the value does not retroactively reshape an existing map. We come back to that critical point below, but keep it in mind as you read.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The five built-in level types<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Modern Minecraft Java Edition ships with five world-generation presets. Since version 1.19, the server expects the namespaced <code>minecraft:<\/code> prefix on each one. Here is what each does:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Value (1.19+)<\/th><th>Legacy name (pre-1.19)<\/th><th>What you get<\/th><\/tr><\/thead><tbody><tr><td><code>minecraft:normal<\/code><\/td><td><code>default<\/code><\/td><td>Standard overworld: biomes, caves, oceans, mountains. The default.<\/td><\/tr><tr><td><code>minecraft:flat<\/code><\/td><td><code>flat<\/code><\/td><td>Superflat \u2014 layered slabs of blocks, no terrain features. Great for creative builds and minigames.<\/td><\/tr><tr><td><code>minecraft:large_biomes<\/code><\/td><td><code>largeBiomes<\/code><\/td><td>Same generation as normal but biomes are scaled up roughly 4x, so each is much larger.<\/td><\/tr><tr><td><code>minecraft:amplified<\/code><\/td><td><code>amplified<\/code><\/td><td>Exaggerated, extreme terrain with massive peaks and overhangs. Demanding on CPU.<\/td><\/tr><tr><td><code>minecraft:single_biome_surface<\/code><\/td><td>(buffet, older snapshots)<\/td><td>One biome stretched across the whole world. Configured via <code>generator-settings<\/code>.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You can also point <code>level-type<\/code> at a custom world-generation preset supplied by a datapack, using that datapack&#8217;s namespaced ID. That is an advanced route most servers will never need, but it is the same mechanism \u2014 the bundled presets are simply the ones Mojang ships in the game.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">normal vs large_biomes vs amplified at a glance<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you want a recognizable survival world, stay on <code>minecraft:normal<\/code>. Choose <code>minecraft:large_biomes<\/code> when you want sprawling deserts and forests that take a long walk to cross \u2014 it is identical generation logic, just zoomed out. Reach for <code>minecraft:amplified<\/code> only if your hardware can handle it: the dramatic terrain means far more blocks per chunk to generate and render, which raises CPU and memory pressure noticeably. On a small box, amplified worlds can cause lag spikes during exploration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Modern minecraft: prefix vs legacy bare names<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the single most common reason a level-type change &#8220;does not work.&#8221; Before version 1.19, the value was a bare keyword: <code>default<\/code>, <code>flat<\/code>, <code>largeBiomes<\/code>, <code>amplified<\/code>. From 1.19 onward, Minecraft uses the namespaced form with the <code>minecraft:<\/code> prefix and a slightly different naming scheme (note <code>normal<\/code> instead of <code>default<\/code>, and the snake_case <code>large_biomes<\/code>).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On a current server, write the prefixed value:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>level-type=minecraft:flat<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">On an older server (pre-1.19), the bare name is what works:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>level-type=flat<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If you put a bare name into a 1.19+ server, or a prefixed name into a very old one, the server typically falls back to normal generation and you end up scratching your head over a flat-looking-not-flat world. Always match the syntax to your server version. When in doubt, use the prefixed form \u2014 that is the correct value for every modern build and for the calendar-versioned releases that followed the 1.21 line.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step-by-step: changing the level type<\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>Stop the server completely. <code>server.properties<\/code> is only read at startup, so editing it while the server runs accomplishes nothing until a restart \u2014 and a clean stop avoids the file being overwritten on shutdown.<\/li><li>Open <code>server.properties<\/code> in your control panel&#8217;s file editor or via SFTP.<\/li><li>Find the <code>level-type<\/code> line and set your chosen value, for example <code>level-type=minecraft:amplified<\/code>.<\/li><li>If you are switching to or from a generated world, plan to regenerate (see the next section) \u2014 otherwise the change will only apply to chunks you have never visited.<\/li><li>Save the file and start the server.<\/li><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Most managed hosts surface <code>server.properties<\/code> directly in the panel so you do not need to touch SFTP at all. If you are setting up from scratch, our <a href=\"https:\/\/xgamingserver.com\/docs\/minecraft\">Minecraft server documentation<\/a> walks through where each file lives and how to edit it safely.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The catch: you must regenerate the world<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here is the part the brief flags as the number-one gotcha, and it deserves its own section. <code>level-type<\/code> is applied <strong>only when a world is generated<\/strong>. If you already have a <code>world<\/code> folder full of explored terrain, changing the value and restarting will leave your existing area exactly as it was. New chunks at the far edges of the map will use the new type, producing an ugly seam where flat meets normal, or amplified meets flat. To get a fully new world in the new type, you must delete (or move aside) the existing world data so the server generates fresh.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By default the world folders are named <code>world<\/code> (overworld), <code>world_nether<\/code>, and <code>world_the_end<\/code> \u2014 the names follow the <code>level-name<\/code> value in <code>server.properties<\/code>. To regenerate:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Stop the server.<\/li><li><strong>Back up<\/strong> the existing world folders first if there is any chance you want them later. Download them or rename them rather than deleting outright.<\/li><li>Delete the <code>world<\/code>, <code>world_nether<\/code>, and <code>world_the_end<\/code> folders (or just rename them to something like <code>world_old<\/code>).<\/li><li>Confirm your <code>level-type<\/code> (and any <code>level-seed<\/code> or <code>generator-settings<\/code>) values are correct.<\/li><li>Start the server. It will generate a brand-new world using the new level type.<\/li><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">A neat trick if you do not want to delete anything: change <code>level-name<\/code> to a new value, for example <code>level-name=world_flat<\/code>. The server cannot find a world by that name, so it creates one from scratch using your current <code>level-type<\/code> \u2014 and your old world stays untouched on disk under its original name. You can switch back later by pointing <code>level-name<\/code> at the old folder.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If juggling several worlds with different level types on one server sounds appealing, that is exactly what the Multiverse plugin is for. Instead of swapping <code>level-name<\/code> by hand, you can keep a flat creative world, a normal survival world, and a custom map live at once and teleport between them. See our walkthrough on <a href=\"https:\/\/xgamingserver.com\/blog\/multiverse-minecraft-plugin\/\">running multiple worlds with the Multiverse plugin<\/a> for the full setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Custom superflat worlds with generator-settings<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Setting <code>level-type=minecraft:flat<\/code> gives you the default superflat layout: a layer of bedrock, two layers of dirt, and a layer of grass, on a plains biome. But you do not have to accept that. The <code>generator-settings<\/code> key lets you define your own layer stack, biome, and structures. It is paired with the flat level type and is ignored by the other types.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The cleanest way to author the value is to build the preset in the single-player Customize screen (when creating a superflat world), copy the preset code, and paste it into <code>generator-settings<\/code> on the server. Modern versions use a JSON object for this key. For example, a thicker superflat with extra stone layers and a desert biome looks conceptually like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>level-type=minecraft:flat\ngenerator-settings={\"layers\":[{\"block\":\"minecraft:bedrock\",\"height\":1},{\"block\":\"minecraft:stone\",\"height\":10},{\"block\":\"minecraft:sand\",\"height\":2}],\"biome\":\"minecraft:desert\"}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The exact JSON keys and accepted block IDs depend on your game version, so the safe workflow is always: generate the preset in the client&#8217;s flat-world customizer for your version, then copy that string into the server file rather than hand-writing it. Remember that, like the level type itself, <code>generator-settings<\/code> only takes effect on world generation \u2014 change it, then regenerate the world.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>single_biome_surface<\/code> type works similarly: it reads a biome from <code>generator-settings<\/code> and stretches that one biome across the entire normal-style terrain, giving you, say, an endless jungle or an all-mushroom-fields world.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How level-seed interacts with level-type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>level-seed<\/code> key sets the seed for world generation. The level type and the seed work together but answer different questions: the type chooses the <em>generation algorithm<\/em>, and the seed chooses the <em>specific random layout<\/em> that algorithm produces. A given seed will produce a different-looking world under <code>minecraft:normal<\/code> than under <code>minecraft:large_biomes<\/code>, because the underlying algorithm differs even though the random input is the same.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want a reproducible world \u2014 for example to share a specific spawn area or to recreate a known map \u2014 set both keys before generating:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>level-type=minecraft:large_biomes\nlevel-seed=192837465<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Both keys are read at generation time. Changing <code>level-seed<\/code> on an existing world does nothing to already-generated chunks for the same reason <code>level-type<\/code> does not \u2014 the layout is already committed to disk. Leave <code>level-seed<\/code> blank to let the server pick a random seed. For superflat worlds, the seed has little visible effect since the terrain is uniform, but it still influences things like slime-chunk locations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance and gameplay considerations<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Level type has a real impact on server load. <code>minecraft:amplified<\/code> is the heaviest because each chunk contains dramatically more terrain to generate, store, and stream to players. If you run amplified on constrained hardware, pair it with a sensible <code>view-distance<\/code> (the default is <code>10<\/code> chunks, valid range 3\u201332) and <code>simulation-distance<\/code> to keep CPU and bandwidth in check. Superflat worlds are the lightest, which is part of why they are popular for minigame and build servers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For survival servers that want big, immersive landscapes without the cost of amplified, <code>minecraft:large_biomes<\/code> is a strong middle ground. If you are choosing a world type for a fresh community server and want headroom for whatever you pick, a well-provisioned host matters \u2014 our <a href=\"https:\/\/xgamingserver.com\/minecraft-server-hosting\">low-latency Minecraft hosting plans<\/a> are sized to handle amplified and heavily-modded generation without the lag a budget box introduces.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Why did changing level-type not change my world?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Because <code>level-type<\/code> is applied only when a world is first generated. Your existing <code>world<\/code> folder already contains generated chunks, so the server keeps using them and ignores the new type for that area. Only never-before-visited chunks at the map&#8217;s edge will use the new value. To get a fully new-type world, back up and delete (or rename) the <code>world<\/code>, <code>world_nether<\/code>, and <code>world_the_end<\/code> folders, or change <code>level-name<\/code> to a new name so the server generates fresh.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is the difference between minecraft:flat and the legacy &#8220;flat&#8221; value?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">They mean the same world type but apply to different versions. From Minecraft Java 1.19 onward, the server expects the namespaced form <code>level-type=minecraft:flat<\/code>. On pre-1.19 servers, the bare keyword <code>level-type=flat<\/code> is correct. Using the wrong form for your version usually causes the server to fall back to normal generation. If you are on any current release, always use the <code>minecraft:<\/code> prefix.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I make a custom superflat world on my server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Set <code>level-type=minecraft:flat<\/code> and then define your layers in the <code>generator-settings<\/code> key. The most reliable method is to build the preset in single-player using the flat-world Customize screen for your exact game version, copy the generated preset string, and paste it into <code>generator-settings<\/code> in <code>server.properties<\/code>. Then regenerate the world so the new generation settings take effect. Hand-writing the JSON works too, but copying from the client avoids version-specific syntax mistakes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I keep my world and just change the level type?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Not for the area you have already explored \u2014 generated terrain is permanent. What you can do is keep your old world while generating a new one in a different type by changing <code>level-name<\/code> to a fresh name (for example <code>world_amplified<\/code>). The server creates a new world under that name and leaves the original folder intact, so you can switch back later. For running several world types simultaneously, use the Multiverse plugin instead of swapping names.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Does the level seed work with every level type?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. <code>level-seed<\/code> sets the random input for generation regardless of the level type, but the same seed produces different results under different types because each type uses a different algorithm. Set both <code>level-type<\/code> and <code>level-seed<\/code> before the world is generated for a reproducible map. On superflat worlds the seed has little visible effect on terrain, since the layout is uniform, though it still affects features like slime chunks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Which level type is best for performance?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Superflat (<code>minecraft:flat<\/code>) is the lightest because there is minimal terrain to generate and render. <code>minecraft:normal<\/code> and <code>minecraft:large_biomes<\/code> are comparable mid-weight options. <code>minecraft:amplified<\/code> is by far the heaviest \u2014 its extreme terrain demands much more CPU, memory, and bandwidth, so reserve it for capable hardware and consider trimming <code>view-distance<\/code> and <code>simulation-distance<\/code> to compensate. While you are tuning generation, it is worth tightening the rest of your config too, from <a href=\"https:\/\/xgamingserver.com\/blog\/enabling-anti-xray-on-your-minecraft-server\/\">enabling Paper&#8217;s anti-Xray<\/a> to <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-disable-animals-spawning-on-your-minecraft-server\/\">controlling mob and animal spawns<\/a> on flat or minigame maps.<\/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>The level-type setting in your Minecraft server&#8217;s server.properties file decides how the entire world is shaped: rolling vanilla terrain, a pancake-flat creative canvas, towering amplified mountains, or a single endless biome. Changing it is a one-line edit, but there is a catch that trips up almost everyone the first time: editing the value alone does [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":2725,"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":[62,19],"tags":[],"class_list":["post-2724","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-minecraft-server-docs-2","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 change the Level Type of 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-change-the-level-type-of-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 change the Level Type of Your Minecraft Server\" \/>\n<meta property=\"og:description\" content=\"The level-type setting in your Minecraft server&#8217;s server.properties file decides how the entire world is shaped: rolling vanilla terrain, a pancake-flat creative canvas, towering amplified mountains, or a single endless biome. Changing it is a one-line edit, but there is a catch that trips up almost everyone the first time: editing the value alone does [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-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-04T21:05:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:20:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.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=\"3 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-change-the-level-type-of-your-minecraft-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/\"},\"author\":{\"name\":\"Youssef Ayman\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e\"},\"headline\":\"How to change the Level Type of Your Minecraft Server\",\"datePublished\":\"2023-03-04T21:05:29+00:00\",\"dateModified\":\"2026-06-15T19:20:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/\"},\"wordCount\":2043,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png\",\"articleSection\":[\"Manage Minecraft server\",\"Minecraft\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/\",\"name\":\"How to change the Level Type of Your Minecraft Server - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png\",\"datePublished\":\"2023-03-04T21:05:29+00:00\",\"dateModified\":\"2026-06-15T19:20:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-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\":\"How to change the Level Type of 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 change the Level Type of 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-change-the-level-type-of-your-minecraft-server\/","og_locale":"en_US","og_type":"article","og_title":"How to change the Level Type of Your Minecraft Server","og_description":"The level-type setting in your Minecraft server&#8217;s server.properties file decides how the entire world is shaped: rolling vanilla terrain, a pancake-flat creative canvas, towering amplified mountains, or a single endless biome. Changing it is a one-line edit, but there is a catch that trips up almost everyone the first time: editing the value alone does [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2023-03-04T21:05:29+00:00","article_modified_time":"2026-06-15T19:20:45+00:00","og_image":[{"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/"},"author":{"name":"Youssef Ayman","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/d76089853704ac189e01449b0e449e3e"},"headline":"How to change the Level Type of Your Minecraft Server","datePublished":"2023-03-04T21:05:29+00:00","dateModified":"2026-06-15T19:20:45+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/"},"wordCount":2043,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png","articleSection":["Manage Minecraft server","Minecraft"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/","name":"How to change the Level Type of Your Minecraft Server - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png","datePublished":"2023-03-04T21:05:29+00:00","dateModified":"2026-06-15T19:20:45+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-your-minecraft-server\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/03\/blog-background-1.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-change-the-level-type-of-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":"How to change the Level Type of 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-1.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2724","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=2724"}],"version-history":[{"count":4,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2724\/revisions"}],"predecessor-version":[{"id":22406,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/2724\/revisions\/22406"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/2725"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=2724"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=2724"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=2724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}