This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Equalize water pressure (think of how water acts in a U-tube) | |
* @param world | |
* @param cx Current X Coordinate | |
* @param cy | |
* @param cz | |
* @param ox Original X Coordinate | |
* @param oy | |
* @param oz | |
* @param data Metadata |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<worlds> | |
<world name="titan" seed=""> | |
<generate> | |
<IslandProvider /> | |
</generate> | |
<populate> | |
<stage id="prepopulate"> | |
<ore type="14" distribution="vein" probability="5" minY="0" maxY="64" /> | |
<ore type="15" distribution="glob" probability="4" minY="0" maxY="64" /> | |
</stage> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Public domain. | |
*/ | |
package net.minecraft.src; | |
import net.minecraft.client.Minecraft; | |
import org.lwjgl.input.Keyboard; | |
/** | |
* Most of SnowMod is in World, Chunk, and EntityRenderer. This is merely for |
NewerOlder