<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AFar_Lands_%28Java_Edition%29%2FBeta_1.8_to_1.14.3</id>
	<title>Minecraft:Far Lands (Java Edition)/Beta 1.8 to 1.14.3 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AFar_Lands_%28Java_Edition%29%2FBeta_1.8_to_1.14.3"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Far_Lands_(Java_Edition)/Beta_1.8_to_1.14.3&amp;action=history"/>
	<updated>2026-09-11T01:59:33Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.sasgaming.net/index.php?title=Minecraft:Far_Lands_(Java_Edition)/Beta_1.8_to_1.14.3&amp;diff=195944&amp;oldid=prev</id>
		<title>SyncBot: Sync: new page from Minecraft</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Far_Lands_(Java_Edition)/Beta_1.8_to_1.14.3&amp;diff=195944&amp;oldid=prev"/>
		<updated>2026-09-10T11:04:28Z</updated>

		<summary type="html">&lt;p&gt;Sync: new page from Minecraft&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Italic title|Java Edition}}&lt;br /&gt;
{{Disclaimer}}&lt;br /&gt;
The &amp;#039;&amp;#039;&amp;#039;[[Minecraft:Far Lands (Java Edition)|Far Lands]]&amp;#039;&amp;#039;&amp;#039; were a terrain bug that occurred in versions of {{MC}} up to Beta 1.7.3. They were caused by errors in the math that governs terrain generation, resulting in abnormal structures resembling excessively stretched-out terrain. They were fixed in [[Minecraft:Java Edition Beta 1.8 Pre-release|Beta 1.8 Pre-release]], and moved far beyond the boundary to 53,905,378,846,979,748 blocks from spawn. Reaching this distance is impossible without extensive modding. In addition, most of the [[Minecraft:Java Edition distance effects|distance effects]] were fixed. The Y Far Lands (aka the Sky and Ground Far Lands) were overlooked, but were fixed in 1.13 with the world generation rewrite. Prior to the removal of the first iteration of [[Minecraft:Custom]] worlds, it was possible to force the Far Lands to generate by setting the Coordinate Scale to extreme high values.&lt;br /&gt;
&lt;br /&gt;
Beginning in [[Minecraft:Java Edition 1.14.4|1.14.4]], additional changes to the way the fix worked pushed the Far Lands to [[Minecraft:Far Lands (Java Edition)/Release 1.14.4 to 26.2.1|even further distances]].&lt;br /&gt;
&lt;br /&gt;
== Explanation ==&lt;br /&gt;
&lt;br /&gt;
The Far Lands were a terrain generation bug that occurred at ±12,550,824 along the X and Z-axes prior to Beta 1.8, as well as the Y-axis (technically) before Java 1.13. The Far Lands generated because of an integer overflow error within Minecraft. The [[Minecraft:noise generator]] that draws Minecraft&amp;#039;s height map increases by 684.412 for every four blocks, causing an integer overflow at approximately ±12,550,824 (sometimes ±12,550,821.) Multiplying the aforementioned numbers and dividing the noise scale by 4 results in the 32-bit signed integer max value, which when overflowed, results in an extreme noise seed.&lt;br /&gt;
&lt;br /&gt;
In [[Minecraft:Beta 1.8]], as part of changes to terrain generation, the following code, referred to as the &amp;#039;&amp;#039;&amp;#039;&amp;quot;modulo&amp;quot; patch&amp;#039;&amp;#039;&amp;#039;, was added within the &amp;lt;code&amp;gt;NoiseGeneratorOctave.java&amp;lt;/code&amp;gt; file:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
for (int var16 = 0; var16 &amp;lt; this.octaves; ++var16)&lt;br /&gt;
{&lt;br /&gt;
double var17 = (double)p_76304_2_ * var27 * p_76304_8_;&lt;br /&gt;
double var19 = (double)p_76304_3_ * var27 * p_76304_10_;&lt;br /&gt;
double var21 = (double)p_76304_4_ * var27 * p_76304_12_;&lt;br /&gt;
long var23 = MathHelper.floor_double_long(var17);&lt;br /&gt;
long var25 = MathHelper.floor_double_long(var17);&lt;br /&gt;
var17 -= (double)var23;&lt;br /&gt;
var21 -= (double)var25;&lt;br /&gt;
var23 %= 16777216L;&lt;br /&gt;
var25 %= 16777216L;&lt;br /&gt;
var17 += (double)var23;&lt;br /&gt;
var21 += (double)var25;&lt;br /&gt;
this.generatorCollection[var16].populationNoiseArray(p_76304_, var17, var19, var21, p_76304_5_, p_76304_6_, p_76304_7_, p_76304_8_ * var27, p_76304_10_ * var27, p_76304_12_ * var27;&lt;br /&gt;
var27 /= 2.0D;&lt;br /&gt;
}&lt;br /&gt;
return p_76304_1_;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This was present in every following version, including Beta 1.8, up to [[Minecraft:Java Edition 1.14.3|1.14.3]]. It essentially prevents the noise generator from suffering integers overflowing by clamping the input before being passed. It also allows for the terrain to &amp;quot;wrap around&amp;quot; and continue generating normally even at high distances. By removing everything from &amp;lt;code&amp;gt;long var23&amp;lt;/code&amp;gt; to the last &amp;lt;code&amp;gt;(double)var25;&amp;lt;/code&amp;gt;, the patch is undone, and the Far Lands can be moved back within vanilla boundaries at their original locations. &lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
[[File:Far Lands in 1.8.1.png|thumb|Far Lands generating in 1.8.1 with the patch removed]]&lt;br /&gt;
If the modulo patch is undone, on the X and Z axis, the Far Lands and Farther Lands initiate as they did in Beta 1.7 and below (±12,550,824), with an identical chance of offset at positive positions. However, due to the new height limits and new world generation, they are actually 256 blocks high. On the Y-axis, the Far Lands initiate at around twice the former number, which is therefore ±25,101,648. The Farther Lands also generate at ±2,008,131,840 on the Y-axis, however, they cannot be generated without lowering the selector noise period.&lt;br /&gt;
&lt;br /&gt;
The new position due to the modulo patch is at X/Z: 53,905,378,846,979,748. As such, this makes them impossible to view in vanilla gameplay, due to imposed limitations and how &amp;#039;&amp;#039;Minecraft&amp;#039;&amp;#039; is designed.&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
Whether enabled by simply removing the modulo patch or going to the new location where they generate,The edge Far Lands and corner Far Lands, as well as their Farther variations, generate relatively identically to their pre-Beta 1.8 counterparts, but utilizing the entire height limit. In versions prior to [[Minecraft:Java Edition 1.7.2|1.7.2]], they remained capped at y=128 despite the change in world height; afterwards, they will generate up to y=256. By modding the world height to continue indefinitely, they can continue up until they reach the sky Far Lands at y=+25,101,648 (and equivalently the ground Far Lands at y=-25,101,648).&lt;br /&gt;
&lt;br /&gt;
=== Far Lands ===&lt;br /&gt;
==== Sky Far Lands ====&lt;br /&gt;
{{outdated|section=1|The &amp;#039;&amp;#039;[[Minecraft:Old Customized|Customized]]&amp;#039;&amp;#039; world type was removed in [[Minecraft:Java Edition 1.13|1.13]], so the Sky Far Lands can no longer be generated without mods.}}&lt;br /&gt;
[[File:Far lands on Y.png|thumb|right|The Far Lands generating on an unmodded modern custom world, before 1.13. A high coordinate scale was also used to generate this, resulting in repetitive terrain.]]&lt;br /&gt;
&lt;br /&gt;
The Far Lands generate at positive values of the Y-axis past y=25,101,648. [[Minecraft:Monolith]]s generate up to this point if the player can get them to generate.&lt;br /&gt;
&lt;br /&gt;
Setting the Height Scale extremely high can generate the Far Lands in the sky up to the height limit.&lt;br /&gt;
&lt;br /&gt;
This is possible in Vanilla.&lt;br /&gt;
&lt;br /&gt;
==== Vertex Far Lands ====&lt;br /&gt;
When the Sky or Ground Far Lands meet with the vanilla Corner Far Lands, many interesting terrain features can be sighted. The content of these intersections appears to vary throughout worlds, with some being completely blank, some completely solid, and some generating like regular Far Lands material. In some cases, diagonal patterns with large absent chunks generate.&amp;lt;ref&amp;gt;{{ytl|-w6okOz-iNs|Minecraft Stops Here. Please Turn Around!|AntVenom|January 20, 2018}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Sky Far Lands.png|The Sky Far Lands.&lt;br /&gt;
Void Far Lands.png|The Ground Far Lands.&lt;br /&gt;
Negativeylands.png|The Ground Far Lands.&lt;br /&gt;
Positriplecorner.png|An intersection of all 3 sets of Far Lands, where the Y-axis is positive.&lt;br /&gt;
Positriplecornerbetter.png|A more extensive view of the previous scenario.&lt;br /&gt;
Vertex Far Lands (positive) (1).png&lt;br /&gt;
Negatriplecorner.png|An intersection of all 3 sets of Far Lands, where the Y-axis is negative.&lt;br /&gt;
Vertex Far Lands (negative) (1).png&lt;br /&gt;
Vertexfarlandscrazyterrain.png|Inside the Sky Vertex Far Lands, with crazy terrain.&lt;br /&gt;
Vertexfarlandsdiagonalpattern.png|Inside the Ground Vertex Far Lands, with a diagonal pattern.&lt;br /&gt;
Voidfartherlands.png|The Ground Farther Lands inside the Ground Corner Far Lands.&lt;br /&gt;
Skycornerfarlands.png|The Sky Corner Far Lands.&lt;br /&gt;
Skycornerfarlandsinside.png|Inside the Sky Corner Far Lands.&lt;br /&gt;
Voidcornerfarlands.png|The Ground Corner Far Lands.&lt;br /&gt;
Voidcornerfarlandsinside.png|Inside the Ground Corner Far Lands.&lt;br /&gt;
Fartherlandsskycornerfarlands.png|The Farther Lands inside the Sky Corner Far Lands.&lt;br /&gt;
Fartherlandsskyvertexfarlands.png|The Farther Lands inside the Sky Vertex Far Lands.&lt;br /&gt;
Fartherlandsvoidcornerfarlands.png|The Farther Lands inside the Ground Corner Far Lands.&lt;br /&gt;
Fartherlandsvoidvertexfarlands.png|The Farther Lands inside the Ground Vertex Far Lands.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Depth noise Far Lands ===&lt;br /&gt;
Like low/high and selector noise which respectively control the Far and Farther Lands, depth noise can be made to overflow at a given position. By default, it overflows at 42,949,672.96 blocks. Due to the Far Lands initiating before it, the overflow in depth noise is effectively impossible to see. However, if depth noise is made to overflow before tradition far lands, achievable by pushing the far lands farther out than this distance or moving the depth noise far lands closer, the effects can be seen immediately as it overflows, the terrain jumps up a few blocks. Terrain after this point is slightly more boring than before due to depth noise controlling subtle variation, which no longer exists after the overflow due to it almost always being at the max possible value. Every so often, very long &amp;quot;rifts&amp;quot; characteristic of depth noise far lands can be seen, which extend for extremely long. These rifts end once they hit the point twice the distance of the first overflow, and rifts as a whole past this point do not seem to be able to come into existence. Rifts have also only been noted on the positive X axis and are yet to be found on the Z axis.&lt;br /&gt;
&lt;br /&gt;
===Dimensions===&lt;br /&gt;
==== The End ====&lt;br /&gt;
The End was implemented after the Far Lands were removed, meaning that the End Far Lands never generated naturally.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
PCFarEnd.png|The edge Far Lands on Java Edition.&lt;br /&gt;
PCCornerEnd.png|The corner Far Lands on Java Edition.&lt;br /&gt;
PCFarMap.png|A map created in the corner Far Lands on Java Edition.&lt;br /&gt;
18FarEnd.png|The edge Far Lands on Java Edition before 1.9.&lt;br /&gt;
18CornerEnd.png|The corner Far Lands on Java Edition before 1.9.&lt;br /&gt;
18FarMap.png|A map created in the corner Far Lands on Java Edition before 1.9.&lt;br /&gt;
Endcityfarlands.png|An end city in the Far Lands.&lt;br /&gt;
Endendgefartherlands.png|The Farther Lands in the End.&lt;br /&gt;
Endfartherlands.png|The Corner Farther Lands in the End.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The Far Lands were never actually removed from the game in Beta 1.8. Rather, what &amp;#039;&amp;#039;was&amp;#039;&amp;#039; fixed was integers and noise values overflowing at the 32-bit limit, and thus putting the new start way beyond the boundaries of a normal &amp;#039;&amp;#039;Minecraft&amp;#039;&amp;#039; world. As such, by patching the game to reverse this change, or by using a BigInteger mod, the Far Lands can be brought back. However, their location, makeup and progression depends entirely on the version and/or method used. If the game is modded to simply undo the modulo patch that fixed the original Far Lands, then they will generate at their original starting point of X/Z: ±12,550,821. The limit to how much of the Far Lands will generate is dependent on what mods and/or version is being used. If only the patch is reversed, then it will vary due to various vanilla features throughout different versions that affected the edge of the world.&lt;br /&gt;
&lt;br /&gt;
The only way to see the new locations of the Far Lands is by using a 64-bit mod or BigInteger mod that does not patch the fix. If a 64-bit mod is used, the [[Minecraft:Java Edition distance effects|distance effects]] will continue to progress as one goes further; while the BigInteger mods end up patching these.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Coordinates&lt;br /&gt;
!Effects&lt;br /&gt;
! Image (if avaliable)&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;color: white; background: #000&amp;quot; | Accessible through 64-bit and BigInteger&lt;br /&gt;
|-&lt;br /&gt;
| X/Z: -53,905,378,846,979,752&amp;lt;hr&amp;gt;X/Z: 53,905,378,859,432,511&lt;br /&gt;
|&lt;br /&gt;
* The Far Lands begin generating due to the &amp;quot;modulo&amp;quot; patch breaking down, resulting in noise value overflowing at this point. Because of the three-block offset that sometimes happened in the vanilla Far Lands, this offset is instead measured with a 12,452,760 block difference (but not a scaling of the original offset).&amp;lt;ref&amp;gt;[https://youtu.be/F8cMZA8J2Hk?t=473 breaking Minecraft&amp;#039;s FINAL Distance Limit…], YouTube, April 1, 2021&amp;lt;/ref&amp;gt;&lt;br /&gt;
* If a Stripe Lands fix is not enabled, the Far Lands will appear two-dimensional.&lt;br /&gt;
|[[File:MC-distance13.png|thumb|right|240px|Without the fix]][[File:MC-distance12.png|thumb|right|240px|With the Stripe Lands fix]]&lt;br /&gt;
|-&lt;br /&gt;
| X/Z: ±576,460,752,303,423,488 (±2&amp;lt;sup&amp;gt;59&amp;lt;/sup&amp;gt;)&lt;br /&gt;
|&lt;br /&gt;
* If using a 64-bit mod, world renderer begins to break down, causing terrain to flicker in and out, like at the 32-bit.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| X/Z: ±4,312,430,307,758,379,833&lt;br /&gt;
|&lt;br /&gt;
* By this point, Selector Noise has gradually broken down at this point, causing the Farther Lands to generate.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| X/Z: ±9,223,372,036,854,775,807 (±2&amp;lt;sup&amp;gt;63&amp;lt;/sup&amp;gt;)&lt;br /&gt;
| &lt;br /&gt;
* The 64-bit limit and the maximum the Far Lands will generate using a 64-bit mod, since world renderer breaks completely at this distance in this case, giving way to an endless void like in the 32-bit cases. The game will always crash when approaching this limit. Due to the effects mentioned above however, it will be almost completely invisible, if a Stripe Lands fix is not enabled.&lt;br /&gt;
|[[File:64-bit limit Far Lands end.png|thumb|right|240px|Empty void after rendering breaks at the 64-bit limit at X: 9,223,372,036,854,776,000.]]&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;color: white; background: #000&amp;quot; | BigInteger only&lt;br /&gt;
|-&lt;br /&gt;
| X: ±{{abbr|8.1751×10&amp;lt;sup&amp;gt;48&amp;lt;/sup&amp;gt;|8,175,100,408,620,645,429,587,604,206,419,312,153,467,715,321,856}}&amp;lt;hr&amp;gt;X: ±{{abbr|8.5766×10&amp;lt;sup&amp;gt;48&amp;lt;/sup&amp;gt;|8,576,620,983,668,390,695,654,176,953,195,873,545,661,439,803,392}}&amp;lt;hr&amp;gt;X/Z: ±{{abbr|9.1762×10&amp;lt;sup&amp;gt;48&amp;lt;/sup&amp;gt;|9,176,239,949,795,123,308,594,625,193,335,189,314,391,974,608,896}}&lt;br /&gt;
|&lt;br /&gt;
* The Far Lands begin degrading into thinner slices due to the decay process, in three stages at the aforementioned distances. However, there are no comb-like artifacts nor dotted lines of terrain generation, as lerp failure, which was responsible for these artifacts, was fixed in [[Minecraft:Beta 1.9-pre2]].&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| X: ±{{abbr|1.0299×10&amp;lt;sup&amp;gt;49&amp;lt;/sup&amp;gt;|10,299,981,089,825,331,303,027,420,223,646,772,450,634,036,674,560}}&amp;lt;hr&amp;gt;Z: ±~{{abbr|1.5–2×10&amp;lt;sup&amp;gt;49&amp;lt;/sup&amp;gt;|15,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000 to 17,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000}}&lt;br /&gt;
|&lt;br /&gt;
* The Far Lands end completely at this point, though the end point is different on each axis, as they continue until at least 20 quindecillion on the Z axis. This marks the end of &amp;#039;&amp;#039;Minecraft&amp;#039;&amp;#039; terrain generation, unless extensive modding on top of this patches the noise overflow and Far Lands.&lt;br /&gt;
* As stated before, the end point is inconsistent due to how the decay works and does not result in a specific point each time, and will vary by seed.&lt;br /&gt;
|[[File:Fringe Lands end.png|thumb|right|240px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Effects ==&lt;br /&gt;
While completely unrelated to terrain, these effects occur coincidentally with Far Lands due to their shared extreme distances and are worth noting as a result.&lt;br /&gt;
&lt;br /&gt;
=== Floating-point precision errors with entities and particles ===&lt;br /&gt;
{{main|Java Edition distance effects}}&lt;br /&gt;
&lt;br /&gt;
Even in modern versions of Minecraft, the floating-point precision errors still exist, but only with translucent block rendering, natural snow generation and snowfall at extreme heights.&lt;br /&gt;
&lt;br /&gt;
=== Darkness ===&lt;br /&gt;
{{main|Java Edition hard limits}}&lt;br /&gt;
In vanilla Minecraft 1.14, the lighting system breaks beyond 2&amp;lt;sup&amp;gt;25&amp;lt;/sup&amp;gt; (X/Z ±33,554,432)&amp;lt;ref&amp;gt;{{bug|MC-194878}}&amp;lt;/ref&amp;gt; (though this distance is available only via editing source codes), however, it isn&amp;#039;t like what would happen beyond X/Z=32,000,000 in older versions. Instead, everything abruptly becomes absolutely dark and ignores light sources. By pressing F3, it shows that the sky light level is 0, thus [[Minecraft:Undead|undead mobs]] do not burn when exposed to the sky. The chunks, however, are still solid and block physics still function. Night Vision can help to counteract the visual darkness; it is currently unknown whether the [[Minecraft:Conduit Power]] effect works or not.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|java beta}}&lt;br /&gt;
|{{HistoryLine||1.8|dev=Pre-release|Fixed 32-bit overflow of noise functions. The Far Lands can no longer generate within world boundary without modification to the game, as the Far Lands now begin at ~53 quadrillion blocks.}}&lt;br /&gt;
|{{HistoryLine|java}}&lt;br /&gt;
|{{HistoryLine||1.2.1|dev=12w07a|The height limit has been increased to 256 blocks, and as such trees and structures are able to generate above the Far Lands.}}&lt;br /&gt;
|{{HistoryLine||1.7.2|dev=13w36a|The terrain generation has been overhauled and now generates up to 256 blocks, and as such the Far Lands now generate to that height.}}&lt;br /&gt;
|{{HistoryLine||1.8|dev=14w17a|Added [[Minecraft:Old Customized|customized]] world generation. This made it possible to create the Sky and Ground Far Lands without mods.}}&lt;br /&gt;
|{{HistoryLine||1.13|dev=18w06a|Removed customized worlds. The Sky and Ground Far Lands can no longer be created without mods.}}&lt;br /&gt;
|{{HistoryLine||1.14.4|Changes to the modulo patch now result in the Far Lands generating at ~1.808 septillion blocks out.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
== Navigation ==&lt;br /&gt;
{{Navbox removed features}}&lt;br /&gt;
&lt;br /&gt;
[[Minecraft:pt:Far Lands (Edição Java)]]&lt;br /&gt;
[[Minecraft:zh:边境之地/Java版]]&lt;br /&gt;
[[Category:Far Lands]]&lt;/div&gt;</summary>
		<author><name>SyncBot</name></author>
	</entry>
</feed>