diff --git a/mcppatches/Start.java b/mcppatches/Start.java new file mode 100644 index 00000000..73bc7eef --- /dev/null +++ b/mcppatches/Start.java @@ -0,0 +1,199 @@ +import java.io.BufferedReader; +import java.io.DataOutputStream; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.HttpURLConnection; +import java.net.URL; +import java.util.ArrayList; +import java.util.Arrays; + +import joptsimple.ArgumentAcceptingOptionSpec; +import joptsimple.OptionParser; +import joptsimple.OptionSet; +import net.minecraft.client.main.Main; +import net.minecraft.launchwrapper.Launch; +import net.minecraft.util.Session; +import org.json.JSONObject; // JAR available at http://mvnrepository.com/artifact/org.json/json/20140107 + +public class Start +{ + public static void main(String[] args) throws Exception + { + // Support --username and --password parameters as args. + /** LEAVE THE LINE BELOW - IT'S UPDATED BY THE INSTALL SCRIPTS TO THE CORRECT MINECRAFT VERSION */ + args = concat(new String[] {"--version", "mcp", "--accessToken", "0", "--assetsDir", "assets", "--assetIndex", "1.7.10", "--userProperties", "{}"}, args); + + // Authenticate --username and --password with Mojang. + // *** Username should most likely be an email address!!! *** + OptionParser optionParser = new OptionParser(); + optionParser.allowsUnrecognizedOptions(); + ArgumentAcceptingOptionSpec username = optionParser.accepts("username").withRequiredArg(); + ArgumentAcceptingOptionSpec password = optionParser.accepts("password").withRequiredArg(); + ArgumentAcceptingOptionSpec launchwrapper = optionParser.accepts("useLaunchWrapper").withRequiredArg().ofType(Integer.class).defaultsTo(Integer.valueOf(0), new Integer[0]); + OptionSet optionSet = optionParser.parse(args); + String user = (String)optionSet.valueOf(username); + String pass = (String)optionSet.valueOf(password); + boolean useLaunchwrapper = (((Integer)optionSet.valueOf(launchwrapper)).intValue() == 0 ? false : true); + + if (user != null && pass != null) + { + Session session = null; + + try + { + session = Start.GetSSID(user, pass); + + if (session == null) + { + throw new Exception("Bad login!"); + } + } + catch (Exception ex) + { + ex.printStackTrace(); + Main.main(args); + } + + ArrayList newArgs = new ArrayList(); + + for (int i = 0; i < args.length; i++) + { + if (args[i].compareToIgnoreCase("--username") == 0 || + args[i].compareToIgnoreCase("--password") == 0 || + args[i].compareToIgnoreCase("--session") == 0 || + args[i].compareToIgnoreCase("--uuid") == 0 || + args[i].compareToIgnoreCase("--accessToken") == 0) + { + i++; + } + else + { + newArgs.add(args[i]); + } + } + + newArgs.add("--username"); + newArgs.add(session.getUsername()); + newArgs.add("--uuid"); + newArgs.add(session.getPlayerID()); + newArgs.add("--accessToken"); + newArgs.add(session.getToken()); + if (!useLaunchwrapper) { + Main.main(newArgs.toArray(new String[0])); + } + else { + Launch.main(newArgs.toArray(new String[0])); + } + } + else + { + if (!useLaunchwrapper) { + Main.main(args); + } + else { + Launch.main(args); + } + } + } + + private static void dumpArgs(String[] newArgs) + { + StringBuilder sb = new StringBuilder(); + + for (String s : newArgs) + { + sb.append(s).append(" "); + } + + System.out.println("[Minecrift] Calling Main.main with args: " + sb.toString()); + } + + public static T[] concat(T[] first, T[] second) + { + T[] result = Arrays.copyOf(first, first.length + second.length); + System.arraycopy(second, 0, result, first.length, second.length); + return result; + } + + public static final Session GetSSID(String username, String password) + { + byte[] b = null; + String jsonEncoded = + "{\"agent\":{\"name\":\"Minecraft\",\"version\":1},\"username\":\"" + + username + + "\",\"password\":\"" + + password + "\"}"; + String response = executePost("https://authserver.mojang.com/authenticate", jsonEncoded); + if (response == null || response.isEmpty()) + return null; + + // **** JSON parsing courtesy of ssewell **** + // Create a parsable JSON object from our response string + JSONObject jsonRepsonse = new JSONObject(response); + + // Obtain our current profile (which contains the user ID and name + JSONObject jsonSelectedProfile = jsonRepsonse.getJSONObject("selectedProfile"); + + // Session ID = "token::" + // Username will probably *not be an email address + String accessToken = jsonRepsonse.getString("accessToken"); + String id = jsonSelectedProfile.getString("id"); + String sessionID = "token:" + jsonRepsonse.getString("accessToken") + ":" + jsonSelectedProfile.getString("id"); + String userName = jsonSelectedProfile.getString("name"); + + Session session = new Session(userName, id, accessToken, "legacy"); + return session; + } + + public static String executePost(String targetURL, String urlParameters) + { + URL url; + HttpURLConnection connection = null; + try { + //Create connection + url = new URL(targetURL); + connection = (HttpURLConnection)url.openConnection(); + connection.setRequestMethod("POST"); + connection.setRequestProperty("Content-Type", + "application/json"); + + connection.setRequestProperty("Content-Length", "" + + Integer.toString(urlParameters.getBytes().length)); + connection.setRequestProperty("Content-Language", "en-US"); + + connection.setUseCaches (false); + connection.setDoInput(true); + connection.setDoOutput(true); + + //Send request + DataOutputStream wr = new DataOutputStream ( + connection.getOutputStream ()); + wr.writeBytes (urlParameters); + wr.flush (); + wr.close (); + + //Get Response + InputStream is = connection.getInputStream(); + BufferedReader rd = new BufferedReader(new InputStreamReader(is)); + String line; + StringBuffer response = new StringBuffer(); + while((line = rd.readLine()) != null) { + response.append(line); + response.append('\r'); + } + rd.close(); + return response.toString(); + + } catch (Exception e) { + + e.printStackTrace(); + return null; + + } finally { + + if(connection != null) { + connection.disconnect(); + } + } + } +} diff --git a/mcppatches/client.md5 b/mcppatches/client.md5 new file mode 100644 index 00000000..b6f0573a --- /dev/null +++ b/mcppatches/client.md5 @@ -0,0 +1,1871 @@ +Start ef633c83791c7b3e9ee1eb7be642b88e +net/minecraft/block/Block$1 85679fbfa6a2ad8fc4c5fb570ebbdd8d +net/minecraft/block/Block$2 0aaa928695ccf3bf0da0514cbcccdc9e +net/minecraft/block/Block$3 ec328cf56f0451c53d88842428cce6a0 +net/minecraft/block/Block$SoundType 94126643ad796de07da33d20b25c900c +net/minecraft/block/Block 24284ba91e8a0da5a23650387eec1c02 +net/minecraft/block/BlockAir 073ba380beabc7ed566c465d328bc5a0 +net/minecraft/block/BlockAnvil 0c1b31c2e5b255c472b0733dcd1cd520 +net/minecraft/block/BlockBasePressurePlate 936bdd69c8f702dbe29a2e8fa1d00570 +net/minecraft/block/BlockBeacon 2f108060c65af3af67b8442417e82e8a +net/minecraft/block/BlockBed 80b6836d1b4f4a017b8777c42a1a1b3e +net/minecraft/block/BlockBookshelf 899862b030ecc00506f9bf61533323e0 +net/minecraft/block/BlockBreakable d7f49c3e03dd93f1049f56364084ba51 +net/minecraft/block/BlockBrewingStand 77c09340ac05653310d484f083494c46 +net/minecraft/block/BlockBush 51b12f184100e977a60c00072aac7a0c +net/minecraft/block/BlockButton 085ca575e8fd9c0aac5f1fad77e0bc3e +net/minecraft/block/BlockButtonStone 883d5047f48354e7e7b3d34b81683e7b +net/minecraft/block/BlockButtonWood f1bb252199cef1d78742b438e105e041 +net/minecraft/block/BlockCactus 5e913bf1fda571bb9cfdee8ba10d00ca +net/minecraft/block/BlockCake b0f4cf05f07487c16abb7d0c0223b195 +net/minecraft/block/BlockCarpet 2a5a0552cd818c3ed1beb3dda07f6d34 +net/minecraft/block/BlockCarrot 1804c38739d77dbb53d864e27e3d04ff +net/minecraft/block/BlockCauldron 4b2d5d831de6253e6a5944d3c36b43ba +net/minecraft/block/BlockChest fe1ade3e2d99f8a294e7160f3cff7e90 +net/minecraft/block/BlockClay 5025de76ee4893ee6294e09c26185958 +net/minecraft/block/BlockCocoa 439c5c838b8d60eaf0d0686b8481b271 +net/minecraft/block/BlockColored 79f813accca78937536cb3eb58f6d9ca +net/minecraft/block/BlockCommandBlock 55fa2290a18c872fb5213316ec18d28d +net/minecraft/block/BlockCompressed 1d75adf7dff23018ee0f1eef7924307f +net/minecraft/block/BlockCompressedPowered d1965b31c85547a32a8f05422c3ae4b5 +net/minecraft/block/BlockContainer 5b15a7e97ce751776143e2ef9ab89ee9 +net/minecraft/block/BlockCrops 179b4ff8944b7def4dd1e7b5f8ce21ca +net/minecraft/block/BlockDaylightDetector b51c892951a6e8fa5b378ac777be1623 +net/minecraft/block/BlockDeadBush b55680221594dbd8558f48bf58110cb3 +net/minecraft/block/BlockDirectional 04df7bd1ef9bbd085ab86bcfc262f830 +net/minecraft/block/BlockDirt 979bc0ba300ce6ee462880f1f5a041ba +net/minecraft/block/BlockDispenser f3ebd07278f89247be0e0d794fef7982 +net/minecraft/block/BlockDoor 78b3413185e040ec483816db8209c0dd +net/minecraft/block/BlockDoublePlant dba1cd959522d142305e38aa64d459ba +net/minecraft/block/BlockDragonEgg d4e66a9aa59753070941a5fa38dfc2b1 +net/minecraft/block/BlockDropper 495f16c76a87938f1d7fbc481c9babe3 +net/minecraft/block/BlockDynamicLiquid 89cc2d0a3aa1d36be2310ce166a020c7 +net/minecraft/block/BlockEnchantmentTable 9790e68e00be9ec0dfd8f10dccbad808 +net/minecraft/block/BlockEnderChest a814a9f453721d660a4ce5835874c73b +net/minecraft/block/BlockEndPortal 146dbd502635f2fc493f20d07bd40f80 +net/minecraft/block/BlockEndPortalFrame 68cab8cdaed0dde3a186b76ada92fc25 +net/minecraft/block/BlockEventData d8366b10fd7c264990da724120d1ec52 +net/minecraft/block/BlockFalling 68ab15330ce46d895baf8ffc4ea9e553 +net/minecraft/block/BlockFarmland 6c47f67c8346d983a0076cc071ffcba6 +net/minecraft/block/BlockFence d1be8a51e252abe7996a4f3e9fb1d853 +net/minecraft/block/BlockFenceGate 43009412f6d979ebb41c099ceb90cb8d +net/minecraft/block/BlockFire d3aa145e34c562108ba9cd6c94c410d6 +net/minecraft/block/BlockFlower 35c253c8911ac756545c2a5a28be22b6 +net/minecraft/block/BlockFlowerPot e799b5980bff7c68ba6f3da2e0f6c3fa +net/minecraft/block/BlockFurnace b1fa9cc8c29e48ea8fae7cf4b4caa50d +net/minecraft/block/BlockGlass 1f7ede9058a92400f3a480d0a108f025 +net/minecraft/block/BlockGlowstone 6a9f732dadc9397aa9ee59ccc06f08b0 +net/minecraft/block/BlockGrass 13e3dcc11c0acb830231d58570770e28 +net/minecraft/block/BlockGravel 021565ee303959c8996db2c75f20ee2b +net/minecraft/block/BlockHardenedClay c60f0e679480bf9cf20c46f49b630ca4 +net/minecraft/block/BlockHay c8ae97f8c2bbd9fcd45bfc9ab5f5dd87 +net/minecraft/block/BlockHopper 74cc2df897e202d42dd6b55153645bc3 +net/minecraft/block/BlockHugeMushroom 0c7b2e76902dacbfcd60cc8c26725104 +net/minecraft/block/BlockIce 2b40a2b4d0c91af60701bf8a0625209f +net/minecraft/block/BlockJukebox$TileEntityJukebox 5be1752565330c9937f523ecdebe9a7b +net/minecraft/block/BlockJukebox 47c8d1d0737415a8879703f814e57a6c +net/minecraft/block/BlockLadder 6459d528a2841a3764cecff456cca9e8 +net/minecraft/block/BlockLeaves 8f266b415c155b76b18c951cacf9f821 +net/minecraft/block/BlockLeavesBase 36ceb8b51fa8915a43fbc90719de47c9 +net/minecraft/block/BlockLever d4ef63d4ca2f77ed6e30e895af8f4930 +net/minecraft/block/BlockLilyPad 90ddbf06febe21675bf0ea072908384b +net/minecraft/block/BlockLiquid 9f5bae7d91884f7f9cc6b79dfc6aa17f +net/minecraft/block/BlockLog e6cbfa111f5d8677809f5a8b6b22cbd0 +net/minecraft/block/BlockMelon c8509c8a76f17a309dcc1cf9cca9a351 +net/minecraft/block/BlockMobSpawner 5a28a2308b2be7264f5b3caf0beacce4 +net/minecraft/block/BlockMushroom c2825e5769c3cc5a20617fd7c46beefd +net/minecraft/block/BlockMycelium 5d7ac8c90b0ca2ddc5dd5f5d17afabf7 +net/minecraft/block/BlockNetherrack 12e70273770d0d616724e05926050b10 +net/minecraft/block/BlockNetherWart 8f486f91bc8dbaceb141fb90ac3960b9 +net/minecraft/block/BlockNewLeaf b421774118d9d9c0b869dc09dd015b22 +net/minecraft/block/BlockNewLog 63622535a0898b4a9185d5506d16464a +net/minecraft/block/BlockNote 293c91c1c715bd5e32aa1fc8493576ad +net/minecraft/block/BlockObsidian 89188a3864ec4f0abea408739c27fe35 +net/minecraft/block/BlockOldLeaf 7e2ebb07bafe28f0e9b35e3db77f86c5 +net/minecraft/block/BlockOldLog 5fc721520280946c68ddad5b81f4102f +net/minecraft/block/BlockOre 81ac75615fb087e9bc8ebced36e9c77a +net/minecraft/block/BlockPackedIce 7395570285f9eeb98712fcbdad399b19 +net/minecraft/block/BlockPane 65cc5b744afbd69d3ad0ec33012b4cda +net/minecraft/block/BlockPistonBase 8abd4bbf79a295c1079c1eceee30f2a2 +net/minecraft/block/BlockPistonExtension 6511ba223a7054d1962e7c20b1e68943 +net/minecraft/block/BlockPistonMoving 1607888243996aed42f6239d35dbab82 +net/minecraft/block/BlockPortal$Size 86ad386c4a5406e55634f2f3505de74b +net/minecraft/block/BlockPortal 7a44ee4096cd8d676d54ab8bee90e57d +net/minecraft/block/BlockPotato 043e66770f426e77367e0bd987e5762d +net/minecraft/block/BlockPressurePlate$Sensitivity 48b994374ae32276bf3a175c6a8f406a +net/minecraft/block/BlockPressurePlate 797e482449cd5a0ee798c60a1a67a834 +net/minecraft/block/BlockPressurePlateWeighted ffb5004db8d5d603b3d74d739948e47c +net/minecraft/block/BlockPumpkin e6ea32f557ec623543c5b03888af7349 +net/minecraft/block/BlockQuartz f5be2877bdc80de73ea4ef913a4b2d75 +net/minecraft/block/BlockRail 33e7839b228e476b8dd9690a9821c3fa +net/minecraft/block/BlockRailBase$Rail 89460961a89354dd38e4298cc5210375 +net/minecraft/block/BlockRailBase 76b48bddbd6afd4dcb7e49601b0195a1 +net/minecraft/block/BlockRailDetector 8e3c994f2b5c11b57638327ddbe71b9b +net/minecraft/block/BlockRailPowered b3f5761af8c5448a923049e0cd9cbda0 +net/minecraft/block/BlockRedstoneComparator 4d21d826dbc3d2ad6d9ce6d365e79e8c +net/minecraft/block/BlockRedstoneDiode b75ef919f2442df4188aa062206b46d3 +net/minecraft/block/BlockRedstoneLight b7b61817ee3ae7576a495f58ced5c854 +net/minecraft/block/BlockRedstoneOre d039621fbe1d5d14f7f1956cc79a158d +net/minecraft/block/BlockRedstoneRepeater b9135066e3990bfc008d4db86f2e3021 +net/minecraft/block/BlockRedstoneTorch$Toggle bf1dec455ad97da3760e5093e56ddc1e +net/minecraft/block/BlockRedstoneTorch 0ed9f794f3d8410c3078ca224fe2c00a +net/minecraft/block/BlockRedstoneWire bba1eceb9e2725714aeb75237f62f97e +net/minecraft/block/BlockReed 69a7fd2c15e6d53f8bcdd44356f2b5bf +net/minecraft/block/BlockRotatedPillar f0a9e7932d6b7ce0a2415408d2f078e8 +net/minecraft/block/BlockSand ba7af61c8d5123dcfa227f49e3ba77c3 +net/minecraft/block/BlockSandStone af329871b1d1760c3bd46f4c6b2ee510 +net/minecraft/block/BlockSapling a63cca99a8c1f409e4051fa9714f447b +net/minecraft/block/BlockSign f8999b2e9db1b17ea15befde322f0d32 +net/minecraft/block/BlockSilverfish 7466e570fc3068047f7d6925bc46b3b4 +net/minecraft/block/BlockSkull 111d6ecda2cfc240edb46203425e34ae +net/minecraft/block/BlockSlab 2d289962f6dacd8436b527b3b7095f19 +net/minecraft/block/BlockSnow 2c6dcf28c553b1ba14a9d0974802267d +net/minecraft/block/BlockSnowBlock 5d52b32755c92133c4c8dd462d40bfea +net/minecraft/block/BlockSoulSand 764953dcae0b958f6c12920d191889a0 +net/minecraft/block/BlockSourceImpl 89b3dd2545824ee68b63dabe32b1f0a2 +net/minecraft/block/BlockSponge 98395ae87a14318c841220bb8fa360cd +net/minecraft/block/BlockStainedGlass b337b3f31ade3ea42beea76a74817a1e +net/minecraft/block/BlockStainedGlassPane 35c8697a748d72447185fd30894a740f +net/minecraft/block/BlockStairs c3fd096a20d2fea1e6729305b2345a5e +net/minecraft/block/BlockStaticLiquid a88888bd6445c9d0caea7e0b963aa593 +net/minecraft/block/BlockStem 3ba2ff83d5739740eb11dcad979b7094 +net/minecraft/block/BlockStone edadf8ba1b2b1beeccfe395ed77f4621 +net/minecraft/block/BlockStoneBrick e1cefe4e9c1295153edc0f258d0f0999 +net/minecraft/block/BlockStoneSlab 491daab4d8b1fc34aa64d31cbe66b7ac +net/minecraft/block/BlockTallGrass 164e639edd5b6707b326b19b0545fd9b +net/minecraft/block/BlockTNT 8dd91ce21db5d5108863675e831e84c4 +net/minecraft/block/BlockTorch 944ac9abe42aed262f48985464f256d2 +net/minecraft/block/BlockTrapDoor 67c39d829be888e8da4461cd028204d6 +net/minecraft/block/BlockTripWire 7b626f2610e81975cebdf97efaee83f5 +net/minecraft/block/BlockTripWireHook 9cf5a8ba8b26c0f67b582d0cd549b391 +net/minecraft/block/BlockVine a4e0830fd6525e8756df60b99f74c83c +net/minecraft/block/BlockWall 929833d6dd371ac2929d5f9866af1f70 +net/minecraft/block/BlockWeb 9557117ce68999f6e0cf56ba269c11d0 +net/minecraft/block/BlockWood 7874669eb220c6b0e810953ad92e982a +net/minecraft/block/BlockWoodSlab 8ca1bede98a61b37badd0cd8274ab126 +net/minecraft/block/BlockWorkbench eef88db901d1c2db936162a504fcb8ef +net/minecraft/block/IGrowable 1f53dcb094a364320252ff396209f56b +net/minecraft/block/ITileEntityProvider f1ee6d326a3e6901e9b4da941d39e062 +net/minecraft/block/material/MapColor 025027330bc425fe309957db5979229e +net/minecraft/block/material/Material$1 ceb8281bb022e4135b174a4a86cf2561 +net/minecraft/block/material/Material e391f203264e33e20604f7b43732ef09 +net/minecraft/block/material/MaterialLiquid b991b0be5530571ae322f3e59cf24087 +net/minecraft/block/material/MaterialLogic 35700aa3b64ca718901b3824166ad079 +net/minecraft/block/material/MaterialPortal b900e5cd28a728b0dd8126dc7dc90c68 +net/minecraft/block/material/MaterialTransparent 2294747eef49c6fb6aede971359af3c2 +net/minecraft/client/AnvilConverterException 6aa597643958fd29c9c18fc2c4fab15d +net/minecraft/client/ClientBrandRetriever d3fc0252fcaf11f019465980f3fa3662 +net/minecraft/client/LoadingScreenRenderer 0fd6a1109e0a62cf19eab9c1ae327d5f +net/minecraft/client/Minecraft$1 f68d56d54efaa4f4ebe93583dd6377b1 +net/minecraft/client/Minecraft$10 34b8819ed86e667eabb92ab333fd53af +net/minecraft/client/Minecraft$11 60038072586002c729a437cbf89ea00d +net/minecraft/client/Minecraft$12 ba4bb80476e013b2caddc5c48596fac2 +net/minecraft/client/Minecraft$13 e7434011bb09aeab9db7cf970ecc9424 +net/minecraft/client/Minecraft$14 7a189a1ad057a913163c074a3a6db012 +net/minecraft/client/Minecraft$15 fd8226bb77adeefd241b9899ef716193 +net/minecraft/client/Minecraft$16 2f0730a6f7d98620a09e22688cc96b12 +net/minecraft/client/Minecraft$2 590dd7ff875f1dde0b5cdaae37bea0a5 +net/minecraft/client/Minecraft$3 3f13b89d421ff87b1687bf4cfe680ec4 +net/minecraft/client/Minecraft$4 1675bc0b9a4ad9e724cda92bf0e92c00 +net/minecraft/client/Minecraft$5 9fc87119c954e41afe073cce6e8d374c +net/minecraft/client/Minecraft$6 6ee891dcaa12070242550c556165cb03 +net/minecraft/client/Minecraft$7 fc62bb68be8d114d55d63c22287a1da4 +net/minecraft/client/Minecraft$8 513df0ccd1709200a09ddfb4c558b7d0 +net/minecraft/client/Minecraft$9 8a8b3a1e00e20b3f31c68e28fd9d30b6 +net/minecraft/client/Minecraft$SwitchMovingObjectType 769dc5bbf2fb48e099b1416e0ee532fe +net/minecraft/client/Minecraft 4ddc0b0618dc9f0b765bb0f2dbf7ca77 +net/minecraft/client/audio/ISound$AttenuationType df7bedf1c4b109e611e8d3731c3ceb8e +net/minecraft/client/audio/ISound cd291290c0cee675ec5043499c217698 +net/minecraft/client/audio/ISoundEventAccessor ef2592727432fedb423f935f3c832656 +net/minecraft/client/audio/ITickableSound 02197a9a667c0254440080b79f45aba2 +net/minecraft/client/audio/MovingSound 99e86022e4bb4b1d9b55eab3e26656f9 +net/minecraft/client/audio/MovingSoundMinecart 4c8bf61c81af98c3c06abbbfda2ece13 +net/minecraft/client/audio/MovingSoundMinecartRiding 7b3fefece8b1f02d715550f5097c1e2e +net/minecraft/client/audio/MusicTicker$MusicType bfd1c358e09bd78ca6f33cabee9cc05b +net/minecraft/client/audio/MusicTicker 9728a04d5ffdce5f250b72573c326a4a +net/minecraft/client/audio/PositionedSound 87eab2db68d53771200f04e47f0a3ce1 +net/minecraft/client/audio/PositionedSoundRecord 8afa5c32ac146bef045bb838a018406d +net/minecraft/client/audio/SoundCategory 63acb298fe6756ac7cd6c271e6d0334f +net/minecraft/client/audio/SoundEventAccessor 08f3ad8f86fee603f36a942791748a35 +net/minecraft/client/audio/SoundEventAccessorComposite 39fc3768b71c43865b949b22731335fd +net/minecraft/client/audio/SoundHandler$1 afb4a6344fe06663a959f52b1ccc3fc0 +net/minecraft/client/audio/SoundHandler$2 6f8568c50b82e19151d85c9ac791bb73 +net/minecraft/client/audio/SoundHandler$SwitchType 217ef69973d28b5085883df045ba4617 +net/minecraft/client/audio/SoundHandler 597c47e5d1d593ccdcd38d1f9c584240 +net/minecraft/client/audio/SoundList$SoundEntry$Type 5fc361dd3c4a0598b7a23d321f84e2cb +net/minecraft/client/audio/SoundList$SoundEntry 4cfacc9c66f585f38d98cae86f563e57 +net/minecraft/client/audio/SoundList e6af5d245d5b9ad38b01468b9d06593b +net/minecraft/client/audio/SoundListSerializer cbb4aea9cb15c150794190df1bc8fa8f +net/minecraft/client/audio/SoundManager$1 ca84d4c7afb116984947c769400b34c1 +net/minecraft/client/audio/SoundManager$2$1 adad4461e58bc0e809252df6e99bb74e +net/minecraft/client/audio/SoundManager$2 fc208ae3befeaec2ef87ffe77929410b +net/minecraft/client/audio/SoundManager$SoundSystemStarterThread 63b5bf4dd781966b3b7052a43741a9d4 +net/minecraft/client/audio/SoundManager cb9ed4ebee3a7fbeb35396ca30ee89bd +net/minecraft/client/audio/SoundPoolEntry 755b7fdd5447afe29a9164eb4be18edd +net/minecraft/client/audio/SoundRegistry f62514dccdb0f74583a5779eb2e2cfe7 +net/minecraft/client/entity/AbstractClientPlayer$1 0e70c1db160faa61ff7182c49b66d984 +net/minecraft/client/entity/AbstractClientPlayer$SwitchType 215062b24d831be66ed8b0b91ca8ed9b +net/minecraft/client/entity/AbstractClientPlayer e519202a4141dded41e3b39bb693ea00 +net/minecraft/client/entity/EntityClientPlayerMP 4abf38e9b65ba5957445642016cc442e +net/minecraft/client/entity/EntityOtherPlayerMP c83b329ccfa21102e052b2eb976a31f2 +net/minecraft/client/entity/EntityPlayerSP 6275f5ec5abc0b5b69ce3077a929077e +net/minecraft/client/gui/ChatLine 9e83ff4232723271cd2736cc6db106e6 +net/minecraft/client/gui/FontRenderer aa503bdf48ff3af75fa393ffe96da199 +net/minecraft/client/gui/Gui 7545005a11bb67cbb4a86d8e27b77493 +net/minecraft/client/gui/GuiButton 87340e89368866459d6dbf10bd944cd7 +net/minecraft/client/gui/GuiButtonLanguage d7d2d793c5b1eebbd1a228f4fc5febab +net/minecraft/client/gui/GuiButtonRealmsProxy 22d07ed5ce9367af4f1d0005e2751c7c +net/minecraft/client/gui/GuiChat 59286151bf372fdc00c434d0a6139010 +net/minecraft/client/gui/GuiCommandBlock a5b17a9b7961e6165066065adc694e09 +net/minecraft/client/gui/GuiConfirmOpenLink 544aacb58cf58e140a7a62f9bebd63c9 +net/minecraft/client/gui/GuiControls 4cb11f830c3b1611d763b362c43efc09 +net/minecraft/client/gui/GuiCreateFlatWorld$Details e98add4cf87a80b8550e1ebc085f866d +net/minecraft/client/gui/GuiCreateFlatWorld 740a29169474773676d2fa13c3525387 +net/minecraft/client/gui/GuiCreateWorld f0256ffbd08035ba2f5482334dde8a8b +net/minecraft/client/gui/GuiDisconnected 86f424884146537079ff6d2316f5dc5d +net/minecraft/client/gui/GuiDownloadTerrain e91ff3b27206044afd2a8b843e583b92 +net/minecraft/client/gui/GuiEnchantment 0a8f8544cba7b8fc5139709d55049730 +net/minecraft/client/gui/GuiErrorScreen 7404f5a88e96a55cbb8ba4e6ff017963 +net/minecraft/client/gui/GuiFlatPresets$LayerItem b63aa80b094933a45112d472aaba6fef +net/minecraft/client/gui/GuiFlatPresets$ListSlot b941c1f160b696aa6e979d971017cd71 +net/minecraft/client/gui/GuiFlatPresets 632411029f94b5342636e6efc35c5442 +net/minecraft/client/gui/GuiGameOver 0f6c794b61b8c4b327ae94b44c6096e2 +net/minecraft/client/gui/GuiHopper ea7016c060bf0e47dff010af2c3661a0 +net/minecraft/client/gui/GuiIngame 3c929393a4261f0fcbf422e797a14b9e +net/minecraft/client/gui/GuiIngameMenu fe4e9efe3e93d7696ab9fef67460e368 +net/minecraft/client/gui/GuiKeyBindingList$CategoryEntry 1e66a1f1ad312b9d95c1781ddf428790 +net/minecraft/client/gui/GuiKeyBindingList$KeyEntry ef125d1a810bd021c58ab8228b2c94d2 +net/minecraft/client/gui/GuiKeyBindingList 8ce1d7f873e1b276337c5bf119c6798c +net/minecraft/client/gui/GuiLabel 44f82a1140b3522ed1e67b357698032d +net/minecraft/client/gui/GuiLanguage$List 8bb4257b1a044540193683e99a4d0023 +net/minecraft/client/gui/GuiLanguage da5ea4f09ef4bd8514d56991b9b08cc9 +net/minecraft/client/gui/GuiListExtended$IGuiListEntry 9b3c505635f325c09a50fa94242e1934 +net/minecraft/client/gui/GuiListExtended 906ab5f29b4664c97e8e4becdcfc84e5 +net/minecraft/client/gui/GuiMainMenu a5459d14b3da99ea9dd1fe1dae33d34f +net/minecraft/client/gui/GuiMemoryErrorScreen c702d6bf72100b741d49f4d2ea969c78 +net/minecraft/client/gui/GuiMerchant$MerchantButton 3d0d9ebf6a6a27e35ef5e091c6445f57 +net/minecraft/client/gui/GuiMerchant de73c6b64c8bfd874c56e69381225101 +net/minecraft/client/gui/GuiMultiplayer 3e8b623a58822be4cb8ad1978002b05f +net/minecraft/client/gui/GuiNewChat ece9f1955fb748a1c9923fd548f3e04c +net/minecraft/client/gui/GuiOptionButton 4a78fe64d4be1ece76fe96f1cb9c31e9 +net/minecraft/client/gui/GuiOptions$1 aeb3594b4a6057336b0baba2d0ea3652 +net/minecraft/client/gui/GuiOptions c23ec516e77cd059125dab2f7f6a715f +net/minecraft/client/gui/GuiOptionSlider bc78dab0274e0b7687a206c0864a00fb +net/minecraft/client/gui/GuiOptionsRowList$Row 9384307d59fbb20ce2fec1612bf63ef6 +net/minecraft/client/gui/GuiOptionsRowList de11cf2e6e6d1054b0d99ba9e884f162 +net/minecraft/client/gui/GuiPlayerInfo ff030485438b9d9bc08cdecba2f037b1 +net/minecraft/client/gui/GuiRenameWorld 9a7e4b83eecc291fc0debdddcb56a2fe +net/minecraft/client/gui/GuiRepair b20cc48863a4afc5dc74c5ffa86a8fed +net/minecraft/client/gui/GuiResourcePackAvailable b83ad97c1cef2336f4a2a51d40f9d5a8 +net/minecraft/client/gui/GuiResourcePackList 9d988d2ffe5b8f3351877e7236ba75e3 +net/minecraft/client/gui/GuiResourcePackSelected 91237f1273d13a200e6548ec62b858df +net/minecraft/client/gui/GuiScreen b37ab4138a36561f6887fb8f5c40e977 +net/minecraft/client/gui/GuiScreenAddServer 37e21cd881edc574579944f4186092f8 +net/minecraft/client/gui/GuiScreenBook$NextPageButton 4169ea8ce4541d9785e86927ad70b45d +net/minecraft/client/gui/GuiScreenBook ad95bca069394848232d7a835177d608 +net/minecraft/client/gui/GuiScreenDemo 5a63fc6822a3c471d18fd089346dd7aa +net/minecraft/client/gui/GuiScreenOptionsSounds$Button 49d299fd8048b1fbdd5205b11c713700 +net/minecraft/client/gui/GuiScreenOptionsSounds a7bee576be18204e5047cfb0f958c4dd +net/minecraft/client/gui/GuiScreenRealmsProxy a660f0467a9c861c046fde51b560521d +net/minecraft/client/gui/GuiScreenResourcePacks f9fd3e432365faa502b056ac8616909c +net/minecraft/client/gui/GuiScreenServerList 1a2598916606c37456a1d80b360175b8 +net/minecraft/client/gui/GuiScreenWorking 26a0b3d0492ee4186a3f94b322c10c4e +net/minecraft/client/gui/GuiSelectWorld$List df78f3d299759088522622760e4aa421 +net/minecraft/client/gui/GuiSelectWorld 685a32bcfb41b9f23aa393e29c4cabf9 +net/minecraft/client/gui/GuiShareToLan 9a075d10280706c078d30f315cfed3cf +net/minecraft/client/gui/GuiSleepMP cb73fe2ac75bb441b4da32e5139f5258 +net/minecraft/client/gui/GuiSlot f277021819e72354a8ff879950678124 +net/minecraft/client/gui/GuiSlotRealmsProxy 59907e6e1eb3e1eb2c2307449c0cb44c +net/minecraft/client/gui/GuiSnooper$List 25ec3988d391d2e658ffbddb0a34b2b7 +net/minecraft/client/gui/GuiSnooper 5a2eb10fe2b87da8a01d9476bbd23b5b +net/minecraft/client/gui/GuiStreamIndicator a362c948b526f28f7296d5edc69db59d +net/minecraft/client/gui/GuiTextField 37ff44f0d9d2c951bd64127eed782781 +net/minecraft/client/gui/GuiVideoSettings 3e6b3652040182f6d4f15b38aa89e322 +net/minecraft/client/gui/GuiWinGame 501a364cc9898d0678937e3c814da278 +net/minecraft/client/gui/GuiYesNo d1a3cbe08af3b4810dc447cc60fc8366 +net/minecraft/client/gui/GuiYesNoCallback 605f903c41d3d488e81fc049bc0a8c69 +net/minecraft/client/gui/IProgressMeter 04548e3e91d3dab46b672669c9c04184 +net/minecraft/client/gui/MapItemRenderer$Instance d256c4a042dc6f5b9b6fb034c0f1cb96 +net/minecraft/client/gui/MapItemRenderer fbc885fcb0ebb2a5961e6bbc16aecc7e +net/minecraft/client/gui/ScaledResolution 15ef989ae19db88d8d9482c501440d2b +net/minecraft/client/gui/ScreenChatOptions 05db78c819f9ab1f906bcaab4295cc20 +net/minecraft/client/gui/ServerListEntryLanDetected bda4e29f4fb46a07ac3d25a914dc7f8f +net/minecraft/client/gui/ServerListEntryLanScan a0d0d609bbaa58df1d9b7bbc28777921 +net/minecraft/client/gui/ServerListEntryNormal$1 d1ac78981d29659c11ba99cac11efe25 +net/minecraft/client/gui/ServerListEntryNormal a4c7e3e013b3e65e5ec46c39d253b18b +net/minecraft/client/gui/ServerSelectionList 50f5f8e44c238f8e83034455ad4182c7 +net/minecraft/client/gui/achievement/GuiAchievement 0aa43a40e7913a75e2988d40d5621f0c +net/minecraft/client/gui/achievement/GuiAchievements 65ab285e89b05aa7d52d498fe7744413 +net/minecraft/client/gui/achievement/GuiStats$Stats 548e36e1dd50abe36d643c7edbdf9507 +net/minecraft/client/gui/achievement/GuiStats$StatsBlock$1 67e31b7172a10cfc969d9da34f5c73d5 +net/minecraft/client/gui/achievement/GuiStats$StatsBlock 3cdef9166e3a17ad61ce7fa74e38b4c8 +net/minecraft/client/gui/achievement/GuiStats$StatsGeneral e5d9e5bbaf176719f194488f5bc832fb +net/minecraft/client/gui/achievement/GuiStats$StatsItem$1 0896131ca08504cd6773c6c715fdbd70 +net/minecraft/client/gui/achievement/GuiStats$StatsItem 7af6118ce4c7d107cec648b924e8b354 +net/minecraft/client/gui/achievement/GuiStats$StatsMobsList 7802e9e06f105401003f04a13ae9e328 +net/minecraft/client/gui/achievement/GuiStats 0af0fd1f7c718c423271d250b8f9b30c +net/minecraft/client/gui/inventory/CreativeCrafting 5197e92e06c579ffe03093ab7266cc37 +net/minecraft/client/gui/inventory/GuiBeacon$Button a8038ff57da40e96274cbe849c30b874 +net/minecraft/client/gui/inventory/GuiBeacon$CancelButton 269ec6451140a23aefcd7d532ab0c04a +net/minecraft/client/gui/inventory/GuiBeacon$ConfirmButton 6d60ce687dd7e4fb6a3c1a6e457a41ec +net/minecraft/client/gui/inventory/GuiBeacon$PowerButton 23fc4fdc08c1f79ce289654bb421db51 +net/minecraft/client/gui/inventory/GuiBeacon 7d47587a3a19cf32174f359325e20810 +net/minecraft/client/gui/inventory/GuiBrewingStand 66054a1e6847f4cc221a7835a542d7ab +net/minecraft/client/gui/inventory/GuiChest 74c73f7c0884e17034bd2010b5fb9099 +net/minecraft/client/gui/inventory/GuiContainer 6068fd9cff42ad9c8274cd9db55847e8 +net/minecraft/client/gui/inventory/GuiContainerCreative$ContainerCreative 067e8ca4f3b2302dfd4929a947846556 +net/minecraft/client/gui/inventory/GuiContainerCreative$CreativeSlot e0f1575d2d5a68a13763c62f1f505ed2 +net/minecraft/client/gui/inventory/GuiContainerCreative 7ee7fbb37d3e89102406080093051c3c +net/minecraft/client/gui/inventory/GuiCrafting fda3f84054054f001d5a4c2be243ae10 +net/minecraft/client/gui/inventory/GuiDispenser 230273fbc417676119df88385335d390 +net/minecraft/client/gui/inventory/GuiEditSign 6f0483a58056a0da4b871c4fa88fd7dd +net/minecraft/client/gui/inventory/GuiFurnace e41d687c97bba586a1b2c8baeebf2187 +net/minecraft/client/gui/inventory/GuiInventory c565886de0c5814ce37b9d4e3832f4ff +net/minecraft/client/gui/inventory/GuiScreenHorseInventory d301dcbf58e14785b89aaff41ff95b7c +net/minecraft/client/gui/stream/GuiIngestServers$ServerList e841cccdcc155a2fefe9cf22e48a71e1 +net/minecraft/client/gui/stream/GuiIngestServers 9faea780b6525b29009faab6641a33c8 +net/minecraft/client/gui/stream/GuiStreamOptions d9794800dac1c36691840931176e95b5 +net/minecraft/client/gui/stream/GuiStreamUnavailable$Reason 053bb4a99d897adfaa2b3d278af8a3b1 +net/minecraft/client/gui/stream/GuiStreamUnavailable$SwitchReason 22245f7592922bd469aeb3c563faf2b1 +net/minecraft/client/gui/stream/GuiStreamUnavailable 89b9a7b9aaa7c6e14740527cd373a6cf +net/minecraft/client/gui/stream/GuiTwitchUserMode 9cf79f1106fc2e965a1d2edf94d84915 +net/minecraft/client/main/Main$1$1 882408f16128fc9c1a99ec2bdf29d2d8 +net/minecraft/client/main/Main$1 ee39dc31939367ee1e00984de921a90f +net/minecraft/client/main/Main$2 861c2770ad6060a099a43880bf0cc770 +net/minecraft/client/main/Main$3 15d9d93de7ab773a21ab4a2c94999041 +net/minecraft/client/main/Main 13e5dea74910149b79a27cd591cd99cc +net/minecraft/client/model/ModelBase bf482a86d2a3af5866a9b1c0ec00e2fb +net/minecraft/client/model/ModelBat 1f46c7ab5e4887d30eeb5de5f59507a5 +net/minecraft/client/model/ModelBiped c790b63bcd24c45f63ea78ffed0b64ef +net/minecraft/client/model/ModelBlaze 6b06852adc1cb1d32b873710ebd0b52c +net/minecraft/client/model/ModelBoat 242d1c2e0ba513873ce1a00eb37ffcd6 +net/minecraft/client/model/ModelBook affbaad1c0a0d18c1e051c9838155f7a +net/minecraft/client/model/ModelBox b468f34a93911d127c682db22218f1af +net/minecraft/client/model/ModelChest 9674fd01d273c08635db209d0d6e2a1a +net/minecraft/client/model/ModelChicken df5792b3ce01f44742aaed6d8e4752e4 +net/minecraft/client/model/ModelCow f2b9d63846a17b1a12de5c002a647af2 +net/minecraft/client/model/ModelCreeper a7354b145df8d270db0ccceafc6e264b +net/minecraft/client/model/ModelDragon efe862b64969568308f6f8fd6c36de99 +net/minecraft/client/model/ModelEnderCrystal 454aecc4fa0a3350541f2ed1d4a923c0 +net/minecraft/client/model/ModelEnderman 185c19977c489cdbf76cf0c9fe8eb3eb +net/minecraft/client/model/ModelGhast 6f3defb9680452edd040c04e338989ab +net/minecraft/client/model/ModelHorse e2ffd4a226b4f4397025715f997d9db9 +net/minecraft/client/model/ModelIronGolem 0f8f1eef3295c727366d3292bbeb2107 +net/minecraft/client/model/ModelLargeChest db80019148a88a3eb30ecf94a68004cd +net/minecraft/client/model/ModelLeashKnot ed027fd1af4389fabd4a2ea68f3c5474 +net/minecraft/client/model/ModelMagmaCube fe551b4871729116d3581c7c577b63c3 +net/minecraft/client/model/ModelMinecart f1ceec6a80d6d19883b899238f4aa417 +net/minecraft/client/model/ModelOcelot 8a06d58fb87b8c2b00145fa346d7ef60 +net/minecraft/client/model/ModelPig 396c17b5d317e8d354f3240eb834c435 +net/minecraft/client/model/ModelQuadruped 8b44fec08b9f0628aa8c9a8c00e0ddb3 +net/minecraft/client/model/ModelRenderer a113b918ab8b42b918eba381bfecb3cf +net/minecraft/client/model/ModelSheep1 19cb1c9da0f210196ca3c01e3e3ee6b3 +net/minecraft/client/model/ModelSheep2 7cb126ec38b6efc477ac565f68b158e2 +net/minecraft/client/model/ModelSign fd191150cd57e03de18064de097789db +net/minecraft/client/model/ModelSilverfish 588ae628efe20708687e0a791437b618 +net/minecraft/client/model/ModelSkeleton a99c136b40c3fe1fbd105caa46918d8d +net/minecraft/client/model/ModelSkeletonHead 38243ade96c099a5344a52d42906a48b +net/minecraft/client/model/ModelSlime 2bd1d3abbeeb44e6f88c3c01fd5e8e47 +net/minecraft/client/model/ModelSnowMan c0fac760d0ca93c0dddd0d6edb99dbf8 +net/minecraft/client/model/ModelSpider bef19e1e955313969882d72149d8a3fd +net/minecraft/client/model/ModelSquid 8786e22325c27224c21a88c22aef170d +net/minecraft/client/model/ModelVillager 846782bc645d447ff85c5c2d1e7b89c7 +net/minecraft/client/model/ModelWitch ed101f871027cbcd2b9de068cda7de7c +net/minecraft/client/model/ModelWither 817506d6e08a01612024eb24d3b0a6d3 +net/minecraft/client/model/ModelWolf 004cd2aa94f307a45d381f218def5396 +net/minecraft/client/model/ModelZombie 7c3af46711bcff67ab326d42a794a20d +net/minecraft/client/model/ModelZombieVillager 11ebcbabbbbf079bc3b92bb0093b0e96 +net/minecraft/client/model/PositionTextureVertex 2fb57cc82aecf0acb8bcd1ebd50114b7 +net/minecraft/client/model/TexturedQuad 4a1c2010bf4e0654ae67451904b9b520 +net/minecraft/client/model/TextureOffset f805d1c0624f46ba5a72b6eb3aa0920d +net/minecraft/client/multiplayer/ChunkProviderClient ae8cd37a46aeeb6548059a15e69c6ac7 +net/minecraft/client/multiplayer/GuiConnecting$1 90ddf38b0ae106aed2f22e059edda873 +net/minecraft/client/multiplayer/GuiConnecting 574d31877d63ce6ec8df7afcd10032da +net/minecraft/client/multiplayer/PlayerControllerMP 415234913b979a38155e9429de232d8e +net/minecraft/client/multiplayer/ServerAddress 1f1413b7fdf1794a29a7fca81df60774 +net/minecraft/client/multiplayer/ServerData$ServerResourceMode c361785f49f9accca4f4a71bff2b87e9 +net/minecraft/client/multiplayer/ServerData 2dbb11a1801d2d75231c978145d281b9 +net/minecraft/client/multiplayer/ServerList b6347f11b0bf67472c5784ceb0f1da7b +net/minecraft/client/multiplayer/ThreadLanServerPing 03539a9a2ae4864c4e4b403267867e83 +net/minecraft/client/multiplayer/WorldClient$1 ac90da2342c59404111cf12dc59d0141 +net/minecraft/client/multiplayer/WorldClient$2 59aa7bd6569dcddcc367004de2d026c8 +net/minecraft/client/multiplayer/WorldClient$3 45947cd082ae7aada92c64eac61baadb +net/minecraft/client/multiplayer/WorldClient$4 46fe3da3a4f48744b4a54e0058cfba45 +net/minecraft/client/multiplayer/WorldClient 7a25aff8fde28207194ae91c95b40115 +net/minecraft/client/network/LanServerDetector$LanServer a0e9c3f61f71bc087db89a9594c99fcf +net/minecraft/client/network/LanServerDetector$LanServerList f46678cfa0338562dd2fe598ef866bfc +net/minecraft/client/network/LanServerDetector$ThreadLanServerFind 309de016cc8e4891a2111cea7029ce96 +net/minecraft/client/network/LanServerDetector adafe0c58464d103feb2511aaf4a9012 +net/minecraft/client/network/NetHandlerHandshakeMemory$SwitchEnumConnectionState a75702a9d62ae2080f2591c471b89568 +net/minecraft/client/network/NetHandlerHandshakeMemory d4bb2fa6e6a53c348f7ab4d7b594123a +net/minecraft/client/network/NetHandlerLoginClient$1 db0a59056988987f5e774a22eec5ffd2 +net/minecraft/client/network/NetHandlerLoginClient 06adaa75db9b1129c79425082f53c7d7 +net/minecraft/client/network/NetHandlerPlayClient$1 97d15bac15a371a2f2ccf6b6bf86b02b +net/minecraft/client/network/NetHandlerPlayClient 17970339a00f0b975492f4971e671880 +net/minecraft/client/network/OldServerPinger$1 fcf0da41ec53ac35b7abb949581614fa +net/minecraft/client/network/OldServerPinger$2$1 0ccec8d74f37fe06efc438fbc466e821 +net/minecraft/client/network/OldServerPinger$2 df870ebcd34d0252532bc723441e6176 +net/minecraft/client/network/OldServerPinger c7be76f4b498ceb16a45011957a94892 +net/minecraft/client/particle/EffectRenderer$1 cba3e44ecaaa0dc767443fae6f8808c4 +net/minecraft/client/particle/EffectRenderer$2 11dc1f019c38c4ca26630c34b08384b5 +net/minecraft/client/particle/EffectRenderer$3 b9968911e51d290fb1bc0badd9009253 +net/minecraft/client/particle/EffectRenderer$4 daa729e15d3a020409dab3780e2561d8 +net/minecraft/client/particle/EffectRenderer de85ff820c24196e13e1250979001537 +net/minecraft/client/particle/EntityAuraFX 42e9dd9f4c7ae4447ab81edd76a30230 +net/minecraft/client/particle/EntityBlockDustFX 079e118625cf729ba65c6810f64bca68 +net/minecraft/client/particle/EntityBreakingFX 5017ffc11bf888f46213f77cdd5174c6 +net/minecraft/client/particle/EntityBubbleFX cccb1a61eb2bc776ee849b2de0e64e87 +net/minecraft/client/particle/EntityCloudFX 62fda4f14c7e70ac4acb98847650f471 +net/minecraft/client/particle/EntityCrit2FX c0c02c49bfdada274fbd9c128aac8b02 +net/minecraft/client/particle/EntityCritFX d460c7251f9a7914ac6f7e60d26f600e +net/minecraft/client/particle/EntityDiggingFX ab608a791a26504d11c2c5743535bc04 +net/minecraft/client/particle/EntityDropParticleFX 8898c6d8850a7b14571054830df911de +net/minecraft/client/particle/EntityEnchantmentTableParticleFX b14ad3dbb3ab1293352d47738c76a2e4 +net/minecraft/client/particle/EntityExplodeFX c147b5d1a6ca9f82b4e29658dcdb7e21 +net/minecraft/client/particle/EntityFireworkOverlayFX 14db53f0180549eefa4c0b6f5e47041e +net/minecraft/client/particle/EntityFireworkSparkFX 6bd7a86261715449a2bce047759fec1f +net/minecraft/client/particle/EntityFireworkStarterFX 5b9ca0e23c27fadfdc36a03f46e26aa0 +net/minecraft/client/particle/EntityFishWakeFX 9edaa73f647de012cd2b0f6604ee66ee +net/minecraft/client/particle/EntityFlameFX a20343c7b580083cfb693444f94e4a91 +net/minecraft/client/particle/EntityFootStepFX 167e4fd99fc92aad22a80ecf60143453 +net/minecraft/client/particle/EntityFX 51a4ce1a9f4a547a1f7da7e6b975874d +net/minecraft/client/particle/EntityHeartFX 11cb79a81d79386763a1974d08d2a7b1 +net/minecraft/client/particle/EntityHugeExplodeFX 22e6f5fa920cbecf2b07c69ad80c461c +net/minecraft/client/particle/EntityLargeExplodeFX 432d9525060342075a3e0003ecd1f55a +net/minecraft/client/particle/EntityLavaFX 72cc73ceb3d4c675f0cad5386a389f37 +net/minecraft/client/particle/EntityNoteFX 426de7a93283add2d43d910b14049001 +net/minecraft/client/particle/EntityPickupFX e78c65ef5373d9d512cb3af1ec0f5cda +net/minecraft/client/particle/EntityPortalFX a639cf5feded867af934f3f83beee4da +net/minecraft/client/particle/EntityRainFX 4403d9fbff35f44a71d4fe681ff37e25 +net/minecraft/client/particle/EntityReddustFX ce5855481f0a69af9226656c4192c3e5 +net/minecraft/client/particle/EntitySmokeFX 5b38f1ae96ba1e3adaf5b6de0bc8ba10 +net/minecraft/client/particle/EntitySnowShovelFX ac5ed387b6b8625a1de7fbff10ddac6e +net/minecraft/client/particle/EntitySpellParticleFX 49d91f2d926b132ebd7c2a932c04efc3 +net/minecraft/client/particle/EntitySplashFX fa4796e60c8061074a5ed937e78fd7d9 +net/minecraft/client/particle/EntitySuspendFX 707daff9b9e8899860d125cf7a56da76 +net/minecraft/client/renderer/ActiveRenderInfo a87375ae2f0791e3188b1883cc9fce78 +net/minecraft/client/renderer/DestroyBlockProgress 9fefc9aa25bc1cb876a12a18e69ec87e +net/minecraft/client/renderer/EntityRenderer$1 bbdaad0f1bdd75fe6d4e538cc3e29c83 +net/minecraft/client/renderer/EntityRenderer$2 cd008a390272e5c71dc45a9d12d68849 +net/minecraft/client/renderer/EntityRenderer$3 857dd5ea62f6c747e09c02cc7361c5ee +net/minecraft/client/renderer/EntityRenderer 6e460985ba8e5926faa58a87affabb79 +net/minecraft/client/renderer/EntitySorter 1941df552f1d7cbcf9169c77ce19a5af +net/minecraft/client/renderer/GLAllocation 060d215aa580224db3ef4b0c7bad82f4 +net/minecraft/client/renderer/IconFlipped 190b5c0474aa8a46e33acaf2ead8fc3c +net/minecraft/client/renderer/IImageBuffer 8735e57b34420c25c7702b5a8544679d +net/minecraft/client/renderer/ImageBufferDownload 74676f4fd283f7b03bedee6305c03d0f +net/minecraft/client/renderer/InventoryEffectRenderer 789641a384e010b5b5419efcc0245cfd +net/minecraft/client/renderer/ItemRenderer 5ca7e1530d00871bef2ebbd476fd60e4 +net/minecraft/client/renderer/OpenGlCapsChecker c9a56ace14172bc870e36849f200951a +net/minecraft/client/renderer/OpenGlHelper e5a109866e5bffde9d8488b5e6e13a49 +net/minecraft/client/renderer/RenderBlocks 5bc1988fb4877831cc572bcf005c1840 +net/minecraft/client/renderer/RenderGlobal$1 8f465649607f5501498c0e31447caa65 +net/minecraft/client/renderer/RenderGlobal 34faa73cbf25a9b1f4aa20bc08ecc589 +net/minecraft/client/renderer/RenderHelper 73525f407a502dba137ebbbda0e73b02 +net/minecraft/client/renderer/RenderList 047b78ae528a2b5e7c7d960e84dd4abb +net/minecraft/client/renderer/RenderSorter 6c5f050af54b2629558c13a9d72795f0 +net/minecraft/client/renderer/StitcherException 88291b0638aed2097be6480cec4fc3f9 +net/minecraft/client/renderer/Tessellator 43a28bcb2846a573c6dda0a6341c99ca +net/minecraft/client/renderer/ThreadDownloadImageData$1 be0dd0fe3bf0f39ec0fa37c880d0dfdc +net/minecraft/client/renderer/ThreadDownloadImageData f1faf552cf9c9b0dedc36106243b388c +net/minecraft/client/renderer/WorldRenderer 3e2104a519f0c8b8cd516d95968374b5 +net/minecraft/client/renderer/culling/ClippingHelper 01f7b96f2d623e528bcba7dc8cebff1f +net/minecraft/client/renderer/culling/ClippingHelperImpl 2dd86db8bb0c1d42202458e663639fd0 +net/minecraft/client/renderer/culling/Frustrum 397e8584f564a8b63e2293ab16899d46 +net/minecraft/client/renderer/culling/ICamera f5e9d35df9879f3eae1a2bc8464d4794 +net/minecraft/client/renderer/entity/Render 62c845cda7f5cffe0ecd74e75d564365 +net/minecraft/client/renderer/entity/RenderArrow e89dc6d02648cb118eff5586c8d7431b +net/minecraft/client/renderer/entity/RenderBat ffbc5dc61bfc1af3449214bc9489130e +net/minecraft/client/renderer/entity/RenderBiped dd8a502f0eea63e650c932f3e30f16da +net/minecraft/client/renderer/entity/RenderBlaze d83b8888b17b814a2b8e88d0906ae1c7 +net/minecraft/client/renderer/entity/RenderBoat 66856fae6efce2e50a7ac5498580d557 +net/minecraft/client/renderer/entity/RenderCaveSpider 160f62fe988cd3b3274f39df882733d0 +net/minecraft/client/renderer/entity/RenderChicken ed1cf306efc0661fddf29e8b2101061c +net/minecraft/client/renderer/entity/RenderCow 574f0348d6e69d52454d9266b1fa3818 +net/minecraft/client/renderer/entity/RenderCreeper a45eb82e307c0dedb0324af5466e1bc8 +net/minecraft/client/renderer/entity/RenderDragon 65b57c0b2cefbe108e8401a2b48d7a5f +net/minecraft/client/renderer/entity/RenderEnchantmentTable 546f93fd567bae2e764d0274924cb3f4 +net/minecraft/client/renderer/entity/RenderEnderman a828214fd2dad5186f599fc46957ed59 +net/minecraft/client/renderer/entity/RenderEntity c2b0ad16335f8995f41668e8fd21758f +net/minecraft/client/renderer/entity/RendererLivingEntity 606ccce658044eb65b30e0743120a4ef +net/minecraft/client/renderer/entity/RenderFallingBlock 2e2425f9da9721e8eb68416d9e3b3f94 +net/minecraft/client/renderer/entity/RenderFireball bb4cfa663c6059e090ffc73ea8c0f50d +net/minecraft/client/renderer/entity/RenderFish deb765aa72babf5703d215120d3567da +net/minecraft/client/renderer/entity/RenderGhast 17427a12388fe0119d3f2fe0f6dba2e9 +net/minecraft/client/renderer/entity/RenderGiantZombie 366c12e89a7009544946eb905c3ebf4b +net/minecraft/client/renderer/entity/RenderHorse cf882cb1d5bcadcfd2392ae437fa1ac9 +net/minecraft/client/renderer/entity/RenderIronGolem ae251a28f31c95311b5fad998885d9d3 +net/minecraft/client/renderer/entity/RenderItem$1 8ca65289bf81ddc27445aaf94afa2e49 +net/minecraft/client/renderer/entity/RenderItem$2 59bb65c24720f3d0261a69f063d9720b +net/minecraft/client/renderer/entity/RenderItem$3 89022294e1c30551a644085df11b35f7 +net/minecraft/client/renderer/entity/RenderItem$4 79d7b791fb4a452e589704c2b57aba44 +net/minecraft/client/renderer/entity/RenderItem 7a9000ef47fea998e624811b7c9d1060 +net/minecraft/client/renderer/entity/RenderLeashKnot 2356cf61334316f118669a597af0451d +net/minecraft/client/renderer/entity/RenderLightningBolt 3b097f20e334685dfb42ff50108a30df +net/minecraft/client/renderer/entity/RenderLiving 3e0d9ae26d2f71a83ae99c273c5962ed +net/minecraft/client/renderer/entity/RenderMagmaCube 5b1eb867da2066ab68096da57a1aaecd +net/minecraft/client/renderer/entity/RenderManager bb9beb5b417ede69049e170a3609ca87 +net/minecraft/client/renderer/entity/RenderMinecart b02940e38b9667d89f5fb22c748fd8ae +net/minecraft/client/renderer/entity/RenderMinecartMobSpawner afad5e5ec5dee514a5240020dc798cfe +net/minecraft/client/renderer/entity/RenderMooshroom a18aaebba4ba48cfb6a7f55b736580a1 +net/minecraft/client/renderer/entity/RenderOcelot 1aa2635e6d2203a50d0e598d9050d7d0 +net/minecraft/client/renderer/entity/RenderPainting 55ee054820e6d127fcf86a2ee0cc00a0 +net/minecraft/client/renderer/entity/RenderPig db7f4570b4d9124e6dadcb8448d3cfd1 +net/minecraft/client/renderer/entity/RenderPlayer e353d53ff71d89ee7dcff3458dc0e196 +net/minecraft/client/renderer/entity/RenderSheep 352f5861a773852a555405a69d564db8 +net/minecraft/client/renderer/entity/RenderSilverfish 7c1bd20e1f068ee76a3ca6f78a272ee4 +net/minecraft/client/renderer/entity/RenderSkeleton 25f97916ddc01895185127117c99d75b +net/minecraft/client/renderer/entity/RenderSlime 3923f08d19aed4b8418c7039a15da8be +net/minecraft/client/renderer/entity/RenderSnowball 1c46d82246e040acfdb94e8b50b963fd +net/minecraft/client/renderer/entity/RenderSnowMan c1399acbb16d02ba5853b905ebe22cfb +net/minecraft/client/renderer/entity/RenderSpider 27c0571d247779058661b501fc75d4cd +net/minecraft/client/renderer/entity/RenderSquid 0870d80aa3e1b0dd01fed069703137ba +net/minecraft/client/renderer/entity/RenderTntMinecart 6e53236cca1636acf66c31f0afedc526 +net/minecraft/client/renderer/entity/RenderTNTPrimed 7bc3110a1894aa2f1e04ea5a56409475 +net/minecraft/client/renderer/entity/RenderVillager da337250f4c815397fe719abd62bccf0 +net/minecraft/client/renderer/entity/RenderWitch 16912e916e53e9c3acd83d3567f33968 +net/minecraft/client/renderer/entity/RenderWither c3aff66abffeb42398109a097cc7d02c +net/minecraft/client/renderer/entity/RenderWolf 0bf3dbec7dbf68bfdfaf81b2cb06c175 +net/minecraft/client/renderer/entity/RenderXPOrb 215d419ba049e4873f031eb3b971946a +net/minecraft/client/renderer/entity/RenderZombie 83819c154bde8423445888739eec05c6 +net/minecraft/client/renderer/texture/AbstractTexture 10e8ed39ab7ba8874555939545b29a1f +net/minecraft/client/renderer/texture/DynamicTexture e31b0ad3bd0f7557f251a2d849c339f1 +net/minecraft/client/renderer/texture/IIconRegister 5c4adf3af8a20ecb7a186c9a12a77fcf +net/minecraft/client/renderer/texture/ITextureObject 20fda4016f9926b65633a03fed6a070a +net/minecraft/client/renderer/texture/ITickable 6fbfc842bba6d5cd291dac677b39dbae +net/minecraft/client/renderer/texture/ITickableTextureObject 70ce1d07f83ac2267e5e0b55c50b5d4d +net/minecraft/client/renderer/texture/LayeredTexture e50590fd887461e9a44a5258a2bd96d5 +net/minecraft/client/renderer/texture/SimpleTexture 0f37b3a591cad7a39ab67974a9f3b607 +net/minecraft/client/renderer/texture/Stitcher$Holder f630d7f9b32c09e0d1376d32b2b29d17 +net/minecraft/client/renderer/texture/Stitcher$Slot a2bfd2c50b5ac6b6c8bb331a135ee5d2 +net/minecraft/client/renderer/texture/Stitcher 9bcf1aebee4b3aa105239c10beabd6c6 +net/minecraft/client/renderer/texture/TextureAtlasSprite$1 a5181bdf545a8ae0642a74e89fcf7d90 +net/minecraft/client/renderer/texture/TextureAtlasSprite e455a51ee8ce1d19fe605e240ad2cc13 +net/minecraft/client/renderer/texture/TextureClock b7af867ec765bb01e2e7729f6767b0b4 +net/minecraft/client/renderer/texture/TextureCompass 5d78c3a5282e6f969a9f02abdccbb5fc +net/minecraft/client/renderer/texture/TextureManager$1 a3bd468ff448d8655648de6d98b59b13 +net/minecraft/client/renderer/texture/TextureManager 1f7e91564ec4e5d56d71f189af192432 +net/minecraft/client/renderer/texture/TextureMap$1 a0cb78c59a973f3baa970dd4aa060d92 +net/minecraft/client/renderer/texture/TextureMap$2 621b7c1c9b8a4a592d0d1b37a6babc1e +net/minecraft/client/renderer/texture/TextureMap$3 42b15fb2af759cfbd0a21aef1988d054 +net/minecraft/client/renderer/texture/TextureMap 1bfafdc182811ca45dfeec57a51e66a9 +net/minecraft/client/renderer/texture/TextureUtil 5ff34f2ffe807864977ddc8da0b28ad0 +net/minecraft/client/renderer/tileentity/RenderEnderCrystal 032bb249688e60491fddcae07d05c1bf +net/minecraft/client/renderer/tileentity/RenderEndPortal 266760c1becfcabc83488402fae4d2c9 +net/minecraft/client/renderer/tileentity/RenderItemFrame 26ecff1628be427b391b70d556f5b452 +net/minecraft/client/renderer/tileentity/RenderWitherSkull 56f128503d8185f071cd6cffbcd87dd3 +net/minecraft/client/renderer/tileentity/TileEntityBeaconRenderer 3462a17a44478147531386a64eb9c0fd +net/minecraft/client/renderer/tileentity/TileEntityChestRenderer 68c5a5204a632de4db1031308e458c25 +net/minecraft/client/renderer/tileentity/TileEntityEnderChestRenderer 75d89b4e2afab8b2f704edebfcd50b8f +net/minecraft/client/renderer/tileentity/TileEntityMobSpawnerRenderer d14f01931bfe97ec57087740e48dbd8a +net/minecraft/client/renderer/tileentity/TileEntityRendererChestHelper 7cec9947ad7af1246115495f51904043 +net/minecraft/client/renderer/tileentity/TileEntityRendererDispatcher 8f58e9ecda6e04b78f0331fec27b525b +net/minecraft/client/renderer/tileentity/TileEntityRendererPiston f8ad33786ac69e8b2fe92e23a2233889 +net/minecraft/client/renderer/tileentity/TileEntitySignRenderer 959b3baad01343389caf17f774790cab +net/minecraft/client/renderer/tileentity/TileEntitySkullRenderer c6914ae4dbeeba507663c55e03baadcd +net/minecraft/client/renderer/tileentity/TileEntitySpecialRenderer 00c04e1023e2ae8611a702c57c35ec32 +net/minecraft/client/resources/AbstractResourcePack 3da4efac36dcb3d1330a5e21019a4dad +net/minecraft/client/resources/DefaultResourcePack 3e33d880e9a73611d79c0087095c8d1e +net/minecraft/client/resources/FallbackResourceManager 9339014d0870dc52430bd9d9e5d7bcdc +net/minecraft/client/resources/FileResourcePack 635d1cb8e0f074384ce5817fc4beb7e3 +net/minecraft/client/resources/FolderResourcePack 3eff3f31d3d30abf2bdba7479a5cef6f +net/minecraft/client/resources/FoliageColorReloadListener ca3c9cba7b8114403c55ea00360dfbe1 +net/minecraft/client/resources/GrassColorReloadListener ed1cdfbe4c6a593e8b7f42e8d74e1b9d +net/minecraft/client/resources/I18n da37d0427461eef0e09afe2f6735d692 +net/minecraft/client/resources/IReloadableResourceManager 699706373eb9713b2a5fefd0e475b9f8 +net/minecraft/client/resources/IResource 04a4e2def75ea60c9457407fda4efd8e +net/minecraft/client/resources/IResourceManager 143e853892bd093356c151c9e6f5f606 +net/minecraft/client/resources/IResourceManagerReloadListener 054fd9df650a988b86f1d3efdc4295b6 +net/minecraft/client/resources/IResourcePack ace29740c8f7a274cdcab1211478c9b2 +net/minecraft/client/resources/Language d003912c9fe830d90b59f28c8626b10d +net/minecraft/client/resources/LanguageManager f6bcde6a6a57fce45028d60f2ac2c1a5 +net/minecraft/client/resources/Locale c160705d1abb18bb1ecd8b6733655892 +net/minecraft/client/resources/ResourceIndex 8ca2d94765cc9dce4d1ffa3299b1e1d5 +net/minecraft/client/resources/ResourcePackFileNotFoundException 411232d9035e381a48eb5a79d226b9a7 +net/minecraft/client/resources/ResourcePackListEntry 1ab10fc99662bf365c5bb5103cf2f8cb +net/minecraft/client/resources/ResourcePackListEntryDefault 604888cac9effdbe890aff0bad4f0f1c +net/minecraft/client/resources/ResourcePackListEntryFound 76087c2f8cc97bccc8888b8ca1ed92d0 +net/minecraft/client/resources/ResourcePackRepository$1 63a60facc736c07a3b1569a62fb2faff +net/minecraft/client/resources/ResourcePackRepository$2 48f10c9d2cc95595ce9c29379abc5c11 +net/minecraft/client/resources/ResourcePackRepository$Entry fdf6023e1d4bbb02e5148e9227555e79 +net/minecraft/client/resources/ResourcePackRepository 2d1ae0f4b3416140ed9ad48369f3624d +net/minecraft/client/resources/SimpleReloadableResourceManager$1 4ba75591e23905a7160adba979ea99bd +net/minecraft/client/resources/SimpleReloadableResourceManager 1e46d581c7a8f60b2033e9aeee3326fc +net/minecraft/client/resources/SimpleResource 37a5e3b157e4ed1fe7050bbbf2069967 +net/minecraft/client/resources/SkinManager$1 a05e8de594183394fbc948c562ddd10f +net/minecraft/client/resources/SkinManager$2 f37764e6180d2ae9e17483a50f929f49 +net/minecraft/client/resources/SkinManager$3$1 f24bd57e0fdd8ab6914f60a013616852 +net/minecraft/client/resources/SkinManager$3 4902d169f6247f0d3c187d8c0e15b243 +net/minecraft/client/resources/SkinManager$SkinAvailableCallback 9325e7d9babc0e1b159bd0af57fd6fa0 +net/minecraft/client/resources/SkinManager 628aacc2e8614e2a91c88019e44925f3 +net/minecraft/client/resources/data/AnimationFrame 88c85608c874cdf9864621d0e9d55758 +net/minecraft/client/resources/data/AnimationMetadataSection 91eb499a10c0b68afe6118dc165f5c7e +net/minecraft/client/resources/data/AnimationMetadataSectionSerializer 91bf3e0a2ece148cf9ae842ef7c71c7b +net/minecraft/client/resources/data/BaseMetadataSectionSerializer ce57b25194c5370a396667a2574994d5 +net/minecraft/client/resources/data/FontMetadataSection 909c4d1c69356b33507c7cb70d4f1deb +net/minecraft/client/resources/data/FontMetadataSectionSerializer 91e70f86b308668028785ecd895f1b2a +net/minecraft/client/resources/data/IMetadataSection 8d5cdad05242a0ce8e0c64d528532f83 +net/minecraft/client/resources/data/IMetadataSectionSerializer ddeb10591503cbdf5d2a2b639f6c8a0f +net/minecraft/client/resources/data/IMetadataSerializer$Registration 419becc704997639bebddcd061888f25 +net/minecraft/client/resources/data/IMetadataSerializer de6abf22a22f510591cfeab687ddc37d +net/minecraft/client/resources/data/LanguageMetadataSection 165534b96ed379bf9f5347b15f6d859a +net/minecraft/client/resources/data/LanguageMetadataSectionSerializer 784716a06c4bb69d2ac897e0b3415605 +net/minecraft/client/resources/data/PackMetadataSection fba2213ff2abc6112dc32168b759b3fa +net/minecraft/client/resources/data/PackMetadataSectionSerializer 127654ce041a2a8466fc844ce24dc59f +net/minecraft/client/resources/data/TextureMetadataSection b0b0b30c12866896903e1ba134838462 +net/minecraft/client/resources/data/TextureMetadataSectionSerializer 27df76720166eb137f3988fa50fc11fa +net/minecraft/client/settings/GameSettings$1 5a3980ceefef53e16ed94875b0d4cd74 +net/minecraft/client/settings/GameSettings$Options$1 b93e3c4766553b2f86707932db890706 +net/minecraft/client/settings/GameSettings$Options ae52ea533f0074eee70a105d61f8b492 +net/minecraft/client/settings/GameSettings$SwitchOptions 105d98ccfbc59c817c1e6c5998653cc5 +net/minecraft/client/settings/GameSettings c419e7f8cbaccce7fb7edc0eb9156fd3 +net/minecraft/client/settings/KeyBinding ccf64726b1c2348c945ca7778be320b7 +net/minecraft/client/shader/Framebuffer 8c7bd808e0a9924055fcc10e4bcbf56a +net/minecraft/client/shader/Shader 3ba2390be4ce125415ad9f56715fbecd +net/minecraft/client/shader/ShaderDefault 0e17dd058ffa4a5299cf3516517fd9e0 +net/minecraft/client/shader/ShaderGroup 36b3d2e0336ded8dac1966bc836f06fc +net/minecraft/client/shader/ShaderLinkHelper 57674024c28f320f70402f4b4f9960a2 +net/minecraft/client/shader/ShaderLoader$ShaderType 8e48cb9e22f8850fc2dd868e9deef7e3 +net/minecraft/client/shader/ShaderLoader 7cf35a4b48c2dfa63a39a64fd7f70c3f +net/minecraft/client/shader/ShaderManager 95ff96d14e29b09539727eb2c855df2c +net/minecraft/client/shader/ShaderUniform af4096e9c39499a642323fc314eb410c +net/minecraft/client/shader/TesselatorVertexState dca7d5cfc42cae35eb823beccf82d236 +net/minecraft/client/stream/BroadcastController$BroadcastListener 89172c9194bba05861492812f3ae9409 +net/minecraft/client/stream/BroadcastController$BroadcastState d95fc6d0b6d88ed5077d95e6ede16e52 +net/minecraft/client/stream/BroadcastController$SwitchBroadcastState 5b05c5ba69b4d2946e5580c9dee3435c +net/minecraft/client/stream/BroadcastController 119d8b79190cc9842fad58d2d3546cb6 +net/minecraft/client/stream/ChatController$ChatListener 8bfd128847f19975b0de6d4be78f8db2 +net/minecraft/client/stream/ChatController$ChatState bfd5389f2c858b907e9819819960c11c +net/minecraft/client/stream/ChatController$SwitchChatState def1b788617d2c9c6f7a1bc4bdcb8121 +net/minecraft/client/stream/ChatController f22bd34ab33d0afd52381f28be381dc8 +net/minecraft/client/stream/IngestServerTester$IngestTestListener e4ce8c5f5df54be5b50086689e982995 +net/minecraft/client/stream/IngestServerTester$IngestTestState 3d1e1900cfb192f9b857621409ab624c +net/minecraft/client/stream/IngestServerTester$SwitchStatType f9a694a96a8f22355e3730d981dffef6 +net/minecraft/client/stream/IngestServerTester 67e0145d5287080018f8418e90c3c294 +net/minecraft/client/stream/IStream$AuthFailureReason ed86d890473e8050e2f63ccd4a28629c +net/minecraft/client/stream/IStream f11ed87505166a82b38e78bf4d2b6612 +net/minecraft/client/stream/Metadata 079537d9313b75101a2a94445c0bc184 +net/minecraft/client/stream/MetadataAchievement e23d0ad247a8a3e3a6ebe31681234fc6 +net/minecraft/client/stream/NullStream 9ebf9572e7a8cec6d06193a17a916063 +net/minecraft/client/stream/TwitchStream$1$1 50f21120e94e5a86f3ea61bb5da7fe9a +net/minecraft/client/stream/TwitchStream$1 f2d399b129104a6e7fb1a75f87535455 +net/minecraft/client/stream/TwitchStream 2d4694a5ee61de485358fcc3d770cc79 +net/minecraft/client/util/JsonBlendingMode d28e5e86576cf6c0b9cf7fb02c126c9e +net/minecraft/client/util/JsonException$Entry 9fbb13372a3d48d0271993df2ad277b5 +net/minecraft/client/util/JsonException ca97a6ef06573fe9087db3bc4925f2d3 +net/minecraft/client/util/QuadComparator dab1f1c46d0f33280c24f45e94db263b +net/minecraft/client/util/RenderDistanceSorter f041031056824c5efdb3b0e5ed266a87 +net/minecraft/command/CommandBase 1dfed3eaccc83d66c80d5eed010d8c0e +net/minecraft/command/CommandClearInventory bece93167673d3d7a56ca7c5e20f079d +net/minecraft/command/CommandDebug 36839ef44228f214b43bb64237e3df68 +net/minecraft/command/CommandDefaultGameMode 91589dccaa38c1b014926893c5c80eb6 +net/minecraft/command/CommandDifficulty e9abb63b38d052df1b43ab4ae28dfdc1 +net/minecraft/command/CommandEffect e46f1d99ba136dc9ee85ffa16de45208 +net/minecraft/command/CommandEnchant 1427fa2dd7c6fbad0cf3d7bddaa8a79e +net/minecraft/command/CommandException 888b36e4ea3d732e8f1d5ed578798dd7 +net/minecraft/command/CommandGameMode 9881f146afbc713ab7494cd7f93283c0 +net/minecraft/command/CommandGameRule 6f9abd5b01aba9929c26874a106eb22a +net/minecraft/command/CommandGive 57a7844e46d010e5488fb8d12be50efe +net/minecraft/command/CommandHandler df21a16ed6b2dca6d5724bd50633c268 +net/minecraft/command/CommandHelp 908e770e5163cdd1126db8da7be751c7 +net/minecraft/command/CommandKill b89d9974fb7eabaeb18fe17c8f9bffd5 +net/minecraft/command/CommandNotFoundException 0d5568cad466df9864d051607d389b5a +net/minecraft/command/CommandPlaySound 22a353d6d07cbcf0afbb085173350c02 +net/minecraft/command/CommandServerKick 68f42e98d7b24d0093bb7391248f84d6 +net/minecraft/command/CommandSetPlayerTimeout c5c5f016f771ca44298fd20ef12b802b +net/minecraft/command/CommandSetSpawnpoint 91398981015ebe49085297b2c6f1bc53 +net/minecraft/command/CommandShowSeed ce3b66a12e4e39bfa5b0d8e3ccca60e2 +net/minecraft/command/CommandSpreadPlayers$Position 57449000d02c7ac24385b0d5b56f8d90 +net/minecraft/command/CommandSpreadPlayers 258f1516760bbf455e16985f5d47a4bb +net/minecraft/command/CommandTime 3091cc2aca86250e63945c5b0e349318 +net/minecraft/command/CommandToggleDownfall 1f9836fae09d6b4be9e5b0b17fb62589 +net/minecraft/command/CommandWeather 4df65bdeb20948690c7f925608156044 +net/minecraft/command/CommandXP c4ff198b6d3a8b9e0fb7d069a01fb617 +net/minecraft/command/IAdminCommand 2dfb6a9ecf5261f6dc60eca6bc5e5380 +net/minecraft/command/ICommand 61baf259400fcc4c7e953183741a0512 +net/minecraft/command/ICommandManager dfa8372aa46df4819ad6ed0cdf4521a0 +net/minecraft/command/ICommandSender 90130ee846658b493a18eb1f8616de79 +net/minecraft/command/IEntitySelector$1 35e94597c8700fb617112501b85a1be4 +net/minecraft/command/IEntitySelector$2 f8cdab36f9915e975e1abdd932318f3b +net/minecraft/command/IEntitySelector$3 189c21866355a99cd556f1b73ccb3220 +net/minecraft/command/IEntitySelector$ArmoredMob 2ae725e35de9a98e4176964465e6fb29 +net/minecraft/command/IEntitySelector 348b60c8d8acee27e805db55e00c7147 +net/minecraft/command/NumberInvalidException b97b405455fb96c71e6ce6507c7064dc +net/minecraft/command/PlayerNotFoundException 743d42863fb52cf7819aff2275fb62af +net/minecraft/command/PlayerSelector c4dbce707e835c322756d5d959b8ed89 +net/minecraft/command/ServerCommandManager dcb611b7c0de310b196d8b1c2c114a6a +net/minecraft/command/SyntaxErrorException 80171f5add99053791ed70ce73dc9d60 +net/minecraft/command/WrongUsageException 8add2d66f5e3af9cc1ed0320d8b1a333 +net/minecraft/command/server/CommandAchievement efc57e4f27f81ad746a5d97cddfcb154 +net/minecraft/command/server/CommandBanIp 59c477ed9e2dd2ed36015938b504c727 +net/minecraft/command/server/CommandBanPlayer 1555defadcea8958b5584e5ce69ea8d8 +net/minecraft/command/server/CommandBlockLogic be6bdb922adc5dc8e29c1594e309284e +net/minecraft/command/server/CommandBroadcast a44f7ce629b0b3b9255f9fa5462349d1 +net/minecraft/command/server/CommandDeOp a73cb3ca711961da5e38cc513c7dd11c +net/minecraft/command/server/CommandEmote 87b7985a17e2a6c207c5406859fa78b1 +net/minecraft/command/server/CommandListBans 4968ecf4e86fbd0924d260e74da4fb33 +net/minecraft/command/server/CommandListPlayers b801211b9b6fc4d57032048d8a77cbf2 +net/minecraft/command/server/CommandMessage d35e5d80ceebcbbee2cb8d5ac5ea73b4 +net/minecraft/command/server/CommandMessageRaw 5c44c3e6b3aaaaa82285d2762b259cd1 +net/minecraft/command/server/CommandNetstat 9fe736cba9dd80d42256f5870c0b9bdc +net/minecraft/command/server/CommandOp 5eedf908336222f6af1537c97228d3dd +net/minecraft/command/server/CommandPardonIp 547479091d442dc86b5e663bc6ddbc8d +net/minecraft/command/server/CommandPardonPlayer 46f7aab3d940cfc2ff2528ea919b8241 +net/minecraft/command/server/CommandPublishLocalServer e4c6219201e0db7eb7aa82790c8c537a +net/minecraft/command/server/CommandSaveAll a4e78a5651be5aaafbb12e4754335af2 +net/minecraft/command/server/CommandSaveOff 8da1403675a7fcfef476618f07ff6a0b +net/minecraft/command/server/CommandSaveOn 326757e0f24989747b6afcb66832dbc0 +net/minecraft/command/server/CommandScoreboard 1184e058721f8d062ba2476ef3d1f7b9 +net/minecraft/command/server/CommandSetBlock 4c04480751ad483bf225a668526df06a +net/minecraft/command/server/CommandSetDefaultSpawnpoint 8490dede0fc7de535ac398d3f8cd857f +net/minecraft/command/server/CommandStop f30045128b7b524e5bb57dd6aab88490 +net/minecraft/command/server/CommandSummon c32b805788943d0838f4aa90fa1f71de +net/minecraft/command/server/CommandTeleport 603a3d2e136003203bb153abb31dae3c +net/minecraft/command/server/CommandTestFor 9fa5f2712286b4baa436c2bc576e6eed +net/minecraft/command/server/CommandTestForBlock 8b1ae815c8eb09cbf762f7709603492b +net/minecraft/command/server/CommandWhitelist 9a4d9ed04e4e9e38ca4331ecdb196088 +net/minecraft/crash/CrashReport$1 6666b44c4fcd12f17b0c382fa7ac2931 +net/minecraft/crash/CrashReport$2 acee49c3e62e2c14d214aedc0d86ea16 +net/minecraft/crash/CrashReport$3 0ceb8bd8da31a6e46b5b6c3a5107b75a +net/minecraft/crash/CrashReport$4 592cf22eb20dbe9d0029b4b2676c322a +net/minecraft/crash/CrashReport$5 9da2335049ff52aa794adbd7fde8e0b2 +net/minecraft/crash/CrashReport$6 a954e39bc3a86f61483fc7e17173b574 +net/minecraft/crash/CrashReport$7 ed35c0f055938f8daae7ea07b1a35665 +net/minecraft/crash/CrashReport$8 d4fc0f15b793075b18458fa7024e3653 +net/minecraft/crash/CrashReport afe9a3be29239388b41ee8bec6136673 +net/minecraft/crash/CrashReportCategory$1 c7350a2c6b0f7c8da53428c498012261 +net/minecraft/crash/CrashReportCategory$2 9b3046b8831ff479e652d8ab3c6cf30d +net/minecraft/crash/CrashReportCategory$3 12e14713c22178c16aa19b0f584df9c8 +net/minecraft/crash/CrashReportCategory$Entry 8c193a763f84a5ca551a0e65e1f09441 +net/minecraft/crash/CrashReportCategory 4a2dbc805b6f2e1dcce7ba674f385ae3 +net/minecraft/creativetab/CreativeTabs$1 3d69181558181bfa6561aebbda355745 +net/minecraft/creativetab/CreativeTabs$10 f76ee6c44bef9ecd16d355d4e34af840 +net/minecraft/creativetab/CreativeTabs$11 82d169d391781af8faa7dc1457b6f68d +net/minecraft/creativetab/CreativeTabs$12 29c0b413b3ae8985a37cac2e7b1cb867 +net/minecraft/creativetab/CreativeTabs$2 1859589217fceab659ad8213fb8e5a2f +net/minecraft/creativetab/CreativeTabs$3 8dc3d551386e7ec1ffbabf0a78536d7c +net/minecraft/creativetab/CreativeTabs$4 8e5f3c318d7c0840270ee10a2234c038 +net/minecraft/creativetab/CreativeTabs$5 4bf8d784848b6f3014e4acff1da8dcb7 +net/minecraft/creativetab/CreativeTabs$6 d9f278da263abed691c24b12ad5b58b3 +net/minecraft/creativetab/CreativeTabs$7 cedc5067c33b85623187bf35ff4ff4c1 +net/minecraft/creativetab/CreativeTabs$8 f42501ac6873b562f0604ac252abb1db +net/minecraft/creativetab/CreativeTabs$9 e4697b1cda582d315019cc1a4538488c +net/minecraft/creativetab/CreativeTabs 30e9ffc2a461da17f5935e60ada0ed3c +net/minecraft/dispenser/BehaviorDefaultDispenseItem 0f64886410002bb323c6cc534f023299 +net/minecraft/dispenser/BehaviorProjectileDispense 13044a25747ca32f861774ebaceb21b3 +net/minecraft/dispenser/IBehaviorDispenseItem$1 1d9b80dc71a207b4654dcb75bfa1aabd +net/minecraft/dispenser/IBehaviorDispenseItem 2faa13b38a912dd28f924f7cfc6d9b22 +net/minecraft/dispenser/IBlockSource bc8f8c022de838ba0e63f3bd02a9c71c +net/minecraft/dispenser/ILocatableSource d599b5325f88001560105cd4f4295212 +net/minecraft/dispenser/ILocation ba2d28ba01cacf2f97bcc94564612da9 +net/minecraft/dispenser/IPosition 7d83d141fb0de479724b314d6734c05f +net/minecraft/dispenser/PositionImpl a5ef8745445bd91eb08c587c96514ff2 +net/minecraft/enchantment/Enchantment 47d058ca5a9dcc4c8598ab2e93761c94 +net/minecraft/enchantment/EnchantmentArrowDamage d3ec5b9ac61fc2bf0d0e1946d72f88f3 +net/minecraft/enchantment/EnchantmentArrowFire 882034ed428a5def6693cfa5eec3fa7d +net/minecraft/enchantment/EnchantmentArrowInfinite 6197db6fb73bb240339aa2fb2e89372b +net/minecraft/enchantment/EnchantmentArrowKnockback b3e2781b642cee0e5d32e67fb3ebc4ba +net/minecraft/enchantment/EnchantmentDamage 463659f9350d27068926ae20df332d09 +net/minecraft/enchantment/EnchantmentData ac63def5b473aac6417a4295ed8f5997 +net/minecraft/enchantment/EnchantmentDigging b8df8a97be3fb32eccab16db5783c4be +net/minecraft/enchantment/EnchantmentDurability 6a33b101faad7f052d74e4aac3437019 +net/minecraft/enchantment/EnchantmentFireAspect 961a8e93b06cf1f636a3c53979c4d7ca +net/minecraft/enchantment/EnchantmentFishingSpeed b731960ad4f49563120218f37e5d6155 +net/minecraft/enchantment/EnchantmentHelper$DamageIterator 2753bef9dad07217a02fa43745ac7123 +net/minecraft/enchantment/EnchantmentHelper$HurtIterator 76b7e6190b553346f18eb82d98cc8591 +net/minecraft/enchantment/EnchantmentHelper$IModifier 4fb63f47748b46f767cec3c16955c0a3 +net/minecraft/enchantment/EnchantmentHelper$ModifierDamage e4dee374b739d68cf811cd51b1f720c2 +net/minecraft/enchantment/EnchantmentHelper$ModifierLiving 2a1b92f92e2be05bc4042c5cb71c3050 +net/minecraft/enchantment/EnchantmentHelper 44e986f799def912ecf2456be119b4b9 +net/minecraft/enchantment/EnchantmentKnockback 7f163196b73c47bf2261cc97ea7ff67e +net/minecraft/enchantment/EnchantmentLootBonus 10c0eb98de270e359df1e255365cba51 +net/minecraft/enchantment/EnchantmentOxygen d755fa2dd703b97a60540d5df5f670d7 +net/minecraft/enchantment/EnchantmentProtection dbb167b469195b036e4c0b8aa9d4c73c +net/minecraft/enchantment/EnchantmentThorns 46f1902d39d572c27c454069085fdd24 +net/minecraft/enchantment/EnchantmentUntouching c23001444eedc6261c89a5e5b2944372 +net/minecraft/enchantment/EnchantmentWaterWorker 0d04ee216975c9ca4a463029c56ea111 +net/minecraft/enchantment/EnumEnchantmentType eb322bef6f48f51f4505500e229e4675 +net/minecraft/entity/DataWatcher$WatchableObject 6953e5de47b6a848501d326684663a43 +net/minecraft/entity/DataWatcher e25b660533c97e492b980d5c04f27aba +net/minecraft/entity/Entity$1 4afddc271587c86580e4b4db529622d7 +net/minecraft/entity/Entity$2 327d16c0f756c8a77d46441fd740c43f +net/minecraft/entity/Entity$EnumEntitySize e4913de2f7467b1208df9e7dfaa55f5e +net/minecraft/entity/Entity$SwitchEnumEntitySize d20d08ed7fc84271ff39aea308241e45 +net/minecraft/entity/Entity 7644780f2bc73ac15d4d65a251946448 +net/minecraft/entity/EntityAgeable fb854c21d45ebe73f8a06c12a5e6d719 +net/minecraft/entity/EntityBodyHelper 0140322f571867c4194846e29b462801 +net/minecraft/entity/EntityCreature 5036e1bd266a168e58ab49bc8432c0e2 +net/minecraft/entity/EntityFlying 372d3e0bc8203e3010e64834ac8a9bb9 +net/minecraft/entity/EntityHanging 875397d96f0cd70fb76cea3745a1839d +net/minecraft/entity/EntityLeashKnot 286510744b8f7ea39bd2380da015621f +net/minecraft/entity/EntityList$EntityEggInfo d69acd43a60cf487d25edc14edbbbeb1 +net/minecraft/entity/EntityList a6b42f8512bad26cc8fdbf1df17e030f +net/minecraft/entity/EntityLiving a5d0e5780f92b5efcfc101a673020146 +net/minecraft/entity/EntityLivingBase 9aebe1dc8fbd1208fe90d54d0abfe60f +net/minecraft/entity/EntityMinecartCommandBlock$1 d7de312d3d3f0887d5b5b5fed600035a +net/minecraft/entity/EntityMinecartCommandBlock cd8235d177058f3347a3454c7ee68bbe +net/minecraft/entity/EntityTracker$1 55536a437fa8ba6d70a2d94fb42cf2a6 +net/minecraft/entity/EntityTracker fe0efc7218984fc738fe9149007a0a1a +net/minecraft/entity/EntityTrackerEntry 8639b79d38f83d8679a318924497fc02 +net/minecraft/entity/EnumCreatureAttribute d3c5550081aa48d4e82fa226d5e7c75a +net/minecraft/entity/EnumCreatureType e2acebf591d83126008b74089cfacc40 +net/minecraft/entity/IEntityLivingData 62b773141023ddd20452bb3e71dfe234 +net/minecraft/entity/IEntityMultiPart 58ab450fc8c97c1af56271ee1852db9a +net/minecraft/entity/IEntityOwnable 81187929807c92eda777e7695b410870 +net/minecraft/entity/IMerchant 99acdb3cf7c425f10c607f3477b2666e +net/minecraft/entity/INpc 7abcc6f4f02eb69d4d9683661ea32b27 +net/minecraft/entity/IProjectile deef4df5617212041ab9fb7298a2c12a +net/minecraft/entity/IRangedAttackMob ae559021cb99cc152eaf3a4bafb1c443 +net/minecraft/entity/NpcMerchant ac1a2170dbf8ad093ba0817e89f9a4b2 +net/minecraft/entity/SharedMonsterAttributes 45dbd9a3fb9633f7335409939677a275 +net/minecraft/entity/ai/EntityAIArrowAttack 1cff130e53ead0531a35b9b1bb01d80d +net/minecraft/entity/ai/EntityAIAttackOnCollide 0cd299092178ef15c26eaa2fadc5a09c +net/minecraft/entity/ai/EntityAIAvoidEntity$1 f87732b1460db97b5f159e54c5aca472 +net/minecraft/entity/ai/EntityAIAvoidEntity 3459b6ccf6b0b6197cfd95c4c48938af +net/minecraft/entity/ai/EntityAIBase cc583366f4d5ca6eeb44c15c77e97acf +net/minecraft/entity/ai/EntityAIBeg 18891d2dc0d2cccd67777874599f37c3 +net/minecraft/entity/ai/EntityAIBreakDoor 99e7b311e0b50546a23f4ef09db2ebfa +net/minecraft/entity/ai/EntityAIControlledByPlayer 18efa3d80c7df3932d9128b78312e5d7 +net/minecraft/entity/ai/EntityAICreeperSwell 0999bd562754a3ccc3c215eb54185b9b +net/minecraft/entity/ai/EntityAIDefendVillage b49c642198af53c085714de6a608ef7e +net/minecraft/entity/ai/EntityAIDoorInteract e38210f52ae59b399115d29c2d39a1e2 +net/minecraft/entity/ai/EntityAIEatGrass 698343c3e4b8ba1effab202cc0a2e251 +net/minecraft/entity/ai/EntityAIFleeSun 3b06cbfa636a804dc093155e90d7cb0e +net/minecraft/entity/ai/EntityAIFollowGolem b6abd457a7f32a9f3a174c957a6d6d54 +net/minecraft/entity/ai/EntityAIFollowOwner c75b3a3a998848d94df9f755d3756424 +net/minecraft/entity/ai/EntityAIFollowParent c1bf862ba4e9f5c25b98a03b9543dd9c +net/minecraft/entity/ai/EntityAIHurtByTarget baa5e1c7b8ab0743f09f881fe4665d43 +net/minecraft/entity/ai/EntityAILeapAtTarget ab46fb6de7aaaa7e5a03c5dc86f6bbea +net/minecraft/entity/ai/EntityAILookAtTradePlayer 3ed0ca462a14ec58f611c59ec53665ec +net/minecraft/entity/ai/EntityAILookAtVillager aa0c557a416a6ce19d6235bc2cddddbc +net/minecraft/entity/ai/EntityAILookIdle 4bb0285617d4f3749ee4ec1d83b74510 +net/minecraft/entity/ai/EntityAIMate 9dc75e30455d216b189be4818cdccb26 +net/minecraft/entity/ai/EntityAIMoveIndoors a064c8fad4467a1861301478af7cec06 +net/minecraft/entity/ai/EntityAIMoveThroughVillage 3e08c155079f20c9330225223a2a1532 +net/minecraft/entity/ai/EntityAIMoveTowardsRestriction 43784b459e421f49238bd979759a11b0 +net/minecraft/entity/ai/EntityAIMoveTowardsTarget 4b0673adfb1a831c6fbe912c6acef448 +net/minecraft/entity/ai/EntityAINearestAttackableTarget$1 ab510dab9b451c4e8601bf405fbd1e6c +net/minecraft/entity/ai/EntityAINearestAttackableTarget$Sorter d11d3843450bf9af26a3255fd8059f6a +net/minecraft/entity/ai/EntityAINearestAttackableTarget 682f0f8eced069d96b7f308edf763fee +net/minecraft/entity/ai/EntityAIOcelotAttack 720b0a278578ff137e92efa766e26249 +net/minecraft/entity/ai/EntityAIOcelotSit 55ad8a5b158371f1c6f5c2be4a4141e4 +net/minecraft/entity/ai/EntityAIOpenDoor 4c59d8bd9ea991642defbbccc3360224 +net/minecraft/entity/ai/EntityAIOwnerHurtByTarget aced283dfef745935c9b7346c5db363e +net/minecraft/entity/ai/EntityAIOwnerHurtTarget d82e5aaee0027e3995f59f05a0dbf08d +net/minecraft/entity/ai/EntityAIPanic 5191c8cd145259ecc431028c6bad7902 +net/minecraft/entity/ai/EntityAIPlay caf177b56807e4162ad16694e6f1e5cb +net/minecraft/entity/ai/EntityAIRestrictOpenDoor 846b115a618865e63fd97bb13c74ce1c +net/minecraft/entity/ai/EntityAIRestrictSun eb4278b22a54232b1326dae8f4024b00 +net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy 002ff62320c84a575c9d48d145111939 +net/minecraft/entity/ai/EntityAISit f33de58d74eda71b7f6b498fb5c5d013 +net/minecraft/entity/ai/EntityAISwimming ae0ede568c0945ff570ec8277fa24470 +net/minecraft/entity/ai/EntityAITarget fda96adbf17c67abd1b03636b2a4fa11 +net/minecraft/entity/ai/EntityAITargetNonTamed 18cf7c372a7d346b01e0ee7b51b2564c +net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry 9cf4724c5a36aa06067bbfb17bbfd537 +net/minecraft/entity/ai/EntityAITasks 8c500563f8d4469116d4a48b313ed021 +net/minecraft/entity/ai/EntityAITempt 4d2468de640831139e0683047bc55ab3 +net/minecraft/entity/ai/EntityAITradePlayer 74efe3277438beeedf2b9e000b669ad2 +net/minecraft/entity/ai/EntityAIVillagerMate e22160b9340bcdba3dcae565c8700c16 +net/minecraft/entity/ai/EntityAIWander 94766f46babd74cdfda749b222faca9e +net/minecraft/entity/ai/EntityAIWatchClosest 252d2dee0f8e0ecb2630cde306a070e9 +net/minecraft/entity/ai/EntityAIWatchClosest2 9408f9c31bd802a6c72f6cdc72dc4b3f +net/minecraft/entity/ai/EntityJumpHelper 2e4bcadf460449fd729c8f9c2b20897e +net/minecraft/entity/ai/EntityLookHelper 1b4a16eb51d48d6925e37fa482af4aa5 +net/minecraft/entity/ai/EntityMinecartMobSpawner$1 c48f9e10b3e68c7a44879efbc20fbc7a +net/minecraft/entity/ai/EntityMinecartMobSpawner dea7f0cf74a82994adee346915538e55 +net/minecraft/entity/ai/EntityMoveHelper 47c97bce6700f795045818959ea81115 +net/minecraft/entity/ai/EntitySenses 20afcf04f606d1d44e74ac21f75fff55 +net/minecraft/entity/ai/RandomPositionGenerator 01ba81e8936b2f9d3204fba6455eca1a +net/minecraft/entity/ai/attributes/AttributeModifier ef462551f547ecc33f26c9718f04e412 +net/minecraft/entity/ai/attributes/BaseAttribute a22ce912aca40ba986fc26328224663d +net/minecraft/entity/ai/attributes/BaseAttributeMap 458e8cb9c641142a1aed6ad74e444e5a +net/minecraft/entity/ai/attributes/IAttribute 210acedf2168e926bf03c87e0bda1935 +net/minecraft/entity/ai/attributes/IAttributeInstance 1816569a29f5fc519b15b6e5993be940 +net/minecraft/entity/ai/attributes/ModifiableAttributeInstance 088d961534febc936fb087378e048f71 +net/minecraft/entity/ai/attributes/RangedAttribute e14da5f6a697afad05f5d8cf72f4a378 +net/minecraft/entity/ai/attributes/ServersideAttributeMap 6d8eb5b6212de212e4cddd0a866bf82d +net/minecraft/entity/boss/BossStatus ba26c3e01075d4b1309ad8f1d023356d +net/minecraft/entity/boss/EntityDragon 24ee6655fcc8aa920adcbdb09cbcc11c +net/minecraft/entity/boss/EntityDragonPart a2b45eb75ea19bc96d963a54bd6ab2d7 +net/minecraft/entity/boss/EntityWither$1 e53275e48a692af1b7dc9787e92aba44 +net/minecraft/entity/boss/EntityWither 4bcfd80f8ebb383cfbee3b58eb1b2fc2 +net/minecraft/entity/boss/IBossDisplayData 16bf7663e6aad93fbc72858ff971aa0e +net/minecraft/entity/effect/EntityLightningBolt 406b69672484d82b31adf95433551dca +net/minecraft/entity/effect/EntityWeatherEffect a5150f1392c611565db9f9a855ab9724 +net/minecraft/entity/item/EntityBoat c55c8cd1e4c6ab15ae1a7bb83aa36e58 +net/minecraft/entity/item/EntityEnderCrystal df0d92c24417f3db77549fa707614f2c +net/minecraft/entity/item/EntityEnderEye 756594a04e0d951ceed681713ef3c738 +net/minecraft/entity/item/EntityEnderPearl 8aa2fbef840beacc6747b3e07c8601e2 +net/minecraft/entity/item/EntityExpBottle a0c4cd78c5737db5dacaa2f6c6226322 +net/minecraft/entity/item/EntityFallingBlock 3235c488d94c855612b73cd4a0bf1cac +net/minecraft/entity/item/EntityFireworkRocket 7255f3ceb04d2efa741e429794ca7eb7 +net/minecraft/entity/item/EntityItem 6a45c0443a41926b327bd7c96c2d62ce +net/minecraft/entity/item/EntityItemFrame 7264c97739284dd35931dac1bf217098 +net/minecraft/entity/item/EntityMinecart 697dfe6db0279398e6fbb3d21af69017 +net/minecraft/entity/item/EntityMinecartChest 52e202239b879975f8c41d19f9aec6e1 +net/minecraft/entity/item/EntityMinecartContainer 0b0cf8e9d0473d9b3ccab79ad752aaa6 +net/minecraft/entity/item/EntityMinecartEmpty af4cf8df10e40c5bf82b902ec27c9490 +net/minecraft/entity/item/EntityMinecartFurnace c4aeb2b8313f9df3a6559d21138f257d +net/minecraft/entity/item/EntityMinecartHopper 1bb8669471a0561a1df369d000c0f177 +net/minecraft/entity/item/EntityMinecartTNT b2b003d0d03a7f195994cc474d65f74b +net/minecraft/entity/item/EntityPainting$EnumArt c92d165e1db7a720f0c4be057e6a9424 +net/minecraft/entity/item/EntityPainting 5e9b86495283571e785bb6b5200b75ec +net/minecraft/entity/item/EntityTNTPrimed 8fe1c59f2806458e181cb680a5f3fadc +net/minecraft/entity/item/EntityXPOrb 6194a4ffff15c7604db6e93095a37421 +net/minecraft/entity/monster/EntityBlaze dcd44af128aa936e9a50e8f4acf2cfdd +net/minecraft/entity/monster/EntityCaveSpider a8cc4725f2d3caf3c47c54d859fa5082 +net/minecraft/entity/monster/EntityCreeper 1c1b6ebdff3a42dd1aaf54160646ea26 +net/minecraft/entity/monster/EntityEnderman 949b56ac15767c05a062a10133270a3f +net/minecraft/entity/monster/EntityGhast 7074004237a8087080e548b3f68a7a94 +net/minecraft/entity/monster/EntityGiantZombie e1e493839aca3b261bc6fd8b35e13da5 +net/minecraft/entity/monster/EntityGolem 317db7a4615f4fb624bae3974fed0174 +net/minecraft/entity/monster/EntityIronGolem cbbd149f0c0874e6e34bace61c6ce4f2 +net/minecraft/entity/monster/EntityMagmaCube a01b6d59888c64a39398a4eb51603b53 +net/minecraft/entity/monster/EntityMob e8f17427596df93208f4a0434bb07f8c +net/minecraft/entity/monster/EntityPigZombie d6be01c4f34604ea472047c0b64518ae +net/minecraft/entity/monster/EntitySilverfish 433a811a4237a4d5e2d91d0102430664 +net/minecraft/entity/monster/EntitySkeleton 18cac93aab83319138de88047f252709 +net/minecraft/entity/monster/EntitySlime f27469ab07b19ccf9ea93f36df15caad +net/minecraft/entity/monster/EntitySnowman 6f88a03ab2ba2d1f66829d3fe6632139 +net/minecraft/entity/monster/EntitySpider$GroupData 17c73ad877e3494286ae43d99b8b03de +net/minecraft/entity/monster/EntitySpider ee345339fd81a1a6d3760e7194ed56e4 +net/minecraft/entity/monster/EntityWitch df0b7815aed07348cc398b118f447515 +net/minecraft/entity/monster/EntityZombie$GroupData 0c96de8dc97657a34c1f235c1b2b7afb +net/minecraft/entity/monster/EntityZombie 24b69ee2cc697a2bda0ea32c738fbb7a +net/minecraft/entity/monster/IMob$1 e53e2dddb5ad3275d838df5f23800be1 +net/minecraft/entity/monster/IMob e995da36a8a11e725f118526273642e6 +net/minecraft/entity/passive/EntityAmbientCreature a211f72f7360e61d7ab4841f3ae7dd6f +net/minecraft/entity/passive/EntityAnimal b6eaefbb2f4e31bbdbf0d5e0146c497f +net/minecraft/entity/passive/EntityBat 195df526acfb931f0bbbc91bff2deec0 +net/minecraft/entity/passive/EntityChicken 2541e80c42233bcc9fff54f4930b3fb7 +net/minecraft/entity/passive/EntityCow 571837bd986cd285f2199d5040aab5c8 +net/minecraft/entity/passive/EntityHorse$1 00d2dff9ec8b8972440fb9468777b15c +net/minecraft/entity/passive/EntityHorse$GroupData 46509e9fcd94d27e69a5284a3177329c +net/minecraft/entity/passive/EntityHorse 21d02fecad2222c8c8d471ba0150e9e7 +net/minecraft/entity/passive/EntityMooshroom 14d16dc2844b0c671336f413fcc8b403 +net/minecraft/entity/passive/EntityOcelot a2b8fb3b8eb3f235c0ab35917b4cedad +net/minecraft/entity/passive/EntityPig a5af34028166bcf29a0a6db9fb3742e6 +net/minecraft/entity/passive/EntitySheep$1 842827ffb556f9469b84040f5d88915a +net/minecraft/entity/passive/EntitySheep 56de7aabce71115b6c8a9348a998e2fc +net/minecraft/entity/passive/EntitySquid 89927afc075fcd52037531ac1008995a +net/minecraft/entity/passive/EntityTameable de2ad8d30af4a724ae6208d79a0bfaba +net/minecraft/entity/passive/EntityVillager 40ed9d851c3c21547add653ccd217b67 +net/minecraft/entity/passive/EntityWaterMob 367c1df8dccc03643843eab4b1c388ba +net/minecraft/entity/passive/EntityWolf 77984e8e3c4aa3c83ca939bdec83310b +net/minecraft/entity/passive/IAnimals 3357ca70eca105a9081a076eddb25173 +net/minecraft/entity/player/EntityPlayer$EnumChatVisibility 8764cbd0c15a0bde7b4d6dbc6d2e8e8d +net/minecraft/entity/player/EntityPlayer$EnumStatus 084286b99022923969af5038a9deda9e +net/minecraft/entity/player/EntityPlayer 27720c71cea05ccabeec41d15044aeec +net/minecraft/entity/player/EntityPlayerMP 4f29cfe1c18fb30290cf80ead5726e5c +net/minecraft/entity/player/InventoryPlayer$1 97e12ec4992c1e9ea78561d19a2e9e8d +net/minecraft/entity/player/InventoryPlayer 6e5feaebc701529fc78ec5ef4da4b0cd +net/minecraft/entity/player/PlayerCapabilities 18d0749d314905c363cf11290e843f68 +net/minecraft/entity/projectile/EntityArrow 9394c82f077881de813b1f07466169e3 +net/minecraft/entity/projectile/EntityEgg fcf9b0846e7589070f0ab38f53bf1006 +net/minecraft/entity/projectile/EntityFireball 42aa6c1d09e197c04e222c68bcb038be +net/minecraft/entity/projectile/EntityFishHook 0bdd922dffe156dfdae2adcab702d0ec +net/minecraft/entity/projectile/EntityLargeFireball ae5c5803cee9eaf9fdc18dc72eed8acf +net/minecraft/entity/projectile/EntityPotion 9579eb3c450b68949d168e4f6478f17e +net/minecraft/entity/projectile/EntitySmallFireball 29418bdd72cf3b8a7b948033e7340e1a +net/minecraft/entity/projectile/EntitySnowball 204101d461ca339045b46b1d154fb616 +net/minecraft/entity/projectile/EntityThrowable b4eb68c3172e51d0ac514c5788f00145 +net/minecraft/entity/projectile/EntityWitherSkull eb5b736c94e309b0130c02b92fc52ca5 +net/minecraft/event/ClickEvent$Action 4c64a1f3fe1db42e88ea2a35e39f5690 +net/minecraft/event/ClickEvent f71645d68dad30a495e53a58978964ce +net/minecraft/event/HoverEvent$Action 036597d51f31a09cc8c4efe8efbdfd58 +net/minecraft/event/HoverEvent 977cc68169989b3c9bb3d7b7b4cfd458 +net/minecraft/init/Blocks 61ad7fa7880387824f70b4c697c1dfdc +net/minecraft/init/Bootstrap$1 85405a7b3c647c7404fabedbc23173f8 +net/minecraft/init/Bootstrap$10 50ad65f576e482a57d873e4058b47b25 +net/minecraft/init/Bootstrap$11 daff59274fed0feac927dfaf1064d617 +net/minecraft/init/Bootstrap$12 b929154e580f0ae8bbe65c584764c615 +net/minecraft/init/Bootstrap$13 9dd18559c1e13f7adc65b3562340d5c4 +net/minecraft/init/Bootstrap$14 6a946584bf7effa009495ba2e4ab27aa +net/minecraft/init/Bootstrap$2 3f90374a4fcbd1023dc631d32f18229e +net/minecraft/init/Bootstrap$3 deadfd61d7e25e26c151da9570f5db00 +net/minecraft/init/Bootstrap$4 10c75f8ca576b5d1f1af9627674af0a6 +net/minecraft/init/Bootstrap$5$1 8c60d728c22f39697039652eb77828c6 +net/minecraft/init/Bootstrap$5 b28b757f45b159196c7f63eff843917a +net/minecraft/init/Bootstrap$6 10bb32b2217e1438fe38d7ba4155a566 +net/minecraft/init/Bootstrap$7 f74ff330c4e49aaaa3290428d056af91 +net/minecraft/init/Bootstrap$8 1e1a59f5535ee11ba0a343c5eb6291d2 +net/minecraft/init/Bootstrap$9 bfa3ee8fb25d76510993576e857eac85 +net/minecraft/init/Bootstrap 2c6bd4971d892c5bb5585660b854925d +net/minecraft/init/Items d184900bcc122caab632f5320e798418 +net/minecraft/inventory/AnimalChest 099511d076cde5deaff99a7ec1b1c8d1 +net/minecraft/inventory/Container 562d37444ec1ca3a350929118ad34b81 +net/minecraft/inventory/ContainerBeacon$BeaconSlot be5d5d42a836d318e6932572d07c573f +net/minecraft/inventory/ContainerBeacon b1e2a507bd3c5d36ddcf9c1486e8d116 +net/minecraft/inventory/ContainerBrewingStand$Ingredient 5cc6d95ed842c2f2d175d937cd43a97c +net/minecraft/inventory/ContainerBrewingStand$Potion 13733dc8a8378777113a0a066d8fc299 +net/minecraft/inventory/ContainerBrewingStand ad7d633f5ba989c6b12be9285a3191eb +net/minecraft/inventory/ContainerChest 8554b7308b58193eb563f2aa93b1726c +net/minecraft/inventory/ContainerDispenser f73816601870fc0689eaa576e353af3b +net/minecraft/inventory/ContainerEnchantment$1 de178fb27464f169da2b6c320b7e62c7 +net/minecraft/inventory/ContainerEnchantment$2 4178ac44cc062a8dd1dc0ab3f7a574dc +net/minecraft/inventory/ContainerEnchantment 7032473db2f469ca016f3df9fc04030c +net/minecraft/inventory/ContainerFurnace 77e9cda11c37d880d9e8595f0900adf9 +net/minecraft/inventory/ContainerHopper cef2e9664c02a0cfccaa429d18329e5a +net/minecraft/inventory/ContainerHorseInventory$1 95d9f4b9c4f8cd0ed2187583179ee66c +net/minecraft/inventory/ContainerHorseInventory$2 bb07d9b76095eca6490fe8eb3ad95043 +net/minecraft/inventory/ContainerHorseInventory d27d635b7e12888cd3ce523b4bc0bd12 +net/minecraft/inventory/ContainerMerchant de39f54b8c59dc5290f6a0ec8b411dcf +net/minecraft/inventory/ContainerPlayer$1 2c7bae1706afa1dab0285c8e044fcc41 +net/minecraft/inventory/ContainerPlayer 5949cc56e2eb6e5468756001bd931916 +net/minecraft/inventory/ContainerRepair$1 31ab58a14408f536cb398f6b6be8a7ec +net/minecraft/inventory/ContainerRepair$2 504f61cf260e6085c4a04f0194cc7470 +net/minecraft/inventory/ContainerRepair c7503b27b43f80fd18f2862e523b97b0 +net/minecraft/inventory/ContainerWorkbench 3afe8d4fc3dbc7209dacd5601a658e33 +net/minecraft/inventory/ICrafting 5ddff985766c4ba495151cc751547761 +net/minecraft/inventory/IInvBasic 6c64fab0b15b53ed22a93ba7a0c6c5cc +net/minecraft/inventory/IInventory c12647978e4c72c290afc226c6aad713 +net/minecraft/inventory/InventoryBasic b923652daddc0742c825de7c25046bb9 +net/minecraft/inventory/InventoryCrafting 3eac37fc4eabca5d970492267c1dca12 +net/minecraft/inventory/InventoryCraftResult 0660afd529782710348ec48bbb6ae626 +net/minecraft/inventory/InventoryEnderChest ff321db7bee29204736431bd2e469d56 +net/minecraft/inventory/InventoryLargeChest 12d26b60f575bfd6c96dc43910808d0d +net/minecraft/inventory/InventoryMerchant 479c5b5408042c6e99e8bf36e615e32c +net/minecraft/inventory/ISidedInventory 51bfe61a54fdb43f7babecb78e87e5ac +net/minecraft/inventory/Slot 155d9cd12abd66dc7a34b8f6fc38d813 +net/minecraft/inventory/SlotCrafting 9fbf0b2547033d3a324006ada37e7649 +net/minecraft/inventory/SlotFurnace ddfa31d3edab80678e3363fa15f2d4a9 +net/minecraft/inventory/SlotMerchantResult fc32602ae505b0e151fea3d25b322cc7 +net/minecraft/item/EnumAction 63710da8235f2d08e6c1a5dfb6d727e4 +net/minecraft/item/EnumRarity 6bba1364b7e4bac9565391472918bb73 +net/minecraft/item/Item$ToolMaterial 909212181c74f9935df94da1537821dc +net/minecraft/item/Item 80f6ac47e90cade10bfadb1f42676a9a +net/minecraft/item/ItemAnvilBlock fcf09f6ae345f0f729eeaec52625b258 +net/minecraft/item/ItemAppleGold aaa2bbf5ea1bf1bc77d41924849483a6 +net/minecraft/item/ItemArmor$1 075579908c9e218882b1eded8c8ed78f +net/minecraft/item/ItemArmor$ArmorMaterial ea9fe8cec3d767378ff3690082a7fd16 +net/minecraft/item/ItemArmor 72332b00c26d8f5a0991286f73ca5beb +net/minecraft/item/ItemAxe 7517c2ffc92d7bc81551b71164c527e3 +net/minecraft/item/ItemBed f1bfcc5aa1b72b37e6ee6ec2057837aa +net/minecraft/item/ItemBlock 405b135e19ff6d7c082055579b07f7b6 +net/minecraft/item/ItemBlockWithMetadata c575c16b1e9be0060bb49cc417c1aeb6 +net/minecraft/item/ItemBoat 15bfd2b3fc25d0b5294cdb38429d40a0 +net/minecraft/item/ItemBook 4bf8dc57523282e2e227ed627cd35e78 +net/minecraft/item/ItemBow 5b37931d454fef486363bdf2d7ba132f +net/minecraft/item/ItemBucket 2d811967b0eb5655e40cea069772eeea +net/minecraft/item/ItemBucketMilk 165a251c2d29151af641922a67783ae5 +net/minecraft/item/ItemCarrotOnAStick dd09606403a34157220067fc25e3581a +net/minecraft/item/ItemCloth e5ebc6cb2243a9acf4812944976f623b +net/minecraft/item/ItemCoal 54c362cf76c91b387b11c6ab459a53e1 +net/minecraft/item/ItemColored 03a88830f3f1ff9c5d247f7ad5779e7e +net/minecraft/item/ItemDoor 679866c8c161ae98039dfb8264cea583 +net/minecraft/item/ItemDoublePlant e1d5cd65c01d5f362833911d26ef9680 +net/minecraft/item/ItemDye e54131750a4a5b8044d070995952db98 +net/minecraft/item/ItemEditableBook 059881522a68a366b0ff76eae7f033ab +net/minecraft/item/ItemEgg cf7f951df5936c32b12ca8580639b9a2 +net/minecraft/item/ItemEmptyMap 388f7812c5453d936cc1fc127a3adbaf +net/minecraft/item/ItemEnchantedBook 05b4c358ebe682b0adecd1110f4a89ff +net/minecraft/item/ItemEnderEye c8f38fed051bc20074b56f2e493ba970 +net/minecraft/item/ItemEnderPearl 4ee82dbe9dbaf8e0c30d589a9c5ec470 +net/minecraft/item/ItemExpBottle a0bb6339063209f9b712ea7aea5127ae +net/minecraft/item/ItemFireball 3147f4b18159da892f9435516073d7a4 +net/minecraft/item/ItemFirework fb0b71cd4eb997026f7dfd6022745bb7 +net/minecraft/item/ItemFireworkCharge 7cf10a57d55f263de1e58381c7898abd +net/minecraft/item/ItemFishFood$FishType 576f13eba61648e9b06dcf1815a3e615 +net/minecraft/item/ItemFishFood 6c11f5507a1afa4f45c07693b490a91b +net/minecraft/item/ItemFishingRod 07157cb521f0f19f86ad5dc2caadcdc8 +net/minecraft/item/ItemFlintAndSteel 701874c30acf44b5a567f6fe8a679be0 +net/minecraft/item/ItemFood 7dc5c8a85056f2e2c4d56619187afcbe +net/minecraft/item/ItemGlassBottle e66771a8eb2ed123f456b4168b427cdc +net/minecraft/item/ItemHangingEntity a34a8078a83a0fc0026f0b63c4061a50 +net/minecraft/item/ItemHoe b92617c7c42f307808c9857c0b4cda23 +net/minecraft/item/ItemLead a3b75d281b8b777c29c045ce42d1442a +net/minecraft/item/ItemLeaves aab811bcea1396f8abe4f773484879a1 +net/minecraft/item/ItemLilyPad 158aa6ba056da25b9adf313150eb982e +net/minecraft/item/ItemMap 4cf35f67d2cd59a3aab677d888f9fe12 +net/minecraft/item/ItemMapBase c622d0a4bc835bd39f01b3b0a7fec9b0 +net/minecraft/item/ItemMinecart$1 1124e3828315bf6941602c82a2f547a4 +net/minecraft/item/ItemMinecart 4ed757c6df6d96eb1a88411f492e248a +net/minecraft/item/ItemMonsterPlacer 71d5d7e5614a265b01989a370c0ced71 +net/minecraft/item/ItemMultiTexture a82662f9139f836dea8a867482c881f2 +net/minecraft/item/ItemNameTag adabb9d957aae89285c9f920563538db +net/minecraft/item/ItemPickaxe 7eb1fb75e5cc0c2fab8738c08b8f9119 +net/minecraft/item/ItemPiston 3e2b878338017fc7b3f98748c0491c70 +net/minecraft/item/ItemPotion 062c367add511bb927f41a5749b15ae3 +net/minecraft/item/ItemRecord 741e28305015694e72d9fb8684fda425 +net/minecraft/item/ItemRedstone 17d54e1463c26be8dd2dc306a2237543 +net/minecraft/item/ItemReed eb6cc80a8901fd2b34c83ea814094e0c +net/minecraft/item/ItemSaddle 179b04a18ba40cfbb63db46efbd11d75 +net/minecraft/item/ItemSeedFood 6ac372827a16da2c9784392f60ffff8e +net/minecraft/item/ItemSeeds c672286ce5c92f84a8691e8813079030 +net/minecraft/item/ItemShears 9e59447c9d25cbcea74d84cc589524b5 +net/minecraft/item/ItemSign 167e327f8fdf7ce9ec3472f21abe2d30 +net/minecraft/item/ItemSimpleFoiled 3f793075cd72daa2ce685cea0bfbc680 +net/minecraft/item/ItemSkull c04689f98d82971b2f10885d9b1145a2 +net/minecraft/item/ItemSlab f8ac2bca30413bbe956b676576a03f84 +net/minecraft/item/ItemSnow 347f1ba276ac2aaf4c6a2c5629ae4fab +net/minecraft/item/ItemSnowball 0176ef05f9dfc35ef629e09eed3e642c +net/minecraft/item/ItemSoup 4d969078ba430b81a693b6241493a0cf +net/minecraft/item/ItemSpade 089c39ce6da4574ab05b80300fcca975 +net/minecraft/item/ItemStack 6d9a390f669f5205c47c9ad9a363d614 +net/minecraft/item/ItemSword a6b9dd785dd7f94f0b2a821d0a7f9ff0 +net/minecraft/item/ItemTool 99530ce1973b4de24e0b4d62cb7680b7 +net/minecraft/item/ItemWritableBook f111825c750505dda7c7241e54c7d67f +net/minecraft/item/crafting/CraftingManager$1 f857302f30a2e34ca9da542d1c5f450d +net/minecraft/item/crafting/CraftingManager c87778d09bf4153e2a3fb3326dfedc53 +net/minecraft/item/crafting/FurnaceRecipes da6b41a016acf8c82c248114124a6ea6 +net/minecraft/item/crafting/IRecipe 9e2fdf45cc8a2b7082dbec733c8eee55 +net/minecraft/item/crafting/RecipeBookCloning 4cfa7987244247e95d138a5e79f5f3c3 +net/minecraft/item/crafting/RecipeFireworks 3bca22a435d358e1e7dedaea2b8da6aa +net/minecraft/item/crafting/RecipesArmor 8c2e3d99b744175d8d652334e984d0ca +net/minecraft/item/crafting/RecipesArmorDyes 8dcf1224792baa6b01bee32423139a05 +net/minecraft/item/crafting/RecipesCrafting aefb001c122ae49786d1233e42845cf1 +net/minecraft/item/crafting/RecipesDyes edb09727df0b396fdeb6bf1ee49c3827 +net/minecraft/item/crafting/RecipesFood 456305b2f4079f311dd7d6eac867a261 +net/minecraft/item/crafting/RecipesIngots cd3e7d0efdff1d2daf37dabafded051d +net/minecraft/item/crafting/RecipesMapCloning 7ee562bc19bc6a55eba7dbcb2ef52844 +net/minecraft/item/crafting/RecipesMapExtending 80ca5acd52cefdaea5b867b7a4729720 +net/minecraft/item/crafting/RecipesTools 50740b9b75c5a710cc87e7814a3216b9 +net/minecraft/item/crafting/RecipesWeapons aea715c32d6f83e8e728f4bcefab49e8 +net/minecraft/item/crafting/ShapedRecipes 6910b79d1fa846fdb02fc79c8e2f8dfa +net/minecraft/item/crafting/ShapelessRecipes efe5b63ac213ecff96a818d7ac8300d4 +net/minecraft/nbt/CompressedStreamTools aa5d040bbe95aea550630e81653fab3f +net/minecraft/nbt/JsonToNBT$Any 439b8aec38290c1de868823f15a377f2 +net/minecraft/nbt/JsonToNBT$Compound 4f46968ce0738e0c98fc97cb34b27956 +net/minecraft/nbt/JsonToNBT$List 2f4ff66af36900d22608deac1258e603 +net/minecraft/nbt/JsonToNBT$Primitive b29c13fa4504adf4b5c0b27e4745912e +net/minecraft/nbt/JsonToNBT 54d50935bb61f9636856f32186c2be3c +net/minecraft/nbt/NBTBase$NBTPrimitive 7a847dc7fd184e82873943b24d3255c2 +net/minecraft/nbt/NBTBase 470d3d72569ff2256140a27b8296daf1 +net/minecraft/nbt/NBTException 5f205406ce5e40742ad68754b6a606b5 +net/minecraft/nbt/NBTSizeTracker$1 e782f4ddfe129e7cfdf0482a2223faac +net/minecraft/nbt/NBTSizeTracker e85027a45566220fb8f15630bd239ddf +net/minecraft/nbt/NBTTagByte 88481fef34d1747d89a869ccd6e50cad +net/minecraft/nbt/NBTTagByteArray 1fbab86ab40e63b2e71ca86a244c93aa +net/minecraft/nbt/NBTTagCompound$1 7796990816906bf0e2c854524a33d8c5 +net/minecraft/nbt/NBTTagCompound$2 fe0f6ce466e4be9b58ab0f40502f9598 +net/minecraft/nbt/NBTTagCompound 412d389652d8815d686ff2bd6eb21957 +net/minecraft/nbt/NBTTagDouble 3eb51a3bab559d0355f436ce07d8eb44 +net/minecraft/nbt/NBTTagEnd 79b082df86b48f6aa8d9b7b589303784 +net/minecraft/nbt/NBTTagFloat f5d0c2426200e8e5c90e534bf799abca +net/minecraft/nbt/NBTTagInt aab45510cd8730b3ff0961b0cb8d2566 +net/minecraft/nbt/NBTTagIntArray a7aa3786a978cb9b1a8c1499efae6cf1 +net/minecraft/nbt/NBTTagList ff507403eccc41c80655eaa8ee49ff8f +net/minecraft/nbt/NBTTagLong f5033bf39efce4f2ad0762b0273e216c +net/minecraft/nbt/NBTTagShort b0bd157a50557abaad74f6253317378d +net/minecraft/nbt/NBTTagString e4d4f2e250293fe93639493b8b85709f +net/minecraft/nbt/NBTUtil 2d9e85ee31d071f9d5f4b06cccaedf99 +net/minecraft/network/EnumConnectionState$1 ba3740b09abfd53c69968a35c32982c2 +net/minecraft/network/EnumConnectionState$2 de9c3cfb475038eabc44a03130b2e44c +net/minecraft/network/EnumConnectionState$3 f62418f077f883a493f0de2a9eb7d120 +net/minecraft/network/EnumConnectionState$4 e2b80c7e23c4dd56f8927568d5811262 +net/minecraft/network/EnumConnectionState 4fcbdb76b126a9347ff3e4b857087869 +net/minecraft/network/INetHandler 0fe9ad2c5725b6a77dbf57064eff5b05 +net/minecraft/network/NetHandlerPlayServer$1 06cdd4a0e2a28276539f3a031d6bddc6 +net/minecraft/network/NetHandlerPlayServer$2 f21d2defdb703b911fcb7210321accae +net/minecraft/network/NetHandlerPlayServer$SwitchEnumState ac0d5ec4e1c23dc12d79647f05b6f553 +net/minecraft/network/NetHandlerPlayServer 8a8dca1b973ec12a7672df82b8512349 +net/minecraft/network/NettyEncryptingDecoder b789a7b8d8e0d3489a977d6aeaae28f6 +net/minecraft/network/NettyEncryptingEncoder 5b7da01ba847baa5c6611545852bd550 +net/minecraft/network/NettyEncryptionTranslator 0f744b94c7f782d29f465735e9de8ab6 +net/minecraft/network/NetworkManager$1 7d6362183b4447d5aba9ec30fcabb32d +net/minecraft/network/NetworkManager$2 c6defb611f81a380d73ca1e5816d7230 +net/minecraft/network/NetworkManager$3 0f88b19c03fc1898009da862d70c6969 +net/minecraft/network/NetworkManager$InboundHandlerTuplePacketListener 034e608fcc5f0a75f0a7a99cf5551232 +net/minecraft/network/NetworkManager 7efeb15492d27e66f96b07d9d8f41a95 +net/minecraft/network/NetworkStatistics$PacketStat 1c8e60dbfb4d182cbbe58f5d9a1121b8 +net/minecraft/network/NetworkStatistics$PacketStatData 28b860a8042eb93aaca133a3ab008569 +net/minecraft/network/NetworkStatistics$Tracker f6f5470dbcc56efd6330ebed02a05732 +net/minecraft/network/NetworkStatistics ea3e7c6123143f956ae8ce7dc1f28999 +net/minecraft/network/NetworkSystem$1 1f76b00ec05ab73176d66f3d3a456643 +net/minecraft/network/NetworkSystem$2 6263df49aa96e257c650a488a8990648 +net/minecraft/network/NetworkSystem$3 4bc3779851f22c5bb9fdcf693cf4c5b2 +net/minecraft/network/NetworkSystem$4 628d9679211d3fe254a67ad25d9c16e7 +net/minecraft/network/NetworkSystem bbf4b6081c2d5e2572375b5e48ccfbbc +net/minecraft/network/Packet 58f46a8bf956e92bc13030bc82ae50c1 +net/minecraft/network/PacketBuffer 589706882d384eaf44291ec3cf5eda9c +net/minecraft/network/PingResponseHandler 5fc961c05fb0bdb11233b10ac2d21ae9 +net/minecraft/network/ServerStatusResponse$MinecraftProtocolVersionIdentifier$Serializer deafa6806e6da57a662eb19f41415f33 +net/minecraft/network/ServerStatusResponse$MinecraftProtocolVersionIdentifier dd2cbbc2475925499d42c0d4e8cecbd4 +net/minecraft/network/ServerStatusResponse$PlayerCountData$Serializer 71c13dfcfb32e07c72ead37360ed27c1 +net/minecraft/network/ServerStatusResponse$PlayerCountData 5778f65fd213ce859b2f372411e70271 +net/minecraft/network/ServerStatusResponse$Serializer e337f39ab9c89b6e890614ea28f1ae96 +net/minecraft/network/ServerStatusResponse 18b08edbd7996d8defc6d31e85c03fd8 +net/minecraft/network/handshake/INetHandlerHandshakeServer 7f6336fe29e5732b3d70433ccb750e0e +net/minecraft/network/handshake/client/C00Handshake a3b2f9eb6171ce6068ca71099d1dc5e8 +net/minecraft/network/login/INetHandlerLoginClient e12c7812dfe1f42d666dfe73458f4446 +net/minecraft/network/login/INetHandlerLoginServer 4c83b6397f438d6516f2426d54693b25 +net/minecraft/network/login/client/C00PacketLoginStart 42b411c6f66c7d057196c3ad1d3bf6d5 +net/minecraft/network/login/client/C01PacketEncryptionResponse c8353becdfa24f0bd6058d70f8f09781 +net/minecraft/network/login/server/S00PacketDisconnect bb9f1f738a866ee0ade7c1265401acf4 +net/minecraft/network/login/server/S01PacketEncryptionRequest 3680f7fe38758187f9fe124e061db360 +net/minecraft/network/login/server/S02PacketLoginSuccess 6c783a763913413772f21a2bf6bde9a4 +net/minecraft/network/play/INetHandlerPlayClient 792bb203100ed69a1eda428180b459ca +net/minecraft/network/play/INetHandlerPlayServer b4cb31563a9e7ef58a9633da343877bf +net/minecraft/network/play/client/C00PacketKeepAlive dce34a8560653bb32d20212ec567cd7d +net/minecraft/network/play/client/C01PacketChatMessage c8dac7648cac583ed4a70bd17917891a +net/minecraft/network/play/client/C02PacketUseEntity$Action 92578a7207aebbe683e3440de7fa4ec1 +net/minecraft/network/play/client/C02PacketUseEntity f6216820d0c290b14ff28ef02cec19de +net/minecraft/network/play/client/C03PacketPlayer$C04PacketPlayerPosition 6f61f3abbfa5e570c4f2dc8914d51f17 +net/minecraft/network/play/client/C03PacketPlayer$C05PacketPlayerLook 0521ce7ffe3c90ee186f7cdab34975ef +net/minecraft/network/play/client/C03PacketPlayer$C06PacketPlayerPosLook 46deec3572dfcf9f6f7cb3522ecc5b6c +net/minecraft/network/play/client/C03PacketPlayer b0f84716ff919dd11b677373092cb30c +net/minecraft/network/play/client/C07PacketPlayerDigging 1023377ebf3ec6b18ad7cdf74dd0ec83 +net/minecraft/network/play/client/C08PacketPlayerBlockPlacement dfc7e3092c7bb257ad2477cc37a794b3 +net/minecraft/network/play/client/C09PacketHeldItemChange 36eb7cb38847736b495d07af4aff53c5 +net/minecraft/network/play/client/C0APacketAnimation de0d1dbffae51700f42577130c8f61df +net/minecraft/network/play/client/C0BPacketEntityAction 1381d17b69869ddc48fd04612c869f0f +net/minecraft/network/play/client/C0CPacketInput efcaf4c3267bce7456ad52e0ebc8df2d +net/minecraft/network/play/client/C0DPacketCloseWindow 886b310b700c2b238bed1229325e7561 +net/minecraft/network/play/client/C0EPacketClickWindow 5a316aa99f2c0b37d41d37f2e3dbfdbd +net/minecraft/network/play/client/C0FPacketConfirmTransaction 92fdc886e6a4c181288e1cd65d132b8a +net/minecraft/network/play/client/C10PacketCreativeInventoryAction 02cbef8a8ecede2dd11fec24f0aca398 +net/minecraft/network/play/client/C11PacketEnchantItem 7629e0e178cfd7c89383df3898b6d06e +net/minecraft/network/play/client/C12PacketUpdateSign 655fef44c1d36ce74f31b97f868d335d +net/minecraft/network/play/client/C13PacketPlayerAbilities 994b1e764ce6c0f6cdb23cf42fa720eb +net/minecraft/network/play/client/C14PacketTabComplete 0720e218af85340c00d5632b9e3e5eb1 +net/minecraft/network/play/client/C15PacketClientSettings c38eefd102a68fb96232824b1d4ec027 +net/minecraft/network/play/client/C16PacketClientStatus$EnumState 406d577a9c61424794471fe08732cefe +net/minecraft/network/play/client/C16PacketClientStatus 4736c194d231659b0a1b1f16fe0e1ca4 +net/minecraft/network/play/client/C17PacketCustomPayload ae60f3733b040243a643ac0017491399 +net/minecraft/network/play/server/S00PacketKeepAlive 4e5af1b025218b7ebb1aedc8b0bf7a41 +net/minecraft/network/play/server/S01PacketJoinGame 9175368279846798ece7f52138781782 +net/minecraft/network/play/server/S02PacketChat af11297cc0017dc1c23d7003abd80480 +net/minecraft/network/play/server/S03PacketTimeUpdate c6d5fc0278722dec941f3b69b2e9c3ec +net/minecraft/network/play/server/S04PacketEntityEquipment a1f4ea461219ab7d0f20007de37a81d4 +net/minecraft/network/play/server/S05PacketSpawnPosition 9a542b14293b82d629e9d37ec64fe27a +net/minecraft/network/play/server/S06PacketUpdateHealth 2114b4f93a0db1cdf389ebde04d624e8 +net/minecraft/network/play/server/S07PacketRespawn fcc1e4124a047f065438de294985d26a +net/minecraft/network/play/server/S08PacketPlayerPosLook c9122b9951f92a008970ddbf6cc349f9 +net/minecraft/network/play/server/S09PacketHeldItemChange d9c5e8e90c4b3a2e78d53f5dc99e38cb +net/minecraft/network/play/server/S0APacketUseBed 648c735019033d850c7fd0875c2fd042 +net/minecraft/network/play/server/S0BPacketAnimation 6e40d0cf3ae8d88b7b73b044b865fa89 +net/minecraft/network/play/server/S0CPacketSpawnPlayer 9cc30580eaa1dc1ce8cac68d4037016f +net/minecraft/network/play/server/S0DPacketCollectItem 4d596a8daba973bc1d96ec766efb58bd +net/minecraft/network/play/server/S0EPacketSpawnObject 5f72f9e5b6e19e9d5bf4a1b0283ca74b +net/minecraft/network/play/server/S0FPacketSpawnMob cf202222985159ed34640bf79426751e +net/minecraft/network/play/server/S10PacketSpawnPainting 18ae5658f1a2780300c2bb1382cf6237 +net/minecraft/network/play/server/S11PacketSpawnExperienceOrb 4eb501b5545dfac308b7262010901c37 +net/minecraft/network/play/server/S12PacketEntityVelocity 4a6d93aa77c5d06ccc12cbde7c36329b +net/minecraft/network/play/server/S13PacketDestroyEntities b5aada825fd96071967989f20baeff1d +net/minecraft/network/play/server/S14PacketEntity$S15PacketEntityRelMove a505d4e0c7762bf2c8bf4e98a1d22681 +net/minecraft/network/play/server/S14PacketEntity$S16PacketEntityLook 56e0b55a3c34dd64d540713842cbc49e +net/minecraft/network/play/server/S14PacketEntity$S17PacketEntityLookMove feac5859667fd3330cecce77b29180a7 +net/minecraft/network/play/server/S14PacketEntity 1afeb25cb813e7ee0bcfa3c569faa54a +net/minecraft/network/play/server/S18PacketEntityTeleport d657aae6f833e221ded2c4fc1fa793e2 +net/minecraft/network/play/server/S19PacketEntityHeadLook 48372398ab71cbad7bb9baaa567a8c3a +net/minecraft/network/play/server/S19PacketEntityStatus d79a4fdc939cf9dd0c59a49495335bfb +net/minecraft/network/play/server/S1BPacketEntityAttach 26c5d168a4445106e0786dbc6eaa1e65 +net/minecraft/network/play/server/S1CPacketEntityMetadata 132a0f2ff5e648c43a699a93932c4fea +net/minecraft/network/play/server/S1DPacketEntityEffect 463fc4968cc04ab9dbe4115268ab4fc4 +net/minecraft/network/play/server/S1EPacketRemoveEntityEffect 1c59e2cfc9a9b630452287ed69a6b510 +net/minecraft/network/play/server/S1FPacketSetExperience ae725f5cf4e4575ebb0315708cb9d4f5 +net/minecraft/network/play/server/S20PacketEntityProperties$Snapshot 2bb1a0dbf5912e42b5854a261ad9ee40 +net/minecraft/network/play/server/S20PacketEntityProperties 72682068723957dfc652b6a76d3876ab +net/minecraft/network/play/server/S21PacketChunkData$Extracted 7636950e3184a29678e81020137a1e21 +net/minecraft/network/play/server/S21PacketChunkData 97aa4be4404574bf9cd2c0cd6cb5f684 +net/minecraft/network/play/server/S22PacketMultiBlockChange 0aa57c94079f2dfeb699e5af3e2fc901 +net/minecraft/network/play/server/S23PacketBlockChange 3b92285692a2ddf5152802300ec08baf +net/minecraft/network/play/server/S24PacketBlockAction 4a2039576e4e29fd36fc40d3a701dac6 +net/minecraft/network/play/server/S25PacketBlockBreakAnim 32865853059e0968885f3f0de30bc311 +net/minecraft/network/play/server/S26PacketMapChunkBulk dc6a42e58b26a9801dfb9e2bf45d0987 +net/minecraft/network/play/server/S27PacketExplosion 002a749f8f1de32d2b286d8a1d5e3172 +net/minecraft/network/play/server/S28PacketEffect ec8ff93ea6d8ffa1ea28c18b1066dc8d +net/minecraft/network/play/server/S29PacketSoundEffect 9529b86ea4b098768a963bc2488f5d2a +net/minecraft/network/play/server/S2APacketParticles 4de4c59b254fc7ecc93278acaccd7e80 +net/minecraft/network/play/server/S2BPacketChangeGameState ae378886b0fb604033c8c0f166ced0b5 +net/minecraft/network/play/server/S2CPacketSpawnGlobalEntity fc9a2f3932c87c7e4d8446c80afa8c2f +net/minecraft/network/play/server/S2DPacketOpenWindow 8662829780793c8d898b11b72202adf3 +net/minecraft/network/play/server/S2EPacketCloseWindow 01ef3987c7507a62e2dfa3d58d518eee +net/minecraft/network/play/server/S2FPacketSetSlot 69baa88a57cda96ee61bd5a212a29505 +net/minecraft/network/play/server/S30PacketWindowItems 4d1643ec88b62c75655b1d24f7f80f66 +net/minecraft/network/play/server/S31PacketWindowProperty 373329211c221824deef1ed6a798c034 +net/minecraft/network/play/server/S32PacketConfirmTransaction f5a235379403e31ca5726b975dad75b7 +net/minecraft/network/play/server/S33PacketUpdateSign f0aba493ce48fda85d72ff043fa674d5 +net/minecraft/network/play/server/S34PacketMaps 4f5d00a9c389d39a405ec643dd2aa597 +net/minecraft/network/play/server/S35PacketUpdateTileEntity 1f1b6a549927c8b95f751ea727b55f50 +net/minecraft/network/play/server/S36PacketSignEditorOpen 5588103a1ae94f82e21a8225dc05bb59 +net/minecraft/network/play/server/S37PacketStatistics ee3e60216759f5a9df67883102e67502 +net/minecraft/network/play/server/S38PacketPlayerListItem 29649bb0fcfe4fa232a5aad20e6e1a7f +net/minecraft/network/play/server/S39PacketPlayerAbilities 20a4904e047474ffcadc24b7ec23ea31 +net/minecraft/network/play/server/S3APacketTabComplete 5aa6eb02b2af6db6cc2cdce6d2a6d3a6 +net/minecraft/network/play/server/S3BPacketScoreboardObjective 8f33379c6e74affca9696a813b245381 +net/minecraft/network/play/server/S3CPacketUpdateScore 938742858ae09efb946b7b354a0ca79a +net/minecraft/network/play/server/S3DPacketDisplayScoreboard 10a29f96dc9beb5c6e8bbbae7980d519 +net/minecraft/network/play/server/S3EPacketTeams 19ee71a3b180cb793d4b78e92ce5782e +net/minecraft/network/play/server/S3FPacketCustomPayload 7762a45d173df1834729220b7548b012 +net/minecraft/network/play/server/S40PacketDisconnect 81725d4afcf79b7b50272868d4ef6ab9 +net/minecraft/network/rcon/RConConsoleSource a9df3a9eb60bbe4ca1300f8392095ade +net/minecraft/network/status/INetHandlerStatusClient 5ab57ea6d1d2176164023036f835304f +net/minecraft/network/status/INetHandlerStatusServer 84c670fdc8ebeef4918cd9cdf47fa1c5 +net/minecraft/network/status/client/C00PacketServerQuery 707c6ede8fe0c38b540005f8c6c54c99 +net/minecraft/network/status/client/C01PacketPing a8638aeb2a9c9e335068c99fea372b09 +net/minecraft/network/status/server/S00PacketServerInfo 754e6f7418dea4d4bea6e39c4ffb9b46 +net/minecraft/network/status/server/S01PacketPong 69e7b6ae034817ba2a1ff3a90d8ce84c +net/minecraft/pathfinding/Path aa6e1a88492c3f80daf70fc309598109 +net/minecraft/pathfinding/PathEntity 33d7a5220ecc886d2d5f936d61ddb296 +net/minecraft/pathfinding/PathFinder 172de91f1d8ad4a8cef8d29ecbf688b8 +net/minecraft/pathfinding/PathNavigate b0e78442a06b7393768a9b101855514b +net/minecraft/pathfinding/PathPoint 6add943fedc9d49bf61542b63793334c +net/minecraft/potion/Potion 0849c1384793bcd7b2e71e67c3fc18da +net/minecraft/potion/PotionAbsoption 634f654b32409e6ffdc1c86828b0933e +net/minecraft/potion/PotionAttackDamage fe50db4be11dd8b63cb97d8a1489cb46 +net/minecraft/potion/PotionEffect 09731ca6536f1eeebdab88e54fcbdc5a +net/minecraft/potion/PotionHealth e2d0cac7fbeee88f8f06a2ef5565b80e +net/minecraft/potion/PotionHealthBoost 441c73170d7783dd9333c507aee9920c +net/minecraft/potion/PotionHelper 3b5d5ffba87d88d14176966b353133fc +net/minecraft/profiler/IPlayerUsage c9d019a639ad8e6099c335286c1bf915 +net/minecraft/profiler/PlayerUsageSnooper$1 d315eb82f87b53f67fdf938ec5f36f5b +net/minecraft/profiler/PlayerUsageSnooper c4c51c3d4859bb1e93ed9396e59ecada +net/minecraft/profiler/Profiler$Result 16ecb861feef35b8a8aac699bb2d4b65 +net/minecraft/profiler/Profiler 7c04c236b5a111778d3d79b147a371f5 +net/minecraft/realms/DisconnectedOnlineScreen 4c9b5f638b65e7dab3c970a3a83e2588 +net/minecraft/realms/Realms df628becfc5680f23ba4ca0ade56bbef +net/minecraft/realms/RealmsAnvilLevelStorageSource 3a9bacebd458acde84993b5ece0885fd +net/minecraft/realms/RealmsBridge 5df7fb23d7e20ac3060f1909ce660348 +net/minecraft/realms/RealmsButton 4a4604ab12ae297608052780d55455b5 +net/minecraft/realms/RealmsConnect$1 de1d6ec2216818769c693e3598fde0e7 +net/minecraft/realms/RealmsConnect 7c8faed86e1fe5ac20ad06b56afa5115 +net/minecraft/realms/RealmsEditBox b5f361094b6715b9674864381614d987 +net/minecraft/realms/RealmsLevelSummary d2414c03ca6dcc8bddd217e96cd88638 +net/minecraft/realms/RealmsMth 02bbfac2930f18e0119ff577b76b6fb4 +net/minecraft/realms/RealmsScreen e3a076a3ce03b9282e6378b632a3afe9 +net/minecraft/realms/RealmsScrolledSelectionList 670bfb650b371f419895160be7cedbb1 +net/minecraft/realms/RealmsServerAddress d65dacc1e6be78fe4d008baf633f936d +net/minecraft/realms/RealmsServerStatusPinger$1 249bf7f433f4bd9ee1562179e5493034 +net/minecraft/realms/RealmsServerStatusPinger 8c2c421fa6337b6e498fe106b219d7c2 +net/minecraft/realms/RealmsSharedConstants 82714917f8111386270fc3a561e597df +net/minecraft/realms/RealmsSliderButton 553ae6df003c31819d873b32d8a4bfa5 +net/minecraft/realms/RendererUtility e914a2b4983e1730917e72ff608cf9e6 +net/minecraft/realms/ServerPing 28add2824786260313677013cc9e8d72 +net/minecraft/realms/Tezzelator ea4402df796ec6266b2d936a187f9991 +net/minecraft/scoreboard/IScoreObjectiveCriteria 5c557706c4fdab40022c8e75acef5295 +net/minecraft/scoreboard/Score$1 0dc611b93b5a60a1e08cb7307a54a82f +net/minecraft/scoreboard/Score 25eb972218a4f2d14e438ef5dfd76b2f +net/minecraft/scoreboard/Scoreboard 9b9995801608e132d563c70f9ffe209d +net/minecraft/scoreboard/ScoreboardSaveData 54a9278a1cb7753233718667a1745473 +net/minecraft/scoreboard/ScoreDummyCriteria b514d347146d2e96b291fd9cabbe187e +net/minecraft/scoreboard/ScoreHealthCriteria 994aac46d93b632e5e895c64d289bb73 +net/minecraft/scoreboard/ScoreObjective cc53c26511d214e67ef3aedb2b75bb52 +net/minecraft/scoreboard/ScorePlayerTeam a22e06be88ae3ad560f352f5c57d3d92 +net/minecraft/scoreboard/ServerScoreboard e807989d6e4c5577f0eabfdd09989531 +net/minecraft/scoreboard/Team 2782f28fa81c9f54b86450c251e213ef +net/minecraft/server/MinecraftServer$1 3606ddefe0937a0c96dd8e05bc2b7e86 +net/minecraft/server/MinecraftServer$2 b397c0f0ec6764a46352d355c5912035 +net/minecraft/server/MinecraftServer$3 1554166d3de2fcca92753a56f09ee89c +net/minecraft/server/MinecraftServer$4 fd71e007b55f9e8f2c59b5de9b341eb8 +net/minecraft/server/MinecraftServer$5 ae46ca490d0f086468723bd5a6c779ce +net/minecraft/server/MinecraftServer d40c446e4e5d037bbaca9c457e3e7c46 +net/minecraft/server/gui/IUpdatePlayerListBox 7028e8321e9389d5316b7d3dcbf384f1 +net/minecraft/server/integrated/IntegratedPlayerList 6d631644872c89b92e0249d03c201088 +net/minecraft/server/integrated/IntegratedServer$1 cf2bd47322dd5565df9874c5d4220923 +net/minecraft/server/integrated/IntegratedServer$2 4bbe47d6395b203d9330264572d4c2f6 +net/minecraft/server/integrated/IntegratedServer f74c1f669be6f4341fd56e73809c04e5 +net/minecraft/server/management/BanEntry ccdcab04f2a1f364387fe4edbee1f019 +net/minecraft/server/management/BanList ed35e2c65d812fcab8812c4b6c11b39c +net/minecraft/server/management/IPBanEntry 403c18ad5e249e151e8a5289d3609e2f +net/minecraft/server/management/ItemInWorldManager 0122df8d77bdd7309ac0926d2659c872 +net/minecraft/server/management/LowerStringMap c39cfee33a705d87fc25c8f0626f1ae2 +net/minecraft/server/management/PlayerManager$PlayerInstance 83e291328bf75c55820ac6ca789cb466 +net/minecraft/server/management/PlayerManager 898fcb970279ea52738a4bdc9637cffd +net/minecraft/server/management/PlayerPositionComparator f0dec8091a5248dffbb9b917c9cf2112 +net/minecraft/server/management/PlayerProfileCache$1 5480db1e96daca989b0116bcdbc6e6a7 +net/minecraft/server/management/PlayerProfileCache$2 4844b5fc8b86c373aaf9054fc1122881 +net/minecraft/server/management/PlayerProfileCache$ProfileEntry db73b8b135ad8b7f36d557d9d0358ed5 +net/minecraft/server/management/PlayerProfileCache$Serializer 11337c7e627d0060d704afa739270c22 +net/minecraft/server/management/PlayerProfileCache 655de772687bbf8db4e218ad68619b5b +net/minecraft/server/management/PreYggdrasilConverter$1 26e7cd8a3d88d300dc9f7b012fb85820 +net/minecraft/server/management/PreYggdrasilConverter$2 43646e8582f42fb9e753c115d434bae8 +net/minecraft/server/management/PreYggdrasilConverter 029aa9454e55204eeae0eb22b1d3e5f0 +net/minecraft/server/management/ServerConfigurationManager a8e4c52d2236a8e494220fddb1807d51 +net/minecraft/server/management/UserList$1 a4b933b97e4593f64380f3c71c52077c +net/minecraft/server/management/UserList$Serializer 0ca9d547c3e3d1714b951719679325f7 +net/minecraft/server/management/UserList 1b45416d5a94430dcf892d178ecc0a20 +net/minecraft/server/management/UserListBans 31a5e56bc3dd2a73c7b6a024afaf0efc +net/minecraft/server/management/UserListBansEntry fd239a9fd091b3c991e4a70d22dc825d +net/minecraft/server/management/UserListEntry d24f5d08677cfad1830f3755aa39b24c +net/minecraft/server/management/UserListOps 5082016612ef8cd25e8331f1cb733e5c +net/minecraft/server/management/UserListOpsEntry 90a6642239808153b84caf728b3bb3c0 +net/minecraft/server/management/UserListWhitelist 5aa5b3bb8c7d4e2935c89b18a58fe4ce +net/minecraft/server/management/UserListWhitelistEntry ec18a2185414be5c9fcb26cda4189a0e +net/minecraft/server/network/NetHandlerHandshakeTCP$SwitchEnumConnectionState c16ef9883925cc70c252c47286f07284 +net/minecraft/server/network/NetHandlerHandshakeTCP feec3767605686504227a7866d292e26 +net/minecraft/server/network/NetHandlerLoginServer$1 9142118563f79c26f788cebf1a802279 +net/minecraft/server/network/NetHandlerLoginServer$LoginState 7b3ab035cfde28f3a7265191e297e16c +net/minecraft/server/network/NetHandlerLoginServer bdeacc43cb9262660f6e3c6715895ecb +net/minecraft/server/network/NetHandlerStatusServer bb5cbdbbec2bee634236a7efb28f381f +net/minecraft/src/BlockUtils 3535a975e93e9deb869b1d3939710199 +net/minecraft/src/CompactArrayList da6389abf199da00a1486d45b735bd23 +net/minecraft/src/Config$1 2d92ebb9e5f89292ce496dcf3b962e8c +net/minecraft/src/Config 98653933b41e2583de6c986719d4345b +net/minecraft/src/ConnectedProperties 8956ddd1092d4f66241c37b7d24e12d1 +net/minecraft/src/ConnectedTextures 0a4fecc851f5a9fd6e7fdfd2e96f8a66 +net/minecraft/src/CustomAnimationFrame 958dd08e526ebb1f476db632be6ff98d +net/minecraft/src/CustomColorizer 55880543851d928b6eb146b5de0b5114 +net/minecraft/src/CustomSky 50dde9557f13756b6b9ecf6bcf81abae +net/minecraft/src/CustomSkyLayer f987b235fd2f47c973e7979d7f96073d +net/minecraft/src/EntitySorterFast c4b1e0490375430a8546fe245f03e749 +net/minecraft/src/EntityUtils d6bd1ca33a682896e7294766b65ca19e +net/minecraft/src/GuiAnimationSettingsOF 104d2c7e125635e1eae699b81f01fdcb +net/minecraft/src/GuiDetailSettingsOF 54fe8145fa07a8b53354ce930d5cf840 +net/minecraft/src/GuiOtherSettingsOF c9d71d761441b69fa7661a346114f103 +net/minecraft/src/GuiPerformanceSettingsOF f30f021d5a50f67e70785fa1e9f04154 +net/minecraft/src/GuiQualitySettingsOF 2f6a200c94fa3a264f9572fd1a674cf2 +net/minecraft/src/ItemRendererOF c5836978f4cdc2cf13fe69cb166b6d89 +net/minecraft/src/IWrUpdateControl b430cc18f78f013ec07adbb41ec22f87 +net/minecraft/src/IWrUpdateListener de71750674769c498a608b1977efa9fd +net/minecraft/src/IWrUpdater d8707eff8ee0dd017f562a866c6c0362 +net/minecraft/src/Mipmaps 474b087e4eb6e031fd4a76921fa9467f +net/minecraft/src/NaturalProperties e97aa0b8916ef97e5105c24a0a46f6b0 +net/minecraft/src/NaturalTextures 56edf664df3118fbdbfd6d36a23d6bf0 +net/minecraft/src/NextTickHashSet 6794fd025f400a45f8c69cd29ad201e9 +net/minecraft/src/RandomMobs 826d27a2f70c1029c6a8549caa8445a8 +net/minecraft/src/Reflector 1f1b1887311b1356b589d34de36a152f +net/minecraft/src/ReflectorClass 4df81101b19447b417bc27c68de78c08 +net/minecraft/src/ReflectorConstructor 21287658fd5dc8b21f19610c1f139d8d +net/minecraft/src/ReflectorField 6168026b81596a3fb4a61c0ae16682e2 +net/minecraft/src/ReflectorMethod bdd79823a9964063a20fce6f73f9eeaa +net/minecraft/src/ResourceUtils 6bc4a70a0e28c99e00fc13cf0ee83068 +net/minecraft/src/TextureAnimation cd0605b955730a8c672a2fde4536a598 +net/minecraft/src/TextureAnimations a9ab61a9648ac25e06275b44ba079789 +net/minecraft/src/TextureUtils$1 39a9b8c6e0bdb6b1868118f937b6f7cd +net/minecraft/src/TextureUtils$2 7f7aa1fe3c5f5bd2d7ce6d6f94fd2c74 +net/minecraft/src/TextureUtils a03c84415c8453dd3f9fe58d03607cff +net/minecraft/src/VersionCheckThread f309455eb3de8b039153600e9bb647e3 +net/minecraft/src/VertexData 0a00c149ecefa6ee53e757c226036e0b +net/minecraft/src/WorldRendererSmooth 058b4ba2983185113be80ee21bd4096d +net/minecraft/src/WorldRendererThreaded 5bcb1f5ba3c5049dce96918ef602879d +net/minecraft/src/WorldServerMultiOF 7ce20ee1368422af0b58146757225391 +net/minecraft/src/WorldServerOF a01e0829591f39ea5136fcef9e020754 +net/minecraft/src/WrDisplayListAllocator f153504b9578b4c123fedce9ac38449e +net/minecraft/src/WrDisplayListBlock ec21a8eb22becf8c8a8a8ff62880538e +net/minecraft/src/WrUpdateControl c0a2da11522a74f0aefbe894d640c953 +net/minecraft/src/WrUpdaterSmooth 2afc2a0b308ba5234727d939263880b2 +net/minecraft/src/WrUpdaterThreaded 088a6d6fcbd343dbb3ab8778f9cfd019 +net/minecraft/src/WrUpdates ed9f2b050a1b0366932aff691da6cbaf +net/minecraft/src/WrUpdateState 920e4df30866e4ba43cd51abe0b49eb5 +net/minecraft/src/WrUpdateThread$NamelessClass1585710720 c48050bed287bb67918c63b736677463 +net/minecraft/src/WrUpdateThread$ThreadUpdateControl 904905fdbfddb2ecb6a6414ca0698f8d +net/minecraft/src/WrUpdateThread$ThreadUpdateListener bed652a45a19cbdab8ed370496e7ded1 +net/minecraft/src/WrUpdateThread 8d8746d72aa1e18e6ea17245614cec00 +net/minecraft/stats/Achievement 773c469222974929019e9405de0948d7 +net/minecraft/stats/AchievementList ed1035b8e65cd6e3cfcb3846e7ce2df7 +net/minecraft/stats/IStatStringFormat a77795871ea0028997590f6e313fddc9 +net/minecraft/stats/IStatType 0c835b03b069f7c91345113d3e87471d +net/minecraft/stats/ObjectiveStat 30a4f3f6a7f785a63126194774f563e7 +net/minecraft/stats/StatBase$1 e413110ed270c64913125b46b9421cd9 +net/minecraft/stats/StatBase$2 ffefa5579b65366ce4edcc2bbebd4ee5 +net/minecraft/stats/StatBase$3 bce460eca440f7f26cef5d2c271d19cf +net/minecraft/stats/StatBase$4 d306586eb6ea89d930744bdec411e139 +net/minecraft/stats/StatBase c82917c0e7e2077f53faaf96a9b8e84a +net/minecraft/stats/StatBasic ccdcf34603e03b025990bcf348f26439 +net/minecraft/stats/StatCrafting 71594d631a99856c795ed7725385b647 +net/minecraft/stats/StatFileWriter a7b19ac96f309417c63f05195fb85cc8 +net/minecraft/stats/StatisticsFile 8451219462ba22e3e94b893a698c6c7c +net/minecraft/stats/StatList fa2a2d6e67472a080bdec8f177e5febc +net/minecraft/tileentity/IHopper 2b57922169d989f5ba32b9e7b2c28534 +net/minecraft/tileentity/MobSpawnerBaseLogic$WeightedRandomMinecart 3c96ae8c2cb8dfb0a1f583b4089e52f9 +net/minecraft/tileentity/MobSpawnerBaseLogic 4244604d1dd697e670b36d1e159c4ae4 +net/minecraft/tileentity/TileEntity$1 222156288c4f95e116410ebbbfeaca83 +net/minecraft/tileentity/TileEntity$2 67f09f74230a25e3ff3efa9691937500 +net/minecraft/tileentity/TileEntity$3 fc6a3e3f9d114ca69bad4cb0ea09cd76 +net/minecraft/tileentity/TileEntity 8d611482707d07885e9d6ef7fcdb7630 +net/minecraft/tileentity/TileEntityBeacon ee06297e4ace615ccaf613941500ff38 +net/minecraft/tileentity/TileEntityBrewingStand 3a62a4548e7c77953919a907d78a98bb +net/minecraft/tileentity/TileEntityChest ea119d5daad6dc1a3deaa2b6d18151f9 +net/minecraft/tileentity/TileEntityCommandBlock$1 9c4d57f10ae2511aa684d5c43c065e6c +net/minecraft/tileentity/TileEntityCommandBlock 47fc3e77a0061535e202f0ea45430c6c +net/minecraft/tileentity/TileEntityComparator 1aa33d85adf477505c6fa06c9cce5423 +net/minecraft/tileentity/TileEntityDaylightDetector 701adaa3b14595eddd5d299347b240da +net/minecraft/tileentity/TileEntityDispenser 3c8bd1762782dac3c05de1cf4c2aeedf +net/minecraft/tileentity/TileEntityDropper 43f9514ef898b49e707cece5cb1a17a2 +net/minecraft/tileentity/TileEntityEnchantmentTable 10cf9a555ec2eb84608641f761c44201 +net/minecraft/tileentity/TileEntityEnderChest 867fe9befc2c9e77d14fd70b0956e51d +net/minecraft/tileentity/TileEntityEndPortal 40272757f7c0ea7f3208960b8a87aee0 +net/minecraft/tileentity/TileEntityFlowerPot 63d2fe9c908a9c86304feb9816adcadd +net/minecraft/tileentity/TileEntityFurnace 949e22e4ffb505cb57298d49b430e212 +net/minecraft/tileentity/TileEntityHopper 2b0926ea08fddfad8d5abee78a7552e2 +net/minecraft/tileentity/TileEntityMobSpawner$1 ba90d3869e3b5b6ebd2f3e88e48fc0db +net/minecraft/tileentity/TileEntityMobSpawner 7eed9c8011f919f915c6baab5bb78bbd +net/minecraft/tileentity/TileEntityNote 0323514c09f19cd8a6ab3039c51ec0d1 +net/minecraft/tileentity/TileEntityPiston 8b271f328184bf5ede22d58276ad09a5 +net/minecraft/tileentity/TileEntitySign fc5ee388ab81276c90928137678f97f8 +net/minecraft/tileentity/TileEntitySkull 966fabe5910f5110ae1c8296ed8942b7 +net/minecraft/util/AxisAlignedBB 6ed08f826f5424bbc9eb18bad1bb14ef +net/minecraft/util/ChatAllowedCharacters b8167d981f558858d4699f7a5685f6d3 +net/minecraft/util/ChatComponentStyle$1 1dab957cc1fc3d9f24cfd2cc1dd2596c +net/minecraft/util/ChatComponentStyle$2 5632674dc8dbed9a6e916b5499e08345 +net/minecraft/util/ChatComponentStyle 9bcec000e8509bdbd4b52bad1611a23e +net/minecraft/util/ChatComponentText 7b1c63f36ff1f24a15b447f98ed94dae +net/minecraft/util/ChatComponentTranslation ca112acb8a3c2134311cf97ca7f11d00 +net/minecraft/util/ChatComponentTranslationFormatException 9cfc3dc8b5f1d48c1ae61397d9a4582a +net/minecraft/util/ChatStyle$1 ab6073db218420cf8571bdf65281f9d0 +net/minecraft/util/ChatStyle$Serializer 681765c0f108f63d2b15cecd4e96c2f2 +net/minecraft/util/ChatStyle 3b065c296532aac4fccf98a4847960a9 +net/minecraft/util/ChunkCoordinates 58e9172eb63b27b6c5ab978d0f042a77 +net/minecraft/util/CombatEntry f79fb7897690c1dece2cfaccac8ef90a +net/minecraft/util/CombatTracker a7dcfa009a240cbd1878de3c690eb620 +net/minecraft/util/CryptManager f9d7fd86e8f870604f180fa8a10b4b65 +net/minecraft/util/DamageSource 61f4c0661f8dfcfd6901c15f6fdf23bf +net/minecraft/util/Direction 7af87e8499828c564e72149222e4d772 +net/minecraft/util/EnchantmentNameParts 5cb924bcc4faf94b21ef987c625f5e98 +net/minecraft/util/EntityDamageSource cb00391a9b101b072f1825dc6a46bb37 +net/minecraft/util/EntityDamageSourceIndirect 304dc30dc77a996734e874ff61ad068e +net/minecraft/util/EnumChatFormatting 507b4e67ebc65882d8f8b7dc93ec5957 +net/minecraft/util/EnumFacing 6cd3533ff68f410f2e815d1cfdcf2b7f +net/minecraft/util/EnumTypeAdapterFactory$1 8bf1015ec3b9e51bb2dd32c5dfa7f3e7 +net/minecraft/util/EnumTypeAdapterFactory 4f95217d74d46efb50481a9843a10fe2 +net/minecraft/util/Facing 0c5f8f99e51cb4443cca274111e575ad +net/minecraft/util/FoodStats 2e88c138bf1b0e1472612265d1607416 +net/minecraft/util/HttpUtil$1 bdb255c27fcffeecbf8fe74e0189e334 +net/minecraft/util/HttpUtil$DownloadListener 43d85f815fb11f58a5558df809d44215 +net/minecraft/util/HttpUtil 88873c2b6b44455d463a6508ec2de2bc +net/minecraft/util/IChatComponent$Serializer d17f663a507b48e2b749668fd13f7884 +net/minecraft/util/IChatComponent f425e901ef03db72cd30b9b4f9346a4a +net/minecraft/util/IIcon 1c588cb9dcf40f6c03f6ff35c79582f2 +net/minecraft/util/IJsonSerializable 7e3fe58de3fbf9ba9ea268249de0065c +net/minecraft/util/IntHashMap$Entry cf238fec3281ac8ea7f55e68c4094f9c +net/minecraft/util/IntHashMap 623ef8d5521584008bd8e6ab58b9ad70 +net/minecraft/util/IObjectIntIterable 2c873eefe57263f6275526bce62d7fba +net/minecraft/util/IProgressUpdate 4f60fdd389cbaa983fdb156015cef361 +net/minecraft/util/IRegistry 6f8c12e6660ec37113a1dc7fc55c38a0 +net/minecraft/util/JsonSerializableSet 21ace459a24a87534de0c7e79435eeed +net/minecraft/util/JsonUtils 1f80eefdc0251fc95878c7f0b07ab9bd +net/minecraft/util/LongHashMap$Entry db94ea44d64ecc58bde43b025c0f78ba +net/minecraft/util/LongHashMap 514e8f7468c832d0d224a20d18e29dc9 +net/minecraft/util/MathHelper 3174b7cd43f2d778cb3e6ed8a3cc0803 +net/minecraft/util/MessageDeserializer 9aa388f99c05748136570c44f952c646 +net/minecraft/util/MessageDeserializer2 f4741d239e2af9db1b609f2ad5b55425 +net/minecraft/util/MessageSerializer c64ca8997057253d3d5bb9de127b59e3 +net/minecraft/util/MessageSerializer2 5edc92beb27007c5cb5947d9695406b5 +net/minecraft/util/MinecraftError 289bdb4edb4cb2b5001b2a7e2b997e2e +net/minecraft/util/MouseFilter fabfeb824535e9987111d8f31c0d1b3b +net/minecraft/util/MouseHelper 4d8c8407d2249d615206f54412ea036b +net/minecraft/util/MovementInput ab0101e8150e7e4f3ca92ae57b4813c9 +net/minecraft/util/MovementInputFromOptions d27c45ae31ba104c6eaa47bd78850354 +net/minecraft/util/MovingObjectPosition$MovingObjectType 2d682e186da8dc5a96a0b428d634a843 +net/minecraft/util/MovingObjectPosition 97cf1cc7374b1e1878dc7f6465a944fb +net/minecraft/util/ObjectIntIdentityMap d47b265e2ae82ed01dc047885471c583 +net/minecraft/util/RegistryDefaulted 33080c93da9260867323394fc732fb9b +net/minecraft/util/RegistryNamespaced 0e8694b55cc5dcb2994fd75aebdcdb3a +net/minecraft/util/RegistryNamespacedDefaultedByKey 2a9fe3e343292cd42e981d0be49b8170 +net/minecraft/util/RegistrySimple b27736ccfd4b0be6ac202cae3522a429 +net/minecraft/util/ReportedException 20f40566e8ac747202d918c5b3bb31d9 +net/minecraft/util/ResourceLocation 8d82143498dc5be13ba1d17b5a5e00ef +net/minecraft/util/ScreenShotHelper 54dd49306b66aef0db3cfae34139da7f +net/minecraft/util/Session$Type 66af1f883f3da88d113cce4b2b3eca6a +net/minecraft/util/Session e090ccfbe121d855a24bb21ef9465b74 +net/minecraft/util/StatCollector 409017c58e76dc66190b8f4f9b72cab3 +net/minecraft/util/StringTranslate 754dc084cfcc01190d9f6941f8012058 +net/minecraft/util/StringUtils f71f4248d6d49147b92f215fad428c0d +net/minecraft/util/ThreadSafeBoundList 560d9b06667591c3dedac871fac253de +net/minecraft/util/Timer bf4ddb8688439d535541e56fe32cdb2f +net/minecraft/util/Tuple 0e94ef343c52f3803159d3cc7a95ac39 +net/minecraft/util/TupleIntJsonSerializable 3a4bd1d67c1cd4d54a1c7101421bcf72 +net/minecraft/util/Util$EnumOS 4801abe42f185351b5fed8aa4d6fcc66 +net/minecraft/util/Util 9486d45627474d7c004e3648d7ae4fd9 +net/minecraft/util/Vec3 a6516ca3a2e76e9342789f8e3f961a85 +net/minecraft/util/WeightedRandom$Item 7fb39669a3a54f7aabdcb838cf7acfab +net/minecraft/util/WeightedRandom f4d1b5994827eaab25960f7f2ee17eed +net/minecraft/util/WeightedRandomChestContent c5b76d8305bca4e59afcfe293f4821f6 +net/minecraft/util/WeightedRandomFishable 987252c60da788c23c593ffde07841f2 +net/minecraft/village/MerchantRecipe fa9f8dacc8faf0a9f418d4441c21e037 +net/minecraft/village/MerchantRecipeList 5c3e120fae141da676aaa3ce3cdf3051 +net/minecraft/village/Village$VillageAgressor d79dd0c9a6cb88f2b8e93cc3da1651ee +net/minecraft/village/Village 3ad4ef74c59112bec04812a2ce2f6a54 +net/minecraft/village/VillageCollection 13df5801221999930e2421890b68fefa +net/minecraft/village/VillageDoorInfo 5fb84ec42da1a22a8099d0e3bf41432a +net/minecraft/village/VillageSiege 8cce1d35c5ab80f84cc8dec882fb7aff +net/minecraft/world/ChunkCache c67efcb41d6c530f681b9d191d410dd7 +net/minecraft/world/ChunkCoordIntPair 14f67b08c9410130413ca60ee16f26fc +net/minecraft/world/ChunkPosition 77315903b6820763275318100b768561 +net/minecraft/world/ColorizerFoliage e345edd984c52cc98eb22137e7904aff +net/minecraft/world/ColorizerGrass 80eeba899c955700e6ff8275addb7224 +net/minecraft/world/EnumDifficulty de7c84e3c23dce352a9410bc69baabf8 +net/minecraft/world/EnumSkyBlock f080ee00d75d50ce9ea9f83036ff5aba +net/minecraft/world/Explosion be6faed689f17158b986f77695c0119b +net/minecraft/world/GameRules$Value 921654bc56b822c87c2dcb5437f141e3 +net/minecraft/world/GameRules 679b5c277e52c56784e80790d572c89d +net/minecraft/world/IBlockAccess f7407918246a3080faffb8dbb3d4f46e +net/minecraft/world/IWorldAccess 116310aaf04c66f2df7903b43dab4f0c +net/minecraft/world/MinecraftException a69fb8886b748c2c88c4a8ff56bff776 +net/minecraft/world/NextTickListEntry 90f9bd478a4b838c8281a2ae4e47287f +net/minecraft/world/SpawnerAnimals a196ff6c5f1394a1feb2bca57ba32985 +net/minecraft/world/Teleporter$PortalPosition c5a115a77779b92fbb87a4ba31cfc1aa +net/minecraft/world/Teleporter ec2014acbedbf6daa31ca6eb5941d5fa +net/minecraft/world/World$1 5803e281494bbfc902095c8d13d507e1 +net/minecraft/world/World$2 282e9a6fd9a5f80b6931342c99b39d22 +net/minecraft/world/World$3 c54cecbe40f41e041acc31612d1609b9 +net/minecraft/world/World$4 a0768eef7177e4aa08c5f9ec38ee9198 +net/minecraft/world/World 2f9369ef8ed59f9f49c354f841ffc38a +net/minecraft/world/WorldManager 3eb034ddc8a327e928cb1d51a6c50c15 +net/minecraft/world/WorldProvider 63dc55bcb4edfa68bcb3844487537242 +net/minecraft/world/WorldProviderEnd ddfc8955bf8ead319b41dcf55adb2389 +net/minecraft/world/WorldProviderHell 3b9b0e90b915956f6f637c396f34ff5f +net/minecraft/world/WorldProviderSurface b894fffb3e9600a193585bc387f9255c +net/minecraft/world/WorldSavedData 1cb94da8f9d3725a2b572a3beaac1d6a +net/minecraft/world/WorldServer$ServerBlockEventList c5249f6c88a606338ee521376efe46ed +net/minecraft/world/WorldServer e33b6818704e5cc575d018b2deb32419 +net/minecraft/world/WorldServerMulti c866b69222ae620d366216beed103779 +net/minecraft/world/WorldSettings$GameType e87cce922913f4ae3883b536c7ae4815 +net/minecraft/world/WorldSettings 13e73825b63f6c673f12d99ebf99dc7b +net/minecraft/world/WorldType ff693ed5eb1ccbf7b051934412136097 +net/minecraft/world/biome/BiomeCache$Block af1b8dff7c6a9e28f1c08165041f842a +net/minecraft/world/biome/BiomeCache 2bda1f895149d361b4af09042241a64d +net/minecraft/world/biome/BiomeDecorator 6f69127180a25d39ffff710814812563 +net/minecraft/world/biome/BiomeEndDecorator 244e3435b42ae8f703171691583ef8e6 +net/minecraft/world/biome/BiomeGenBase$Height 9f94a17912fb6f7848f217ba5c59b46e +net/minecraft/world/biome/BiomeGenBase$SpawnListEntry f49cd4a632fed343dcf30792d12adf66 +net/minecraft/world/biome/BiomeGenBase$TempCategory f89f0a7d525ff8db88e3331236e8ebd8 +net/minecraft/world/biome/BiomeGenBase 41af79f39a3b113a02e846bb9cbc44bf +net/minecraft/world/biome/BiomeGenBeach 0265411b1a4d752d8f449b55a73cb5d2 +net/minecraft/world/biome/BiomeGenDesert a796222631661df639fd64d0a1be2c82 +net/minecraft/world/biome/BiomeGenEnd fd22d790e1c4e072acb33d6cb3ebca40 +net/minecraft/world/biome/BiomeGenForest$1 75183c6324ec6a491ba7f40dbc3ecb79 +net/minecraft/world/biome/BiomeGenForest$2 456de56ff04cbf8fd60377496213df03 +net/minecraft/world/biome/BiomeGenForest 856646fe02187727456127e8d9e6dab7 +net/minecraft/world/biome/BiomeGenHell d17b5da95bc4c07335ecfc95762c6860 +net/minecraft/world/biome/BiomeGenHills 6fe3dd8f7f2d7927e6be8f0186c00ebd +net/minecraft/world/biome/BiomeGenJungle 09fd186b5c25a84d73368be611c985eb +net/minecraft/world/biome/BiomeGenMesa 79a73356c558b8453cadf357bf2ede97 +net/minecraft/world/biome/BiomeGenMushroomIsland f3b113741bc9307caa6727e6908eafa2 +net/minecraft/world/biome/BiomeGenMutated 6fc5fff60c6597d8aa14f26291b8477e +net/minecraft/world/biome/BiomeGenOcean a234ca6f0e17445ecf4993d02af81814 +net/minecraft/world/biome/BiomeGenPlains 4eebbacb9361304016d62e530c61d624 +net/minecraft/world/biome/BiomeGenRiver 5b642ed5398b7fad558f2f994881cded +net/minecraft/world/biome/BiomeGenSavanna$Mutated 63a6c95ebbd3dae7e6e76d7a73c7fc95 +net/minecraft/world/biome/BiomeGenSavanna 9ac9d1773415ed6683b77db2bf66692b +net/minecraft/world/biome/BiomeGenSnow 6dc2f6f49eb4c37a0325f0c689b5e4ef +net/minecraft/world/biome/BiomeGenStoneBeach d9d50528677b9c81c606e082f55a19fe +net/minecraft/world/biome/BiomeGenSwamp da1da3a27fd05b2dcb9bcadf138e09c4 +net/minecraft/world/biome/BiomeGenTaiga 6bfa96ee8282b8108bd2932b67c9678d +net/minecraft/world/biome/WorldChunkManager 5e97b090dbe48589e3a8bf9d802bc59b +net/minecraft/world/biome/WorldChunkManagerHell 2008428f341f1b5726e03936d342a9c4 +net/minecraft/world/chunk/Chunk$1 0f3c6cc4c820001be2fd43be7f510183 +net/minecraft/world/chunk/Chunk 627ad6fc070f7e780579facffa3f7368 +net/minecraft/world/chunk/EmptyChunk 280c8dca0e2e1f8296baee7df4130a37 +net/minecraft/world/chunk/IChunkProvider 9cda452382752a25f0a31a810afa4d9b +net/minecraft/world/chunk/NibbleArray 62aa2e0e3668772bcb6258ec82bba258 +net/minecraft/world/chunk/storage/AnvilChunkLoader$PendingChunk c9e387734f6c6436e349a0807b7720ca +net/minecraft/world/chunk/storage/AnvilChunkLoader acd2e8296445ca9306d6829534be1cae +net/minecraft/world/chunk/storage/AnvilSaveConverter$1 20e94e53536417851324c3d0cb7d831b +net/minecraft/world/chunk/storage/AnvilSaveConverter cec88fbdacb35e563bddac7e452afcfa +net/minecraft/world/chunk/storage/AnvilSaveHandler bc525f78988a60e228b6aea2bb630380 +net/minecraft/world/chunk/storage/ChunkLoader$AnvilConverterData 5629676b255ee8b94806187300a1d266 +net/minecraft/world/chunk/storage/ChunkLoader cfae473385deb0475fcf1c534ffe5935 +net/minecraft/world/chunk/storage/ExtendedBlockStorage daeb4d845447f85700714b1912799a7b +net/minecraft/world/chunk/storage/IChunkLoader 976bcb11bcdffcb3183b85b90dd8a76c +net/minecraft/world/chunk/storage/NibbleArrayReader bfde50214ba275a18effd5e2ce740002 +net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer 74e4b2ff99cc49d49888d8bbd126e863 +net/minecraft/world/chunk/storage/RegionFile 8e44b63570d45f665def7a2cb58c3e6b +net/minecraft/world/chunk/storage/RegionFileCache 543d9ad24532b9dc3ec7b0fba1b90a93 +net/minecraft/world/demo/DemoWorldManager 70319f20fe404be270570d2766e3d407 +net/minecraft/world/demo/DemoWorldServer f3ec2549749d714e09da6b7d6e8f8d5e +net/minecraft/world/gen/ChunkProviderEnd 76069b7e1850e9cac29c817ba40d9b70 +net/minecraft/world/gen/ChunkProviderFlat 0731363b3189d70e784fd7ecb4f36e7b +net/minecraft/world/gen/ChunkProviderGenerate 9facd7fa200a633a8f0e57bda923b3aa +net/minecraft/world/gen/ChunkProviderHell 4b41f0f77d446431d56c5bd730e19b5e +net/minecraft/world/gen/ChunkProviderServer c402f377f0587c0125f2fe6a7aebdcf8 +net/minecraft/world/gen/FlatGeneratorInfo fdb224ecccc46494d404c204b88b147c +net/minecraft/world/gen/FlatLayerInfo 45c0183f84515ca71e576425ace119ac +net/minecraft/world/gen/MapGenBase 8c6c134e12c4fa6ec25f9d33e9812198 +net/minecraft/world/gen/MapGenCaves 15485dccd4201f31f87b548ac4495a4c +net/minecraft/world/gen/MapGenCavesHell ef4ac2b7ed9f77cecadf1214d8f76e32 +net/minecraft/world/gen/MapGenRavine 5a4fe2fd5da6ce9cc86a26f8cd063ca2 +net/minecraft/world/gen/NoiseGenerator bb924feeab8bac68428f1956d7be970c +net/minecraft/world/gen/NoiseGeneratorImproved 9a613ece29b98f8b81438aca283d9ad6 +net/minecraft/world/gen/NoiseGeneratorOctaves a4e1f8738bdecc26671125d2b1d1694d +net/minecraft/world/gen/NoiseGeneratorPerlin 1d8b7308f1c59faf8b8155b42f9b7f83 +net/minecraft/world/gen/NoiseGeneratorSimplex 3f6cf9006fd126048f7938d2d5a47cb6 +net/minecraft/world/gen/feature/WorldGenAbstractTree 0fadeb51f41738de958605a9121284ed +net/minecraft/world/gen/feature/WorldGenBigMushroom 12e0f0c34d58cb7a03fcaf0e9ee8b362 +net/minecraft/world/gen/feature/WorldGenBigTree 8ffdaa64860964bf9cf462ef85f6dcfc +net/minecraft/world/gen/feature/WorldGenBlockBlob 1cfeb31268029ef2400c6d12ad6e90fe +net/minecraft/world/gen/feature/WorldGenCactus 6a55fe8640f0be879d2af18ca77fb342 +net/minecraft/world/gen/feature/WorldGenCanopyTree a6b29b4eb72223540e361cbc441cb7b0 +net/minecraft/world/gen/feature/WorldGenClay 8c92a50c65939bfa1c0b28bd00d9f7e5 +net/minecraft/world/gen/feature/WorldGenDeadBush 62358777f911e7b436b460a41e0d4e13 +net/minecraft/world/gen/feature/WorldGenDesertWells cb9eedf3717149f7a26fbbc0e38b7836 +net/minecraft/world/gen/feature/WorldGenDoublePlant be5329593bd0cb75c29042efbb911b91 +net/minecraft/world/gen/feature/WorldGenDungeons 303de16259d86978b5a6156c2b6ca8ed +net/minecraft/world/gen/feature/WorldGenerator 6a605f506db39c1d93e5a6e9803675a3 +net/minecraft/world/gen/feature/WorldGeneratorBonusChest 3c899724519b1157d30c39b5ec5e4732 +net/minecraft/world/gen/feature/WorldGenFire 3299d493e5c6e6de56b099edfb436d0e +net/minecraft/world/gen/feature/WorldGenFlowers 7fccbe86046b2e30be048ef0b6abc9a0 +net/minecraft/world/gen/feature/WorldGenForest 29b47dac064f0951177ea723f15f09d0 +net/minecraft/world/gen/feature/WorldGenGlowStone1 2e3bdc8e80aa63c2ddea767c4375141d +net/minecraft/world/gen/feature/WorldGenGlowStone2 3c02a35a20769290a479de6580c444ff +net/minecraft/world/gen/feature/WorldGenHellLava eb30014897e701f8ee8570e29a1af2a0 +net/minecraft/world/gen/feature/WorldGenHugeTrees 99d1981fccd42fbf4a850d91947d3821 +net/minecraft/world/gen/feature/WorldGenIcePath 390f1b4c532b2006fc88988bbd042dcf +net/minecraft/world/gen/feature/WorldGenIceSpike 0492ba36d4afa572db89eb5ad2abe2f8 +net/minecraft/world/gen/feature/WorldGenLakes 5cc79485db013a779cdc17fab36c0f26 +net/minecraft/world/gen/feature/WorldGenLiquids c6150ef77557f74a2fa4571a5ddfb7d2 +net/minecraft/world/gen/feature/WorldGenMegaJungle bef75421d54cb50f4265661b8a093244 +net/minecraft/world/gen/feature/WorldGenMegaPineTree 59c0e894f11dd3d96678053e9e284a51 +net/minecraft/world/gen/feature/WorldGenMelon 08c06e3c01a125722cea38c390ba150f +net/minecraft/world/gen/feature/WorldGenMinable 4b6f34d43056069adc7d4dde936eed5a +net/minecraft/world/gen/feature/WorldGenPumpkin 31c3022b6add697bc78d0be1902ca36e +net/minecraft/world/gen/feature/WorldGenReed a2fcc70ac6ab9d73e68eaadc4c500010 +net/minecraft/world/gen/feature/WorldGenSand 203fd956141bbb390921b084a204bb1f +net/minecraft/world/gen/feature/WorldGenSavannaTree 357c44e2754ae5bccc179dfd87728903 +net/minecraft/world/gen/feature/WorldGenShrub 0cf47483c2d3941ef4abb51c69915831 +net/minecraft/world/gen/feature/WorldGenSpikes 909097cdbfcbf06059b78543885ae003 +net/minecraft/world/gen/feature/WorldGenSwamp 7980b0d055a2702c16f961daa8fc29e8 +net/minecraft/world/gen/feature/WorldGenTaiga1 330cc3eb85475fcf8ce0d3b247b2f1f9 +net/minecraft/world/gen/feature/WorldGenTaiga2 06609e2dd742369cd3f0b0725e690e52 +net/minecraft/world/gen/feature/WorldGenTallGrass e13ab287ec89f59d1a27a8155d92aff1 +net/minecraft/world/gen/feature/WorldGenTrees 141e4def28404cccd89f6e5d3670d73d +net/minecraft/world/gen/feature/WorldGenVines e6eddc94072fd4f3d998e575ce934f55 +net/minecraft/world/gen/feature/WorldGenWaterlily 9c124c67721d5cb950bbfa116c55e470 +net/minecraft/world/gen/layer/GenLayer$1 550d4abe8471fd76714599deac066a78 +net/minecraft/world/gen/layer/GenLayer$2 ac54b6004427c235384723d83de4fe54 +net/minecraft/world/gen/layer/GenLayer 4752f4580bc9927751071fa7a3b5aeeb +net/minecraft/world/gen/layer/GenLayerAddIsland 9d245b0476e0d0f783de6b2e30ee409e +net/minecraft/world/gen/layer/GenLayerAddMushroomIsland 5d29b837f58b60ecf425df701fe3092f +net/minecraft/world/gen/layer/GenLayerAddSnow 387414f8a2001d76a5be1279470647cf +net/minecraft/world/gen/layer/GenLayerBiome 00dc6539efdb554090779bcda3e9d121 +net/minecraft/world/gen/layer/GenLayerBiomeEdge 228794693e4031d287fc5af03cd831a5 +net/minecraft/world/gen/layer/GenLayerDeepOcean 42be50de321d3e1f8820e924dbc831eb +net/minecraft/world/gen/layer/GenLayerEdge$Mode 55980e4c7309987ff6ba14a2824424cb +net/minecraft/world/gen/layer/GenLayerEdge$SwitchMode 6f3e80c04e3c3f3d17d1585b9dadeb25 +net/minecraft/world/gen/layer/GenLayerEdge 81210a857d81dcf4798d2507a9b06359 +net/minecraft/world/gen/layer/GenLayerFuzzyZoom 8e8603ebf2161806c6b17b28b4201486 +net/minecraft/world/gen/layer/GenLayerHills 25d4bca660aad30e5aa219cb2297e23e +net/minecraft/world/gen/layer/GenLayerIsland bd27756edb3154d00ccfb553496980a1 +net/minecraft/world/gen/layer/GenLayerRareBiome 54aa8d293568b27b276b88f84a994d2a +net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean 66bb38d56d89218395c62b9338a96aa2 +net/minecraft/world/gen/layer/GenLayerRiver bb119d786d8e93072014dab498baeb54 +net/minecraft/world/gen/layer/GenLayerRiverInit 37b6317a0abb89a98ad078a3e5d43126 +net/minecraft/world/gen/layer/GenLayerRiverMix 8c01b39ff79a0c5d472a92c817ba84bd +net/minecraft/world/gen/layer/GenLayerShore 23db048ecc3bf062e0e37a3b72fb9e73 +net/minecraft/world/gen/layer/GenLayerSmooth d945a0fb3db1ee16dbc340f812c58cbe +net/minecraft/world/gen/layer/GenLayerVoronoiZoom 639cc874a3944eb40ada7871e9116436 +net/minecraft/world/gen/layer/GenLayerZoom 3c1ae7e4155344acdb9368881f5fbd40 +net/minecraft/world/gen/layer/IntCache 22246afb9eb0522b71ed19f4f333fa98 +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$DesertPyramid 0a67d3adc8903b8ebf849dcda520264e +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$Feature 1fe548554b79bf513b88ee2d7b01b4c0 +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid$Stones 02a535ae54979abe96a3de513b184956 +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid c9c15048baca6b40a96ffa7c8ca4509d +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$SwampHut 7d351dbc4191fbe175f969aaa81494c0 +net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces c9a4de4cbb0926b86f5ac9c861901d4e +net/minecraft/world/gen/structure/MapGenMineshaft b455f3ba8989fd313bd6a7b4d8a7bb6f +net/minecraft/world/gen/structure/MapGenNetherBridge$Start a20f050e107e0352fe8a37e46b7e5479 +net/minecraft/world/gen/structure/MapGenNetherBridge 839cc7983aeae3d401bdc29827e36101 +net/minecraft/world/gen/structure/MapGenScatteredFeature$Start 0ec190e45d63c3e397d3f1a79985e295 +net/minecraft/world/gen/structure/MapGenScatteredFeature 4637074a8c0e2938e11df7f17d29354e +net/minecraft/world/gen/structure/MapGenStronghold$Start 91374311296de06249b918d6f004346a +net/minecraft/world/gen/structure/MapGenStronghold 69d1f4b3d33b43e1e600972af5c9b2b8 +net/minecraft/world/gen/structure/MapGenStructure$1 36b6fd2eced9d6ae6869981542cb4e05 +net/minecraft/world/gen/structure/MapGenStructure$2 fb572df8f132a5a7f6ac5fa9629d7bb4 +net/minecraft/world/gen/structure/MapGenStructure$3 1f82e8a31f4ac41d85c0cb9dd21bc2d7 +net/minecraft/world/gen/structure/MapGenStructure 3912d8b46203ad2cf5c1a4dcaf94f096 +net/minecraft/world/gen/structure/MapGenStructureData 1335e69b7be2059441869059d46b2b6b +net/minecraft/world/gen/structure/MapGenStructureIO 39ab0ea09908054d113480169af35dd0 +net/minecraft/world/gen/structure/MapGenVillage$Start 28babf52fb2eb3e3a2b105b52e3c661f +net/minecraft/world/gen/structure/MapGenVillage bca166f479cd73399adea4ffc5958412 +net/minecraft/world/gen/structure/StructureBoundingBox 84adb1aff3eeb012ed7266270349c0cb +net/minecraft/world/gen/structure/StructureComponent$BlockSelector d1b824041399a311604fe4f2bdf77ab3 +net/minecraft/world/gen/structure/StructureComponent db292b06528925369d1a2f364176b43e +net/minecraft/world/gen/structure/StructureMineshaftPieces$Corridor 4de1d3e6a2aeb27e70f90bea17a1cc23 +net/minecraft/world/gen/structure/StructureMineshaftPieces$Cross 6a1a4c95b9be5eb4740a5001470dd260 +net/minecraft/world/gen/structure/StructureMineshaftPieces$Room d8ff4c88f9312de92ab4a2ab0027c25b +net/minecraft/world/gen/structure/StructureMineshaftPieces$Stairs 7e0e3217f0a8f4dbe8df43bd7673cd1e +net/minecraft/world/gen/structure/StructureMineshaftPieces 4159e8f030a626ce1f8f7e4c9fd05639 +net/minecraft/world/gen/structure/StructureMineshaftStart fc32028656b95e5d461c0e2016665eb7 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor 7d2ac577cb923dd230c32e9c0f23796c +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor2 05af4fc3995e523a757014a330147f02 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor3 dc36f08beddc80cbd0c29fd49a806b62 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor4 f41d1704141bee4d07532539453cc01a +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor5 2b48f36e0dd73bd44181a5fc0859a118 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing 216bab2246403f937c075dcce991fe4e +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing2 2d37c016df65f066e6513c15bbee7842 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 235e5b4c2b949df0060f3bb75eef8704 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$End 3f193e6aed1f530b756993788f54a354 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Entrance 4b41950cfca5d604c28695e1e855fb9b +net/minecraft/world/gen/structure/StructureNetherBridgePieces$NetherStalkRoom 8ae314bec16827c2f2fa1c4e13314ffd +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Piece a1033fa359d94a5c2e237d0ca23ec59e +net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight cbb7c62b34019bb0158ce3fe3ef1286d +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Stairs 1f125bf0d02dc769098716ae85750cec +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Start 3958ae79b94a275db4697fd0756d949e +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Straight c328e22580ec7456016a0d8aea438787 +net/minecraft/world/gen/structure/StructureNetherBridgePieces$Throne b25804b10e2af2ce1c0a7715f3bd8fc3 +net/minecraft/world/gen/structure/StructureNetherBridgePieces 20a985df666cad7e8653f27c9c87ffdc +net/minecraft/world/gen/structure/StructureStart 097106ae70673584ffe46a23919e4d71 +net/minecraft/world/gen/structure/StructureStrongholdPieces$1 d435e0a4a90b075407f52064f002c9ae +net/minecraft/world/gen/structure/StructureStrongholdPieces$2 e40a01583859726648278e16402987c3 +net/minecraft/world/gen/structure/StructureStrongholdPieces$ChestCorridor 8e3a33302772400aacbad9e3419ecf73 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Corridor b412ca6956b8225c7f934dba0a8d1c77 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Crossing 622c85e0ae85546e8487aa4933fdc9a0 +net/minecraft/world/gen/structure/StructureStrongholdPieces$LeftTurn a7f684d1703ebb865fcb2ddd341e7d26 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Library 4fbe998e5cd910356d5a2525425628f5 +net/minecraft/world/gen/structure/StructureStrongholdPieces$PieceWeight 58746db84a114ae1ea045078e924d83b +net/minecraft/world/gen/structure/StructureStrongholdPieces$PortalRoom 7b3a1927f1d03e6aa598b0df8eb10818 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Prison 471e69ebe7941a0a7850623becb98622 +net/minecraft/world/gen/structure/StructureStrongholdPieces$RightTurn c6c9c3a353e8f33b7b6234bb44b29e6e +net/minecraft/world/gen/structure/StructureStrongholdPieces$RoomCrossing 82cd5074120969f5fb10573a58b9f8ad +net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs eb5f9fce3770ed3237c993bc8e444df1 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs2 78736c835b58385fae15e110bf811108 +net/minecraft/world/gen/structure/StructureStrongholdPieces$StairsStraight f07d2a0d210fd0d2aaac7867a2160e0a +net/minecraft/world/gen/structure/StructureStrongholdPieces$Stones 0cde90769f0734efa427a5d802c80052 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Straight e2e4bbf6cd1b8eb0599ec44ae452dc76 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold$Door 1eaead8fb844a1c47c0b95190bab6663 +net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold dcbd5b908f7af956eb3086dc2bba3907 +net/minecraft/world/gen/structure/StructureStrongholdPieces$SwitchDoor bb9ce998601a4de7e15ee1ceb9ce1957 +net/minecraft/world/gen/structure/StructureStrongholdPieces a0a6cd3f89c66bae1163e85dc236b9ab +net/minecraft/world/gen/structure/StructureVillagePieces$Church 3046f671da564251549c306e76df181c +net/minecraft/world/gen/structure/StructureVillagePieces$Field1 2ff90df768c744bba2ed5ee57c849d28 +net/minecraft/world/gen/structure/StructureVillagePieces$Field2 01666020599c195c07a26fc6b27df169 +net/minecraft/world/gen/structure/StructureVillagePieces$Hall e6fddf00b474304dd1e5a58d6ebcb7bc +net/minecraft/world/gen/structure/StructureVillagePieces$House1 6ce6b6dc645741c6597414f53fde1414 +net/minecraft/world/gen/structure/StructureVillagePieces$House2 38966e5af80091fe27e3a5863bd4ef02 +net/minecraft/world/gen/structure/StructureVillagePieces$House3 7c5208163d81cd321c4d73bb74961a2c +net/minecraft/world/gen/structure/StructureVillagePieces$House4Garden 20ff8f9aa1129d7af9d8569b4b27ab22 +net/minecraft/world/gen/structure/StructureVillagePieces$Path 4b5096a7e9b789d903cbcac7e92e8ee0 +net/minecraft/world/gen/structure/StructureVillagePieces$PieceWeight d6ac6db51721cf0d24437d47f77e4813 +net/minecraft/world/gen/structure/StructureVillagePieces$Road 2b41a53e941e7a5822b0b8202f390ac1 +net/minecraft/world/gen/structure/StructureVillagePieces$Start 08c52963a085f33f1d410440dcdc7563 +net/minecraft/world/gen/structure/StructureVillagePieces$Torch d9f7b03752a8fb4a76f51dcc6eb23882 +net/minecraft/world/gen/structure/StructureVillagePieces$Village 74bcf2caf76deec9ca70ff4045d1d868 +net/minecraft/world/gen/structure/StructureVillagePieces$Well f941df20b2d13eaef26f5e5b803af03f +net/minecraft/world/gen/structure/StructureVillagePieces$WoodHut 3abf30af31e4133c50e7ded94958ab81 +net/minecraft/world/gen/structure/StructureVillagePieces 41c361fec948d3e9803e25d3ce69af0e +net/minecraft/world/storage/DerivedWorldInfo 636e50a4c5f9af28635617e90a94a9eb +net/minecraft/world/storage/IPlayerFileData 2e2a00516dbff0952569790a38973256 +net/minecraft/world/storage/ISaveFormat 541f03e5cdbf2c8109510c576e02cd48 +net/minecraft/world/storage/ISaveHandler 9052fed7eca8e9cd1a10565947dbce5e +net/minecraft/world/storage/IThreadedFileIO e6ca5e81f4ee6d2e90b3081b6c63244c +net/minecraft/world/storage/MapData$MapCoord b817432f44fea8df07426f29c99313b7 +net/minecraft/world/storage/MapData$MapInfo a24be09c8d2d5d81a08c2f7c84745a56 +net/minecraft/world/storage/MapData 321d048c2f99459a7d22ba7e60c1413f +net/minecraft/world/storage/MapStorage dc59b0c9b7440f7a98cbe65e173530bb +net/minecraft/world/storage/SaveFormatComparator b42e82193a44e592cb90ea928d38c39a +net/minecraft/world/storage/SaveFormatOld 1555884ee82cd20c56f31a1129cff913 +net/minecraft/world/storage/SaveHandler f0d3965d6b03d5b39885a2333e51c487 +net/minecraft/world/storage/SaveHandlerMP 584d022848b2c6347b57977bafefb307 +net/minecraft/world/storage/ThreadedFileIOBase f5f72a9c473db45a185a7a7292d352cf +net/minecraft/world/storage/WorldInfo$1 e4386f770e5acc3d5e48fc712c572e6b +net/minecraft/world/storage/WorldInfo$2 844fb5c6c0e351e150b30f91066282b8 +net/minecraft/world/storage/WorldInfo$3 48d90cf6bec2265dd13c8f253211b78e +net/minecraft/world/storage/WorldInfo$4 28295155f727b167141b16df3c557bf0 +net/minecraft/world/storage/WorldInfo$5 0b3dac21d4fe9926ba36fc0c39760ad2 +net/minecraft/world/storage/WorldInfo$6 0b87f2fa7d28bbfa29c4983dfab5fa82 +net/minecraft/world/storage/WorldInfo$7 7a16688c768baf8c5ba940c73a8705e1 +net/minecraft/world/storage/WorldInfo$8 53e76f165923dd69898de507ef4bcbfe +net/minecraft/world/storage/WorldInfo$9 864140872f83c4ab72d8f8255596a5d4 +net/minecraft/world/storage/WorldInfo a1018a9bb4cbfbbf20b0df8ea087c68e +optifine/Installer e294fb0a25d1262e6f5ec1d80139ea08 +optifine/InstallerFrame$IvjEventHandler 9ac24b1a3dfd321ae95da0485fb934ae +optifine/InstallerFrame 091db45584d01da6081ebeb6a750d5bd +optifine/OptiFineClassTransformer 12d4ade8c0ad605c48ca173ecd3c43e6 +optifine/OptiFineForgeTweaker d4214f4158f340fdd035f91b4d7b8732 +optifine/OptiFineTweaker bb4a3ee0d6a61645a851324d0fb33e62 +optifine/Utils$OS 22ae9b17564fadced005c70819f28d84 +optifine/Utils 3cfd8b3719992b1192aafa06c0082d8c +optifine/json/ContainerFactory e694d8f7c52cea0f1749c9c8d22d9add +optifine/json/ContentHandler 249dfd3c34c3a20a11d20b7ebf4994f4 +optifine/json/ItemList 0f9000a9d6937c829d3e26de2ba22426 +optifine/json/JSONArray eda5532a0bc687f0c38e5b60c9968585 +optifine/json/JSONAware e19f663128af0e7c5234743ea138d934 +optifine/json/JSONObject 7fc3c3f17548c434a7bbff446b96be45 +optifine/json/JSONParser 4d2dfdbbdd7a711a81e3b8637cf760b8 +optifine/json/JSONStreamAware b1bffeaae1ec00d92b29bdf66a5eac63 +optifine/json/JSONValue af57145d567c60af328b0dfca5de4581 +optifine/json/JSONWriter 547ed6933f83f9c0cef445b106ff1333 +optifine/json/ParseException a7eb550dffce6984fc10274a214b0026 +optifine/json/Yylex 676e2de8df49942702709ce40b171bed +optifine/json/Yytoken e4f4c1a0cf4d7d52914e1b284feae791 diff --git a/mcppatches/mappings/fields.csv b/mcppatches/mappings/fields.csv new file mode 100644 index 00000000..471df42f --- /dev/null +++ b/mcppatches/mappings/fields.csv @@ -0,0 +1,4792 @@ +searge,name,side,desc +field_100013_f,isPotionDurationMax,0,"True if potion effect duration is at maximum, false otherwise." +field_104003_g,isAggressive,2, +field_104057_T,isGamemodeForced,2, +field_110150_bn,lastAttacker,2, +field_110152_bk,newPosZ,2, +field_110153_bc,lastDamage,2,Damage taken in the last hit. Mobs are resistant to damage less than this for a short time after taking damage. +field_110155_d,attributeMap,2, +field_110156_b,sprintingSpeedBoostModifierUUID,2, +field_110157_c,sprintingSpeedBoostModifier,2, +field_110158_av,swingProgressInt,2, +field_110168_bw,leashedToEntity,2, +field_110169_bv,isLeashed,2, +field_110170_bx,leashNBTTag,2, +field_110178_bs,aiBase,2, +field_110187_bq,babySpeedBoostUUID,2, +field_110188_br,babySpeedBoostModifier,2, +field_110192_bp,attackingSpeedBoostModifierUUID,2, +field_110193_bq,attackingSpeedBoostModifier,2, +field_110194_bu,lastEntityToAttack,2, +field_110268_bz,horseTextures,2, +field_110270_bw,horseArmorTextures,2, +field_110271_bv,horseJumpStrength,2, +field_110272_by,armorValues,2, +field_110274_bs,temper,2,"""The higher this value, the more likely the horse is to be tamed next time a player rides it.""" +field_110275_br,horseJumping,2, +field_110276_bu,horseBreedingSelector,2, +field_110277_bt,jumpPower,2, +field_110281_bL,rearingAmount,2, +field_110282_bM,prevRearingAmount,2, +field_110283_bJ,headLean,2, +field_110284_bK,prevHeadLean,2, +field_110285_bP,gallopTime,2,Used to determine the sound that the horse should make when it steps +field_110287_bN,mouthOpenness,2, +field_110288_bO,prevMouthOpenness,2, +field_110289_bD,eatingHaystackCounter,2, +field_110290_bE,openMouthCounter,2, +field_110291_bB,horseMarkingTextures,2, +field_110293_bH,hasReproduced,2, +field_110295_bF,jumpRearingCounter,2, +field_110296_bG,horseChest,2, +field_110312_d,locationSkin,0, +field_110313_e,locationCape,0, +field_110314_b,locationStevePng,0, +field_110320_a,horseJumpPowerCounter,0, +field_110321_bQ,horseJumpPower,0, +field_110323_l,statIcons,0, +field_110324_m,icons,0, +field_110325_k,optionsBackground,0, +field_110328_d,pumpkinBlurTexPath,0, +field_110329_b,vignetteTexPath,0, +field_110330_c,widgetsTexPath,0, +field_110352_y,minecraftTitleTextures,0, +field_110353_x,splashTexts,0, +field_110444_H,locationMojangPng,0, +field_110445_I,macDisplayModes,0, +field_110446_Y,fileAssets,0, +field_110447_Z,launchedVersion,0, +field_110448_aq,mcResourcePackRepository,0, +field_110449_ao,defaultResourcePacks,0, +field_110450_ap,mcDefaultResourcePack,0, +field_110451_am,mcResourceManager,0, +field_110452_an,metadataSerializer_,0, +field_110453_aa,proxy,0, +field_110456_c,serverProxy,2, +field_110463_b,packFormat,0, +field_110464_a,packDescription,0, +field_110465_b,charLefts,0, +field_110466_c,charSpacings,0, +field_110467_a,charWidths,0, +field_110475_d,frameTime,0, +field_110476_b,frameWidth,0, +field_110477_c,frameHeight,0, +field_110478_a,animationFrames,0, +field_110481_b,textureClamp,0, +field_110482_a,textureBlur,0, +field_110498_b,frameTime,0, +field_110499_a,frameIndex,0, +field_110506_b,gsonBuilder,0, +field_110507_c,gson,0,"Cached Gson instance. Set to null when more sections are registered, and then re-created from the builder." +field_110508_a,metadataSectionSerializerRegistry,0, +field_110520_f,locationTexturePackIcon,0, +field_110521_d,rePackMetadataSection,0, +field_110522_e,texturePackIcon,0, +field_110523_b,resourcePackFile,0, +field_110524_c,reResourcePack,0, +field_110529_f,mcmetaJsonChecked,0, +field_110530_g,mcmetaJson,0, +field_110531_d,mcmetaInputStream,0, +field_110532_e,srMetadataSerializer,0, +field_110533_b,srResourceLocation,0, +field_110534_c,resourceInputStream,0, +field_110535_a,mapMetadataSections,0, +field_110539_b,frmMetadataSerializer,0, +field_110540_a,resourcePacks,0, +field_110546_b,reloadListeners,0, +field_110547_c,rmMetadataSerializer,0, +field_110548_a,domainResourceManagers,0, +field_110553_a,glTextureId,0, +field_110559_g,textureUploaded,0, +field_110560_d,bufferedImage,0, +field_110561_e,imageThread,0, +field_110562_b,imageUrl,0, +field_110563_c,imageBuffer,0, +field_110566_b,dynamicTextureData,0, +field_110567_b,layeredTextureNames,0, +field_110568_b,textureLocation,0, +field_110574_e,mapRegisteredSprites,0, +field_110575_b,locationBlocksTexture,0, +field_110576_c,locationItemsTexture,0, +field_110582_d,theResourceManager,0, +field_110583_b,listTickables,0, +field_110584_c,mapTextureCounters,0, +field_110585_a,mapTextureObjects,0, +field_110597_b,resourcePackFile,0, +field_110598_a,resourceLog,0, +field_110600_d,resourcePackZipFile,0, +field_110601_c,entryNameSplitter,0, +field_110608_a,defaultResourceDomains,0, +field_110617_f,repositoryEntries,0, +field_110618_d,dirResourcepacks,0, +field_110619_e,repositoryEntriesAll,0, +field_110620_b,rprDefaultResourcePack,0, +field_110621_c,rprMetadataSerializer,0, +field_110622_a,resourcePackFilter,0, +field_110625_b,resourcePath,0, +field_110626_a,resourceDomain,0, +field_110684_D,frontRightLeg,0, +field_110685_E,frontRightShin,0, +field_110686_F,frontRightHoof,0, +field_110687_G,muleLeftChest,0,The left chest box on the mule model. +field_110688_A,frontLeftLeg,0, +field_110689_B,frontLeftShin,0, +field_110690_C,frontLeftHoof,0, +field_110691_L,horseLeftSaddleRope,0, +field_110692_M,horseLeftSaddleMetal,0, +field_110693_N,horseRightSaddleRope,0, +field_110694_O,horseRightSaddleMetal,0, +field_110695_H,muleRightChest,0,The right chest box on the mule model. +field_110696_I,horseSaddleBottom,0, +field_110697_J,horseSaddleFront,0, +field_110698_K,horseSaddleBack,0, +field_110699_Q,horseRightFaceMetal,0,The right metal connected to the horse's face ropes. +field_110700_P,horseLeftFaceMetal,0,The left metal connected to the horse's face ropes. +field_110701_S,horseRightRein,0, +field_110702_R,horseLeftRein,0, +field_110703_f,muleLeftEar,0,The left ear box for the mule model. +field_110704_g,muleRightEar,0,The right ear box for the mule model. +field_110705_d,horseLeftEar,0, +field_110706_e,horseRightEar,0, +field_110707_b,mouthTop,0, +field_110708_c,mouthBottom,0, +field_110709_a,head,0, +field_110710_n,tailTip,0, +field_110711_o,backLeftLeg,0, +field_110712_l,tailBase,0, +field_110713_m,tailMiddle,0, +field_110714_j,mane,0, +field_110715_k,body,0, +field_110716_h,neck,0, +field_110717_i,horseFaceRopes,0,The box for the horse's ropes on its face. +field_110718_w,backLeftHoof,0, +field_110719_v,backLeftShin,0, +field_110720_z,backRightHoof,0, +field_110721_y,backRightShin,0, +field_110722_x,backRightLeg,0, +field_110737_b,particleTextures,0, +field_110778_a,shadowTextures,0, +field_110780_a,arrowTextures,0, +field_110782_f,boatTextures,0, +field_110785_a,experienceOrbTextures,0, +field_110787_a,enderCrystalTextures,0, +field_110789_a,mapBackgroundTextures,0, +field_110798_h,RES_ITEM_GLINT,0, +field_110801_f,leashKnotModel,0, +field_110802_a,leashKnotTextures,0, +field_110804_g,minecartTextures,0, +field_110810_f,witherTextures,0, +field_110811_a,invulnerableWitherTextures,0, +field_110814_a,RES_ITEM_GLINT,0, +field_110826_a,steveTextures,0, +field_110830_f,creeperTextures,0, +field_110831_a,armoredCreeperTextures,0, +field_110833_a,cowTextures,0, +field_110835_a,batTextures,0, +field_110837_a,blazeTextures,0, +field_110839_f,endermanTextures,0, +field_110840_a,endermanEyesTexture,0, +field_110842_f,enderDragonExplodingTextures,0, +field_110843_g,enderDragonCrystalBeamTextures,0, +field_110844_k,enderDragonTextures,0, +field_110845_h,enderDragonEyesTextures,0, +field_110850_f,whiteHorseTextures,0, +field_110851_g,muleTextures,0, +field_110853_l,skeletonHorseTextures,0, +field_110854_k,zombieHorseTextures,0, +field_110855_h,donkeyTextures,0, +field_110861_l,witherSkeletonTextures,0, +field_110862_k,skeletonTextures,0, +field_110864_q,zombieVillagerTextures,0, +field_110865_p,zombieTextures,0, +field_110866_o,zombiePigmanTextures,0, +field_110868_f,ghastShootingTextures,0, +field_110869_a,ghastTextures,0, +field_110871_a,zombieTextures,0, +field_110873_a,magmaCubeTextures,0, +field_110875_f,ocelotTextures,0, +field_110876_g,redOcelotTextures,0, +field_110877_a,blackOcelotTextures,0, +field_110878_h,siameseOcelotTextures,0, +field_110880_a,mooshroomTextures,0, +field_110882_a,silverfishTextures,0, +field_110884_f,shearedSheepTextures,0, +field_110885_a,sheepTextures,0, +field_110887_f,pigTextures,0, +field_110888_a,saddledPigTextures,0, +field_110890_f,spiderTextures,0, +field_110891_a,spiderEyesTextures,0, +field_110893_a,caveSpiderTextures,0, +field_110895_a,snowManTextures,0, +field_110897_a,slimeTextures,0, +field_110899_a,ironGolemTextures,0, +field_110901_a,squidTextures,0, +field_110903_f,villagerTextures,0, +field_110904_g,farmerVillagerTextures,0, +field_110905_l,smithVillagerTextures,0, +field_110906_m,butcherVillagerTextures,0, +field_110907_k,priestVillagerTextures,0, +field_110908_h,librarianVillagerTextures,0, +field_110910_a,witchTextures,0, +field_110912_f,witherTextures,0, +field_110913_a,invulnerableWitherTextures,0, +field_110915_f,tamedWolfTextures,0, +field_110916_g,anrgyWolfTextures,0, +field_110917_a,wolfTextures,0, +field_110918_h,wolfCollarTextures,0, +field_110920_a,chickenTextures,0, +field_110922_T,locationLightMap,0, +field_110923_r,locationSnowPng,0, +field_110924_q,locationRainPng,0, +field_110925_j,locationCloudsPng,0, +field_110926_k,locationEndSkyPng,0, +field_110927_h,locationMoonPhasesPng,0, +field_110928_i,locationSunPng,0, +field_110929_d,RES_UNDERWATER_OVERLAY,0, +field_110930_b,RES_ITEM_GLINT,0, +field_110931_c,RES_MAP_BACKGROUND,0, +field_110973_g,frameCounter,0, +field_110974_d,originY,0, +field_110975_c,originX,0, +field_110976_a,framesTextureData,0, +field_110977_n,minV,0, +field_110978_o,maxV,0, +field_110979_l,minU,0, +field_110980_m,maxU,0, +field_110982_k,animationMetadata,0, +field_110983_h,tickCounter,0, +field_110984_i,iconName,0, +field_110999_b,missingTextureData,0, +field_111000_c,dataBuffer,0, +field_111001_a,missingTexture,0, +field_111053_a,numericVariablePattern,2,"Pattern that matches numeric variable placeholders in a resource string, such as ""%d"", ""%3$d"", ""%.2f""" +field_111113_b,defaultValue,2, +field_111114_c,shouldWatch,2, +field_111115_a,unlocalizedName,2, +field_111118_b,maximumValue,2, +field_111119_c,description,2, +field_111120_a,minimumValue,2, +field_111132_f,baseValue,2, +field_111133_g,needsUpdate,2, +field_111134_d,mapByName,2, +field_111135_e,mapByUUID,2, +field_111136_b,genericAttribute,2,The Attribute this is an instance of +field_111137_c,mapByOperation,2, +field_111138_a,attributeMap,2,The BaseAttributeMap this attributeInstance can be found in +field_111139_h,cachedValue,2, +field_111153_b,attributesByName,2, +field_111154_a,attributes,2, +field_111162_d,attributeInstanceSet,2, +field_111163_c,descriptionToAttributeInstanceMap,2, +field_111170_d,id,2, +field_111171_e,isSaved,2,"If false, this modifier is not saved in NBT. Used for ""natural"" modifiers like speed boost from sprinting" +field_111172_b,operation,2, +field_111173_c,name,2, +field_111174_a,amount,2, +field_111180_a,horseHost,2, +field_111188_I,attributeModifierMap,2,Contains a Map of the AttributeModifiers registered by potions +field_111192_g,previousTotalWorldTime,2,time what is using to check if InhabitedTime should be calculated +field_111193_e,playerInstanceList,2,This field is using when chunk should be processed (every 8000 ticks) +field_111198_g,previousWorldTime,2,time what is using when chunk InhabitedTime is being calculated +field_111203_a,moonPhaseFactors,2, +field_111204_q,inhabitedTime,2,the cumulative number of ticks players have been in this chunk +field_111210_e,itemModifierUUID,2, +field_111218_cA,iconString,2,The string associated with this Item's Icon. +field_111230_s,enchantmentTypes,2, +field_111242_f,theHorse,2, +field_111263_d,movementSpeed,2, +field_111264_e,attackDamage,2, +field_111265_b,followRange,2, +field_111266_c,knockbackResistance,2, +field_111267_a,maxHealth,2, +field_111273_g,locationFontTexture,0, +field_111274_c,unicodePageLocations,0, +field_120021_b,server,1, +field_130070_K,fileResourcepacks,0, +field_130074_a,joinerResourcePacks,0, +field_130089_b,mapResourceLocations,0, +field_130222_e,rotated,0, +field_130223_c,width,0, +field_130224_d,height,0, +field_135017_as,mcLanguageManager,0, +field_135019_a,languages,0, +field_135030_b,splitter,0,"Splits on ""=""" +field_135036_d,bidirectional,0, +field_135037_b,region,0, +field_135038_c,name,0, +field_135039_a,languageCode,0, +field_135046_d,languageMap,0, +field_135047_b,theMetadataSerializer,0, +field_135048_c,currentLanguage,0, +field_135049_a,currentLocale,0, +field_135054_a,i18nLocale,0, +field_135057_d,setResourceDomains,0, +field_135059_Q,animalSpawner,2, +field_135065_b,equalSignSplitter,2,"A Splitter that splits a string on the first ""="". For example, ""a=b=c"" would split into [""a"", ""b=c""]." +field_142016_bo,lastAttackerTime,2,Holds the value of ticksExisted when setLastAttacker was last called. +field_142022_ce,clientBrand,0, +field_142025_a,isRunningOnMac,0, +field_142052_b,revengeTimerOld,2,Store the previous revengeTimer value +field_143005_bX,playerLastActiveTime,2, +field_143008_E,maxPlayerIdleMinutes,2, +field_145761_f,customName,2,"The custom name of the command block. (defaults to ""@"")" +field_145762_d,lastOutput,2,The previously run command. +field_145763_e,commandStored,2,The command stored in the command block. +field_145764_b,successCount,2,The number of successful commands run. (used for redstone output) +field_145765_c,trackOutput,2, +field_145766_a,timestampFormat,2,The formatting for the timestamp on commands run. +field_145783_c,entityId,2, +field_145785_f,inBlock,2, +field_145786_d,yTile,2, +field_145787_e,zTile,2, +field_145788_c,xTile,2, +field_145803_d,logger,2, +field_145804_b,delayBeforeCanPickup,2, +field_145809_g,hurtEntities,2, +field_145810_d,tileEntityData,2, +field_145811_e,blockObj,2, +field_145812_b,fallTime,2, +field_145813_c,shouldDropItem,2, +field_145814_a,metadata,2, +field_145815_h,fallHurtMax,2, +field_145816_i,fallHurtAmount,2, +field_145846_f,tileEntityInvalid,2, +field_145847_g,blockMetadata,2, +field_145848_d,yCoord,2, +field_145849_e,zCoord,2, +field_145850_b,worldObj,2,the instance of the world the tile entity is in. +field_145851_c,xCoord,2, +field_145852_a,logger,2, +field_145853_j,classToNameMap,2,A HashMap storing the classes and mapping to the string names (reverse of nameToClassMap). +field_145854_h,blockType,2,the Block type that this TileEntity is contained within +field_145855_i,nameToClassMap,2,A HashMap storing string names of classes mapping to the actual java.lang.Class type. +field_145869_a,storedBlock,2, +field_145870_n,lastProgress,2,the progress in (de)extending +field_145871_o,pushedObjects,2, +field_145872_l,shouldHeadBeRendered,2, +field_145873_m,progress,2, +field_145874_j,storedOrientation,2,the side the front of the piston is on +field_145875_k,extending,2,if this piston is extending or not +field_145876_i,storedMetadata,2, +field_145879_a,note,2,Note to play +field_145880_i,previousRedstoneState,2,stores the latest redstone state +field_145901_j,transferCooldown,2, +field_145908_a,skullType,2, +field_145910_i,skullRotation,2, +field_145915_a,signText,2, +field_145916_j,isEditable,2, +field_145918_i,lineBeingEdited,2,"The index of the line currently being edited. Only used on client side, but defined on both. Note this is only really used when the > < are going to be visible." +field_145925_p,bookRotationPrev,2, +field_145926_a,tickCount,2, +field_145927_n,bookSpreadPrev,2, +field_145928_o,bookRotation,2, +field_145930_m,bookSpread,2, +field_145931_j,pageFlipPrev,2, +field_145933_i,pageFlip,2, +field_145941_a,inputSlots,2,an array of the input slot indices +field_145943_l,filledSlots,2,an integer with each bit specifying whether that slot of the stand contains a potion +field_145944_m,ingredientID,2,used to check if the current ingredient has been removed from the brewing stand during brewing +field_145945_j,brewingItemStacks,2,The ItemStacks currently placed in the slots of the brewing stand +field_145946_k,brewTime,2, +field_145947_i,outputSlots,2,an array of the output slot indices +field_145956_a,furnaceBurnTime,2,The number of ticks that the furnace will keep burning +field_145957_n,furnaceItemStacks,2,The ItemStacks that hold the items currently being used in the furnace +field_145958_o,furnaceCustomName,2, +field_145959_l,slotsBottom,2, +field_145960_m,slotsSides,2, +field_145961_j,furnaceCookTime,2,The number of ticks that the current item has been cooking for +field_145962_k,slotsTop,2, +field_145963_i,currentItemBurnTime,2,The number of ticks that a fresh copy of the currently-burning item would keep the furnace burning for +field_145967_a,flowerPotItem,2, +field_145968_i,flowerPotData,2, +field_145975_i,prevLidAngle,2,The angle of the ender chest lid last tick +field_145981_s,customName,2, +field_145982_r,cachedChestType,2, +field_145983_q,ticksSinceSync,2,Server sync counter (once per 20 ticks) +field_145984_a,adjacentChestChecked,2,Determines if the check for adjacent chests has taken place. +field_145985_p,chestContents,2, +field_145986_n,prevLidAngle,2,The angle of the lid last tick +field_145987_o,numPlayersUsing,2,The number of players currently using this chest +field_145988_l,adjacentChestZPos,2,Contains the chest tile located adjacent to this one (if any) +field_145989_m,lidAngle,2,The current angle of the lid (between 0 and 1) +field_145990_j,adjacentChestXPos,2,Contains the chest tile located adjacent to this one (if any) +field_145991_k,adjacentChestXNeg,2,Contains the chest tile located adjacent to this one (if any) +field_145992_i,adjacentChestZNeg,2,Contains the chest tile located adjacent to this one (if any) +field_145997_a,outputSignal,2, +field_146009_a,effectsList,2,List of effects that Beacon can apply +field_146010_n,secondaryEffect,2,Secondary potion effect given by this beacon. +field_146011_o,payment,2,Item given to this beacon as payment. +field_146012_l,levels,2,Level of this beacon's pyramid. +field_146013_m,primaryEffect,2,Primary potion effect given by this beacon. +field_146015_k,isComplete,2, +field_146036_f,FISH,2, +field_146037_g,xTile,2, +field_146038_az,ticksCatchableDelay,2, +field_146039_d,JUNK,2, +field_146040_ay,ticksCaughtDelay,2, +field_146041_e,VALUABLES,2, +field_146042_b,angler,2, +field_146043_c,caughtEntity,2, +field_146044_a,shake,2, +field_146045_ax,ticksCatchable,2, +field_146046_j,inTile,2, +field_146047_aw,ticksInAir,2, +field_146048_h,yTile,2, +field_146049_av,ticksInGround,2, +field_146050_i,zTile,2, +field_146051_au,inGround,2, +field_146052_aI,clientMotionY,0, +field_146053_aJ,clientMotionZ,0, +field_146054_aA,fishApproachAngle,2, +field_146055_aB,fishPosRotationIncrements,2, +field_146056_aC,fishX,2, +field_146057_aD,fishY,2, +field_146058_aE,fishZ,2, +field_146059_aF,fishYaw,2, +field_146060_aG,fishPitch,2, +field_146061_aH,clientMotionX,0, +field_146084_br,playerInLove,2, +field_146087_bs,entityAIEatGrass,2, +field_146106_i,gameProfile,2,The player's unique game profile +field_146109_a,mc,0, +field_146120_f,width,0,Button width in pixels +field_146121_g,height,0,Button height in pixels +field_146122_a,buttonTextures,0, +field_146123_n,hovered,0, +field_146124_l,enabled,0,"True if this control is enabled, false to disable." +field_146125_m,visible,0,Hides the button completely if false. +field_146126_j,displayString,0,The string displayed on this control. +field_146127_k,id,0, +field_146128_h,xPosition,0,The x position of this control. +field_146129_i,yPosition,0,The y position of this control. +field_146133_q,options,0, +field_146134_p,sliderValue,0, +field_146135_o,dragging,0, +field_146137_o,enumOptions,0, +field_146164_r,fontRenderer,0, +field_146170_l,centered,0, +field_146171_m,labelBgEnabled,0, +field_146172_j,visible,0, +field_146209_f,xPosition,0, +field_146210_g,yPosition,0, +field_146211_a,fontRendererInstance,0, +field_146212_n,canLoseFocus,0,if true the textbox can lose focus by clicking elsewhere on the screen +field_146213_o,isFocused,0,"If this value is true along with isEnabled, keyTyped will process the keys." +field_146214_l,cursorCounter,0, +field_146215_m,enableBackgroundDrawing,0, +field_146216_j,text,0,Has the current text being edited on the textbox. +field_146217_k,maxStringLength,0, +field_146218_h,width,0,The width of this text field. +field_146219_i,height,0, +field_146220_v,visible,0,True if this textbox is visible +field_146221_u,disabledColor,0, +field_146222_t,enabledColor,0, +field_146223_s,selectionEnd,0,"other selection position, maybe the same as the cursor" +field_146224_r,cursorPosition,0, +field_146225_q,lineScrollOffset,0,The current character index that should be used as start of the rendered text. +field_146226_p,isEnabled,0,"If this value is true along with isFocused, keyTyped will process the keys." +field_146247_f,mc,0, +field_146248_g,sentMessages,0,A list of messages previously sent through the chat GUI +field_146249_a,logger,0, +field_146250_j,scrollPos,0, +field_146251_k,isScrolled,0, +field_146252_h,chatLines,0,Chat lines to be displayed in the chat box +field_146259_f,mc,0, +field_146260_g,width,0, +field_146261_a,achievementBg,0, +field_146262_n,permanentNotification,0, +field_146263_l,notificationTime,0, +field_146264_m,renderItem,0, +field_146265_j,achievementDescription,0, +field_146266_k,theAchievement,0, +field_146267_h,height,0, +field_146268_i,achievementTitle,0, +field_146287_f,eventButton,0, +field_146288_g,lastMouseEvent,0, +field_146289_q,fontRendererObj,0,The FontRenderer used by GuiScreen +field_146290_a,selectedButton,0,The button that was just pressed. +field_146291_p,allowUserInput,0, +field_146292_n,buttonList,0,A list of all the buttons in this container. +field_146293_o,labelList,0,A list of all the labels in this container. +field_146294_l,width,0,The width of the screen object. +field_146295_m,height,0,The height of the screen object. +field_146296_j,itemRender,0,"Holds a instance of RenderItem, used to draw the achievement icons on screen (is based on ItemStack)" +field_146297_k,mc,0,Reference to the Minecraft object. +field_146298_h,touchValue,0,"Incremented when the game is in touchscreen mode and the screen is tapped, decremented if the screen isn't tapped. Does not appear to be used." +field_146304_f,message,0, +field_146305_g,multilineMessage,0, +field_146306_a,reason,0, +field_146307_h,parentScreen,0, +field_146308_f,serverIPField,0, +field_146309_g,serverNameField,0, +field_146310_a,parentScreen,0, +field_146311_h,serverData,0, +field_146349_a,logger,0, +field_146351_f,messageLine1,0, +field_146352_g,confirmButtonText,0,The text shown for the first button in GuiYesNo +field_146353_s,ticksUntilEnable,0, +field_146354_r,messageLine2,0, +field_146355_a,parentScreen,0,A reference to the screen object that created this. Used for navigating between screens. +field_146356_h,cancelButtonText,0,The text shown for the second button in GuiYesNo +field_146357_i,parentButtonClickedId,0, +field_146360_u,showSecurityWarning,0, +field_146361_t,linkText,0, +field_146362_s,copyLinkButtonText,0,Label for the Copy to Clipboard button. +field_146363_r,openLinkWarning,0,Text to warn players from opening unsafe links. +field_146370_f,logger,0, +field_146371_g,networkManager,0, +field_146372_a,CONNECTION_ID,0, +field_146373_h,cancel,0, +field_146374_i,previousGuiScreen,0, +field_146385_f,createWorldGui,0, +field_146387_g,theFlatGeneratorInfo,0, +field_146390_s,createFlatWorldListSlotGui,0, +field_146400_h,game_settings,0, +field_146408_f,logger,0, +field_146409_v,defaultInputFieldText,0,is the text that appears when you press the chat key and the input box appears pre-filled +field_146410_g,historyBuffer,0, +field_146411_u,clickedURI,0,used to pass around the URI to various dialogues and to the host os +field_146412_t,foundPlayerNames,0, +field_146413_s,autocompleteIndex,0, +field_146414_r,waitingOnAutocomplete,0, +field_146415_a,inputField,0,Chat entry field +field_146416_h,sentHistoryCursor,0,"keeps position of which chat message you will select when you press up, (does not increase for duplicated messages sent immediately after each other)" +field_146417_i,playerNamesFound,0, +field_146443_h,game_settings_1,0,Reference to the GameSettings object. +field_146451_g,game_settings_3,0,Reference to the GameSettings object. +field_146465_D,buttonSign,0,The GuiButton to sign this book. +field_146466_f,bookGuiTextures,0, +field_146467_E,buttonFinalize,0, +field_146468_g,editingPlayer,0,The player editing the book +field_146469_F,buttonCancel,0, +field_146470_A,buttonNextPage,0, +field_146471_B,buttonPreviousPage,0, +field_146472_C,buttonDone,0, +field_146473_a,logger,0, +field_146474_h,bookObj,0, +field_146475_i,bookIsUnsigned,0,Whether the book is signed or can still be edited +field_146476_w,bookTotalPages,0, +field_146477_v,bookImageHeight,0, +field_146478_u,bookImageWidth,0, +field_146479_t,updateCount,0,Update ticks since the gui was opened +field_146480_s,bookGettingSigned,0,Determines if the signing screen is open +field_146481_r,bookIsModified,0,Whether the book's title or contents has been modified since being opened +field_146482_z,bookTitle,0, +field_146483_y,bookPages,0, +field_146484_x,currPage,0, +field_146485_f,commandTextField,0,Text field containing the command block's command. +field_146487_r,cancelBtn,0, +field_146489_h,localCommandBlock,0,Command block being edited. +field_146490_i,doneBtn,0,"""Done"" button for the GUI." +field_146491_f,buttonId,0,The ID of the button that has been pressed. +field_146492_g,optionsArr,0, +field_146493_s,buttonReset,0, +field_146494_r,keyBindingList,0, +field_146495_a,screenTitle,0, +field_146496_h,parentScreen,0,A reference to the screen object that created this. Used for navigating between screens. +field_146497_i,options,0,Reference to the GameSettings object. +field_146498_f,parentGuiScreen,0, +field_146499_g,guiGameSettings,0, +field_146500_a,screenTitle,0, +field_146501_h,optionsRowList,0, +field_146502_i,videoOptions,0,An array of all of GameSettings.Options's video options. +field_146506_g,game_settings_4,0,Reference to the GameSettings object. +field_146510_b_,lanSearchStates,0, +field_146542_f,screenTitle,0, +field_146543_v,doesGuiPauseGame,0,"When true, the game will be paused when the gui is shown" +field_146544_g,renderItem,0, +field_146545_u,displaySlot,0, +field_146547_s,mobStats,0, +field_146548_r,blockStats,0, +field_146549_a,parentScreen,0, +field_146550_h,generalStats,0, +field_146551_i,itemStats,0, +field_146556_E,statFileWriter,0, +field_146558_F,loadingAchievements,0, +field_146562_a,parentScreen,0, +field_146580_a,logger,0, +field_146593_f,progress,0, +field_146594_a,netHandlerPlayClient,0, +field_146603_f,game_settings_2,0,Reference to the GameSettings object. +field_146629_g,logger,0, +field_146797_f,oldServerPinger,0, +field_146798_g,parentScreen,0, +field_146799_A,lanServerList,0, +field_146800_B,lanServerDetector,0, +field_146801_C,initialized,0, +field_146802_a,logger,0, +field_146803_h,serverListSelector,0, +field_146804_i,savedServerList,0, +field_146805_w,editingServer,0, +field_146806_v,addingServer,0, +field_146807_u,deletingServer,0, +field_146808_t,btnDeleteServer,0, +field_146809_s,btnSelectServer,0, +field_146810_r,btnEditServer,0, +field_146811_z,selectedServer,0, +field_146813_x,directConnect,0, +field_146848_f,tileSign,0,Reference to the sign object. +field_146849_g,updateCounter,0,Counts the number of screen updates. +field_146851_h,editLine,0,The index of the line that is being edited. +field_146852_i,doneBtn,0,"""Done"" button for the GUI." +field_146968_a,logger,0, +field_146974_g,logger,0, +field_146985_D,currentDragTargetSlot,0, +field_146986_E,dragItemDropDelay,0, +field_146987_F,dragSplittingLimit,0, +field_146988_G,dragSplittingButton,0, +field_146989_A,returningStackDestSlot,0, +field_146990_B,returningStackTime,0, +field_146991_C,returningStack,0,Used when touchscreen is enabled +field_146992_L,lastClickButton,0, +field_146993_M,doubleClick,0, +field_146994_N,shiftClickedSlot,0, +field_146995_H,ignoreMouseUp,0, +field_146996_I,dragSplittingRemnant,0, +field_146997_J,lastClickTime,0, +field_146998_K,lastClickSlot,0, +field_146999_f,xSize,0,The X size of the inventory window in pixels. +field_147000_g,ySize,0,The Y size of the inventory window in pixels. +field_147001_a,inventoryBackground,0,The location of the inventory background texture +field_147002_h,inventorySlots,0,A list of the players inventory slots +field_147003_i,guiLeft,0,Starting X position for the Gui. Inconsistent use for Gui backgrounds. +field_147004_w,isRightMouseClick,0,Used when touchscreen is enabled. +field_147005_v,clickedSlot,0,Used when touchscreen is enabled. +field_147006_u,theSlot,0,holds the slot currently hovered +field_147007_t,dragSplitting,0, +field_147008_s,dragSplittingSlots,0, +field_147009_r,guiTop,0,Starting Y position for the Gui. Inconsistent use for Gui backgrounds. +field_147010_z,touchUpY,0, +field_147011_y,touchUpX,0, +field_147012_x,draggedStack,0,Used when touchscreen is enabled +field_147013_v,tileBrewingStand,0, +field_147014_u,brewingStandGuiTextures,0, +field_147015_w,lowerChestInventory,0, +field_147016_v,upperChestInventory,0, +field_147018_x,inventoryRows,0,"window height is calculated with these values; the more rows, the heigher" +field_147019_u,craftingTableGuiTextures,0, +field_147024_w,tileBeacon,0, +field_147025_v,beaconGuiTextures,0, +field_147026_u,logger,0, +field_147027_y,buttonsNotDrawn,0, +field_147028_x,beaconConfirmButton,0, +field_147031_u,horseGuiTextures,0, +field_147039_u,logger,0, +field_147045_u,hasActivePotionEffects,0,True if there is some potion effect to display +field_147047_v,oldMouseY,0,The old y position of the mouse pointer +field_147048_u,oldMouseX,0,The old x position of the mouse pointer +field_147058_w,selectedTabIndex,0,Currently selected creative inventory tab index. +field_147061_u,creativeInventoryTabs,0,The location of the creative inventory tabs texture +field_147062_A,searchField,0, +field_147065_z,wasClicking,0,True if the left mouse button was held down last time drawScreen was called. +field_147066_y,isScrolling,0,True if the scrollbar is being dragged +field_147067_x,currentScroll,0,"Amount scrolled in Creative mode inventory (0 = top, 1 = bottom)" +field_147086_v,tileFurnace,0, +field_147087_u,furnaceGuiTextures,0, +field_147088_v,dispenserGuiTextures,0, +field_147089_u,tileDispenser,0, +field_147091_w,nameField,0, +field_147092_v,anvil,0, +field_147093_u,anvilResource,0, +field_147094_x,playerInventory,0, +field_147102_bM,logger,2, +field_147123_G,logger,0, +field_147124_at,framebufferMc,0, +field_147125_j,pointedEntity,0, +field_147126_aw,mcMusicTicker,0, +field_147127_av,mcSoundHandler,0, +field_147128_au,textureMapBlocks,0, +field_147129_ai,jvm64bit,0, +field_147141_M,serverTexturePack,2,The texture pack for the server +field_147142_T,nanoTimeSinceStatusRefresh,2, +field_147143_S,sessionService,2, +field_147144_o,networkSystem,2, +field_147145_h,logger,2, +field_147146_q,random,2, +field_147147_p,statusResponse,2, +field_147148_h,logger,0, +field_147150_a,logger,2, +field_147166_l,categoryName,0, +field_147167_m,categoryId,0, +field_147175_a,logger,2, +field_147208_a,logger,2, +field_147228_b,logger,0, +field_147229_c,pingDestinations,0,A list of NetworkManagers that have pending pings +field_147230_a,PING_RESPONSE_SPLITTER,0, +field_147299_f,gameController,0,"Reference to the Minecraft instance, which many handler methods operate on" +field_147300_g,clientWorldController,0,"Reference to the current ClientWorld instance, which many handler methods operate on" +field_147301_d,logger,0, +field_147302_e,netManager,0,The NetworkManager instance used to communicate with the server (used only by handlePlayerPosLook to update positioning and handleJoinGame to inform the server of the client distribution/mods) +field_147303_b,playerInfoList,0,An ArrayList of GuiPlayerInfo (includes all the players' GuiPlayerInfo on the current server) +field_147304_c,currentServerMaxPlayers,0, +field_147305_a,mapStorageOrigin,0,Origin of the central MapStorage serving as a public reference for WorldClient. Not used in this class +field_147306_l,avRandomizer,0,"Just an ordinary random number generator, used to randomize audio pitch of item/orb pickup and randomize both particlespawn offset and velocity" +field_147307_j,guiScreenServer,0,Seems to be either null (integrated server) or an instance of either GuiMultiplayer (when connecting to a server) or GuiScreenReamlsTOS (when connecting to MCO server) +field_147309_h,doneLoadingTerrain,0,"True if the client has finished downloading terrain and may spawn. Set upon receipt of S08PacketPlayerPosLook, reset upon respawning" +field_147310_i,playerInfoMap,0,A mapping from player names to their respective GuiPlayerInfo (specifies the clients response time to the server) +field_147313_b,networkManager,2, +field_147314_a,server,2, +field_147327_f,server,2, +field_147328_g,currentLoginState,2, +field_147329_d,RANDOM,2, +field_147331_b,AUTHENTICATOR_THREAD_ID,2, +field_147332_c,logger,2, +field_147333_a,networkManager,2, +field_147334_j,serverId,2, +field_147335_k,secretKey,2, +field_147336_h,connectionTimer,2,How long has player been trying to login into the server. +field_147337_i,loginGameProfile,2, +field_147365_f,floatingTickCount,2,Used to keep track of how the player is floating while gamerules should prevent that. Surpassing 80 ticks means kick +field_147367_d,serverController,2, +field_147368_e,networkTickCount,2, +field_147369_b,playerEntity,2, +field_147370_c,logger,2, +field_147371_a,netManager,2, +field_147373_o,lastPosX,2, +field_147374_l,chatSpamThresholdCount,2,"Incremented by 20 each time a user sends a chat message, decreased by one every tick. Non-ops kicked when over 200" +field_147375_m,itemDropThreshold,2, +field_147377_k,lastSentPingPacket,2, +field_147379_i,lastPingTime,2, +field_147380_r,hasMoved,2, +field_147381_q,lastPosZ,2, +field_147382_p,lastPosY,2, +field_147386_b,networkManager,2, +field_147387_a,server,2, +field_147396_a,logger,0, +field_147411_m,serverIcon,0, +field_147412_i,playerList,0, +field_147415_a,logger,0, +field_147417_b,logger,2, +field_147433_r,parabolicField,2, +field_147436_a,logger,0, +field_147481_N,processingLoadedTiles,2, +field_147482_g,loadedTileEntityList,2,A list of the loaded tile entities in the world +field_147483_b,tileEntitiesToBeRemoved,2, +field_147484_a,addedTileEntityList,2, +field_147489_T,blockEventCacheIndex,2, +field_147491_a,logger,2, +field_147503_f,textureChristmas,0, +field_147504_g,textureNormal,0, +field_147505_d,textureNormalDouble,0, +field_147506_e,textureTrapped,0, +field_147507_b,textureTrappedDouble,0, +field_147508_c,textureChristmasDouble,0, +field_147509_j,isChristams,0, +field_147510_h,simpleChest,0, +field_147511_i,largeChest,0, +field_147514_c,model,0,The ModelSign instance for use in this renderer +field_147523_b,beaconBeam,0, +field_147550_f,worldObj,0, +field_147552_d,staticPlayerZ,0,The player's current Z position (same as playerZ) +field_147553_e,renderEngine,0, +field_147554_b,staticPlayerX,0,The player's current X position (same as playerX) +field_147555_c,staticPlayerY,0,The player's current Y position (same as playerY) +field_147556_a,instance,0, +field_147559_m,mapSpecialRenderers,0, +field_147566_d,floatBuffer,0,"The same memory as byteBuffer, but referenced as an float buffer." +field_147567_e,shortBuffer,0,"The same memory as byteBuffer, but referenced as an short buffer." +field_147568_c,intBuffer,0,"The same memory as byteBuffer, but referenced as an integer buffer." +field_147569_p,rawBufferIndex,0,The index into the raw buffer to be used for the next data. +field_147577_f,hasNormals,0, +field_147578_g,hasColor,0, +field_147579_d,hasTexture,0, +field_147580_e,hasBrightness,0, +field_147581_b,rawBufferIndex,0, +field_147582_c,vertexCount,0, +field_147583_a,rawBuffer,0, +field_147592_B,renderBlocksRg,0, +field_147593_P,mapSoundPositions,0,"Currently playing sounds. Type: HashMap" +field_147594_S,displayListEntities,0, +field_147595_R,displayListEntitiesDirty,0, +field_147596_f,prevRenderSortX,0, +field_147597_g,prevRenderSortY,0, +field_147598_a,tileEntities,0, +field_147599_m,logger,0, +field_147600_j,prevChunkSortY,0, +field_147601_k,prevChunkSortZ,0, +field_147602_h,prevRenderSortZ,0, +field_147603_i,prevChunkSortX,0, +field_147616_f,framebufferObject,0, +field_147617_g,framebufferTexture,0, +field_147618_d,framebufferHeight,0, +field_147619_e,useDepth,0, +field_147620_b,framebufferTextureHeight,0, +field_147621_c,framebufferWidth,0, +field_147622_a,framebufferTextureWidth,0, +field_147623_j,framebufferFilter,0, +field_147624_h,depthBuffer,0, +field_147625_i,framebufferColor,0, +field_147635_d,logger,0, +field_147636_j,mipmapLevels,0, +field_147637_k,anisotropicFiltering,0, +field_147638_c,logger,0, +field_147639_c,logger,0, +field_147643_d,threadDownloadCounter,0, +field_147644_c,logger,0, +field_147646_a,logger,0, +field_147648_b,logger,0, +field_147658_f,zPosF,0, +field_147659_g,repeat,0, +field_147660_d,xPosF,0, +field_147661_e,yPosF,0, +field_147662_b,volume,0, +field_147663_c,pitch,0, +field_147664_a,positionedSoundLocation,0, +field_147665_h,repeatDelay,0,The number of ticks between repeating the sound +field_147666_i,attenuationType,0, +field_147668_j,donePlaying,0, +field_147676_d,timeUntilNextMusic,0, +field_147677_b,mc,0, +field_147678_c,currentMusic,0, +field_147679_a,rand,0, +field_147694_f,sndManager,0, +field_147695_g,mcResourceManager,0, +field_147697_e,sndRegistry,0, +field_147698_b,logger,0, +field_147700_a,missing_sound,0, +field_147707_d,theShaderGroup,0, +field_147708_e,shaderCount,0, +field_147709_v,theMapItemRenderer,0, +field_147710_q,logger,0, +field_147711_ac,resourceManager,0, +field_147712_ad,shaderResourceLocations,0, +field_147713_ae,shaderIndex,0, +field_147719_a,instance,0, +field_147720_h,renderBlocksIr,0, +field_147810_D,aoLightValueScratchXYPN,0,Used as a scratch variable for ambient occlusion between the bottom face and the south face. +field_147811_E,aoLightValueScratchXYZPNP,0,Used as a scratch variable for ambient occlusion on the south/bottom/west corner. +field_147812_F,aoLightValueScratchXYZNPN,0,Used as a scratch variable for ambient occlusion on the north/top/east corner. +field_147813_G,aoLightValueScratchXYNP,0,Used as a scratch variable for ambient occlusion between the top face and the north face. +field_147814_A,aoLightValueScratchYZNN,0,Used as a scratch variable for ambient occlusion between the bottom face and the east face. +field_147815_B,aoLightValueScratchYZNP,0,Used as a scratch variable for ambient occlusion between the bottom face and the west face. +field_147816_C,aoLightValueScratchXYZPNN,0,Used as a scratch variable for ambient occlusion on the south/bottom/east corner. +field_147817_L,aoLightValueScratchYZPP,0,Used as a scratch variable for ambient occlusion between the top face and the west face. +field_147818_M,aoLightValueScratchXYZPPP,0,Used as a scratch variable for ambient occlusion on the south/top/west corner. +field_147819_N,aoLightValueScratchXZNN,0,Used as a scratch variable for ambient occlusion between the north face and the east face. +field_147820_O,aoLightValueScratchXZPN,0,Used as a scratch variable for ambient occlusion between the south face and the east face. +field_147821_H,aoLightValueScratchXYZNPP,0,Used as a scratch variable for ambient occlusion on the north/top/west corner. +field_147822_I,aoLightValueScratchYZPN,0,Used as a scratch variable for ambient occlusion between the top face and the east face. +field_147823_J,aoLightValueScratchXYZPPN,0,Used as a scratch variable for ambient occlusion on the south/top/east corner. +field_147824_K,aoLightValueScratchXYPP,0,Used as a scratch variable for ambient occlusion between the top face and the south face. +field_147825_U,aoBrightnessYZNN,0,Ambient occlusion brightness YZNN +field_147826_T,aoBrightnessXYZNNP,0,Ambient occlusion brightness XYZNNP +field_147827_W,aoBrightnessXYZPNN,0,Ambient occlusion brightness XYZPNN +field_147828_V,aoBrightnessYZNP,0,Ambient occlusion brightness YZNP +field_147829_Q,aoLightValueScratchXZPP,0,Used as a scratch variable for ambient occlusion between the south face and the west face. +field_147830_P,aoLightValueScratchXZNP,0,Used as a scratch variable for ambient occlusion between the north face and the west face. +field_147831_S,aoBrightnessXYNN,0,Ambient occlusion brightness XYNN +field_147832_R,aoBrightnessXYZNNN,0,Ambient occlusion brightness XYZNNN +field_147833_aA,colorBlueTopRight,0,Blue color value for the top right corner +field_147834_Y,aoBrightnessXYZPNP,0,Ambient occlusion brightness XYZPNP +field_147835_X,aoBrightnessXYPN,0,Ambient occlusion brightness XYPN +field_147836_Z,aoBrightnessXYZNPN,0,Ambient occlusion brightness XYZNPN +field_147837_f,renderAllFaces,0,"If true, renders all faces on all blocks rather than using the logic in Block.shouldSideBeRendered." +field_147838_g,renderFromInside,0, +field_147839_az,colorBlueBottomRight,0,Blue color value for the bottom right corner +field_147840_d,overrideBlockTexture,0,"If set to >=0, all block faces will be rendered using this texture index" +field_147841_ay,colorBlueBottomLeft,0,Blue color value for the bottom left corner +field_147842_e,flipTexture,0,Set to true if the texture should be flipped horizontally during render*Face +field_147843_b,fancyGrass,0,Fancy grass side matching biome +field_147844_c,useInventoryTint,0, +field_147845_a,blockAccess,0,The IBlockAccess used by this instance of RenderBlocks +field_147846_at,colorGreenTopLeft,0,Green color value for the top left corner +field_147847_n,lockBlockBounds,0, +field_147848_as,colorRedTopRight,0,Red color value for the top right corner +field_147849_o,partialRenderBounds,0, +field_147850_ar,colorRedBottomRight,0,Red color value for the bottom right corner +field_147851_l,renderMinZ,0,The minimum Z value for rendering (default 0.0). +field_147852_aq,colorRedBottomLeft,0,Red color value for the bottom left corner +field_147853_m,renderMaxZ,0,The maximum Z value for rendering (default 1.0). +field_147854_ax,colorBlueTopLeft,0,Blue color value for the top left corner +field_147855_j,renderMinY,0,The minimum Y value for rendering (default 0.0). +field_147856_aw,colorGreenTopRight,0,Green color value for the top right corner +field_147857_k,renderMaxY,0,The maximum Y value for rendering (default 1.0). +field_147858_av,colorGreenBottomRight,0,Green color value for the bottom right corner +field_147859_h,renderMinX,0,The minimum X value for rendering (default 0.0). +field_147860_au,colorGreenBottomLeft,0,Green color value for the bottom left corner +field_147861_i,renderMaxX,0,The maximum X value for rendering (default 1.0). +field_147862_ak,aoBrightnessXZPP,0,Ambient occlusion brightness XZPP +field_147863_w,enableAO,0,Whether ambient occlusion is enabled or not +field_147864_al,brightnessTopLeft,0,Brightness top left +field_147865_v,uvRotateBottom,0, +field_147866_ai,aoBrightnessXZPN,0,Ambient occlusion brightness XZPN +field_147867_u,uvRotateTop,0, +field_147868_aj,aoBrightnessXZNP,0,Ambient occlusion brightness XZNP +field_147869_t,uvRotateNorth,0, +field_147870_ao,brightnessTopRight,0,Brightness top right +field_147871_s,uvRotateSouth,0, +field_147872_ap,colorRedTopLeft,0,Red color value for the top left corner +field_147873_r,uvRotateWest,0, +field_147874_am,brightnessBottomLeft,0,Brightness bottom left +field_147875_q,uvRotateEast,0, +field_147876_an,brightnessBottomRight,0,Brightness bottom right +field_147877_p,minecraftRB,0, +field_147878_ac,aoBrightnessYZPN,0,Ambient occlusion brightness YZPN +field_147879_ad,aoBrightnessXYZPPN,0,Ambient occlusion brightness XYZPPN +field_147880_aa,aoBrightnessXYNP,0,Ambient occlusion brightness XYNP +field_147881_ab,aoBrightnessXYZNPP,0,Ambient occlusion brightness XYZNPP +field_147882_ag,aoBrightnessXYZPPP,0,Ambient occlusion brightness XYZPPP +field_147883_ah,aoBrightnessXZNN,0,Ambient occlusion brightness XZNN +field_147884_z,aoLightValueScratchXYZNNP,0,Used as a scratch variable for ambient occlusion on the north/bottom/west corner. +field_147885_ae,aoBrightnessXYPP,0,Ambient occlusion brightness XYPP +field_147886_y,aoLightValueScratchXYNN,0,Used as a scratch variable for ambient occlusion between the bottom face and the north face. +field_147887_af,aoBrightnessYZPP,0,Ambient occlusion brightness YZPP +field_147888_x,aoLightValueScratchXYZNNN,0,Used as a scratch variable for ambient occlusion on the north/bottom/east corner. +field_147893_C,tileEntities,0, +field_147894_y,vertexState,0, +field_147895_x,tileEntityRenderers,0,All the tile entities that have special rendering code for this chunk +field_147908_f,staticEntity,0, +field_147913_i,renderBlocksRi,0, +field_147923_a,logger,0, +field_147959_c,logger,0, +field_147966_k,useAnisotropicFiltering,0, +field_147967_a,logger,0, +field_147968_d,mipmapLevelHolder,0, +field_147971_a,mipmapLevelStitcher,0, +field_147997_f,shaderSamplers,0,maps sampler names to their texture +field_147998_g,samplerNames,0, +field_147999_d,currentProgram,0, +field_148001_b,defaultShaderUniform,0, +field_148002_c,staticShaderManager,0, +field_148003_a,logger,0, +field_148004_n,useFaceCulling,0, +field_148005_o,isDirty,0, +field_148006_l,program,0, +field_148007_m,programFilename,0, +field_148008_j,shaderUniformLocations,0, +field_148009_k,mappedShaderUniforms,0, +field_148010_h,shaderSamplerLocations,0, +field_148011_i,shaderUniforms,0, +field_148012_t,fragmentShaderLoader,0, +field_148013_s,vertexShaderLoader,0, +field_148016_p,field_148016_p,0, +field_148029_f,listFramebuffers,0, +field_148030_g,projectionMatrix,0, +field_148031_d,listShaders,0, +field_148032_e,mapFramebuffers,0, +field_148033_b,resourceManager,0, +field_148034_c,shaderGroupName,0, +field_148035_a,mainFramebuffer,0, +field_148038_h,mainFramebufferWidth,0, +field_148039_i,mainFramebufferHeight,0, +field_148046_f,listAuxWidths,0, +field_148047_g,listAuxHeights,0, +field_148048_d,listAuxFramebuffers,0, +field_148049_e,listAuxNames,0, +field_148050_b,framebufferOut,0, +field_148051_c,manager,0, +field_148052_a,framebufferIn,0, +field_148053_h,projectionMatrix,0, +field_148058_d,shaderAttachCount,0, +field_148059_b,shaderFilename,0, +field_148060_c,shader,0, +field_148061_a,shaderType,0, +field_148067_f,loadedShaders,0, +field_148069_d,shaderExtension,0, +field_148070_e,shaderMode,0, +field_148072_c,shaderName,0, +field_148079_b,staticShaderLinkHelper,0, +field_148080_a,logger,0, +field_148098_f,uniformFloatBuffer,0, +field_148099_g,shaderName,0, +field_148100_d,uniformType,0, +field_148101_e,uniformIntBuffer,0, +field_148102_b,uniformLocation,0, +field_148103_c,uniformCount,0, +field_148104_a,logger,0, +field_148106_i,shaderManager,0, +field_148149_f,slotHeight,0,The height of a slot. +field_148150_g,mouseX,0, +field_148151_d,right,0, +field_148152_e,left,0, +field_148153_b,top,0,The top of the slot container. Affects the overlays and scrolling. +field_148154_c,bottom,0,The bottom of the slot container. Affects the overlays and scrolling. +field_148155_a,width,0, +field_148156_n,scrollDownButtonID,0,The buttonID of the button used to scroll down +field_148157_o,initialClickY,0,Where the mouse was in the window when you first clicked to scroll +field_148158_l,height,0, +field_148159_m,scrollUpButtonID,0,The buttonID of the button used to scroll up +field_148160_j,headerPadding,0, +field_148161_k,mc,0, +field_148162_h,mouseY,0, +field_148164_v,enabled,0, +field_148165_u,hasListHeader,0, +field_148166_t,showSelectionBox,0,Set to true if a selected element in this gui will show an outline box +field_148167_s,lastClicked,0,The time when this button was last clicked. +field_148168_r,selectedElement,0,The element in the list that was selected +field_148169_q,amountScrolled,0,How far down this slot has been scrolled +field_148170_p,scrollMultiplier,0,What to multiply the amount you moved your mouse by (used for slowing down scrolling when over the items and not on the scroll bar) +field_148188_n,maxListLabelWidth,0, +field_148189_l,mc,0, +field_148190_m,listEntries,0, +field_148196_n,lanScanEntry,0, +field_148200_k,owner,0, +field_148205_k,mc,0, +field_148216_n,statSorter,0, +field_148219_m,statsHolder,0, +field_148251_b,textureManager,0, +field_148252_c,loadedMaps,0, +field_148253_a,mapIcons,0, +field_148257_b,playerID,0, +field_148258_c,token,0, +field_148261_a,logger,0, +field_148270_M,valueStep,0, +field_148271_N,valueMin,0, +field_148272_O,valueMax,0, +field_148280_d,btnChangeKeyBinding,0, +field_148281_e,btnReset,0, +field_148285_b,labelText,0, +field_148286_c,labelWidth,0, +field_148304_a,logger,0, +field_148322_c,logger,0, +field_148326_f,logger,2, +field_148330_a,itemList,0,the list of items in this container +field_148336_b,rand,0, +field_148337_c,namePartsArray,0, +field_148338_a,instance,0, +field_148536_c,listMipmaps,0, +field_148546_d,logger,2, +field_148547_k,playerStatFiles,2, +field_148550_b,logger,0, +field_148575_b,replaceExisting,0,if true it will override all the sounds from the resourcepacks loaded before +field_148617_f,loaded,0,Set to true when the SoundManager has been initialised. +field_148618_g,playTime,0,A counter for how long the sound manager has been running +field_148619_d,options,0,Reference to the GameSettings object. +field_148620_e,sndSystem,0,A reference to the sound system. +field_148621_b,logger,0, +field_148622_c,sndHandler,0,A reference to the sound handler. +field_148623_a,LOG_MARKER,0,The marker used for logging +field_148624_n,playingSoundsStopTime,0,"The future time in which to stop this sound. Type: HashMap" +field_148625_l,tickableSounds,0,"A subset of playingSounds, this contains only ITickableSounds" +field_148626_m,delayedSounds,0,"Contains sounds to play in n ticks. Type: HashMap" +field_148627_j,playingSoundPoolEntries,0,"A HashMap of the playing sounds." +field_148628_k,categorySounds,0,"Contains sounds mapped by category. Type: Multimap" +field_148629_h,playingSounds,0,"Identifiers of all currently playing sounds. Type: HashBiMap" +field_148630_i,invPlayingSounds,0,"Inverse map of currently playing sounds, automatically mirroring changes in original map" +field_148643_j,maxDelay,0, +field_148646_i,minDelay,0, +field_148657_b,logger,0, +field_148731_f,eventVolume,0, +field_148733_e,eventPitch,0, +field_148734_b,rnd,0, +field_148736_a,soundPool,0,A composite (List) of ISoundEventAccessors +field_148743_a,logger,2, +field_148759_a,underlyingIntegerMap,2,The backing store that maps Integers to objects. +field_148823_f,framebufferSupported,0, +field_148824_g,shadersSupported,0, +field_148825_d,anisotropicFilteringSupported,0, +field_148826_e,anisotropicFilteringMax,0, +field_148827_a,openGL21,0, +field_148828_i,openGL14,0, +field_148841_a,logger,2, +field_148859_d,metadata,2,Used only for vanilla tile entities +field_148860_e,nbt,2, +field_148861_b,y,2, +field_148862_c,z,2, +field_148863_a,x,2, +field_148904_f,entityId,2, +field_148905_d,slotCount,2, +field_148906_e,useProvidedTitle,2, +field_148907_b,inventoryType,2, +field_148908_c,windowTitle,2, +field_148909_a,windowId,2, +field_148918_b,isChat,2, +field_148919_a,chatComponent,2, +field_148927_a,logger,2, +field_148980_b,type,2, +field_148981_a,entityId,2, +field_149094_d,z,2, +field_149095_b,x,2, +field_149096_c,y,2, +field_149097_a,playerID,2, +field_149114_f,walkSpeed,2, +field_149115_d,creativeMode,2, +field_149116_e,flySpeed,2, +field_149117_b,flying,2, +field_149118_c,allowFlying,2, +field_149119_a,invulnerable,2, +field_149140_b,state,2, +field_149142_a,MESSAGE_NAMES,2, +field_149167_a,reason,2, +field_149171_b,data,2, +field_149172_a,channel,2, +field_149191_a,mapId,2, +field_149246_f,serverWide,2,If true the sound is played across the server +field_149247_d,yPos,2, +field_149248_e,zPos,2, +field_149249_b,soundData,2,can be a block/item id or other depending on the soundtype +field_149250_c,xPos,2, +field_149251_a,soundType,2, +field_149290_a,clientTime,2, +field_149293_a,clientTime,2, +field_149296_b,response,2, +field_149297_a,GSON,2, +field_149305_a,profile,2, +field_149334_b,foodLevel,2, +field_149335_c,saturationLevel,2, +field_149336_a,health,2, +field_149420_a,message,2, +field_149423_b,type,2, +field_149424_a,id,2, +field_149437_a,status,2, +field_149440_a,message,2, +field_149461_a,key,2, +field_149473_f,pitch,2, +field_149475_d,stance,2, +field_149476_e,yaw,2, +field_149477_b,y,2, +field_149478_c,z,2, +field_149479_a,x,2, +field_149481_i,rotating,2, +field_149495_f,walkSpeed,2, +field_149496_d,creativeMode,2, +field_149497_e,flySpeed,2, +field_149498_b,flying,2, +field_149499_c,allowFlying,2, +field_149500_a,invulnerable,2, +field_149507_d,diggingBlockFace,2, +field_149508_e,status,2,"Status of the digging (started, ongoing, broken)." +field_149509_b,diggedBlockY,2, +field_149510_c,diggedBlockZ,2, +field_149511_a,diggedBlockX,2, +field_149525_f,showCape,2, +field_149526_d,enableColors,2, +field_149527_e,difficulty,2, +field_149528_b,view,2, +field_149529_c,chatVisibility,2, +field_149530_a,lang,2, +field_149534_b,uid,2, +field_149535_c,accepted,2, +field_149536_a,id,2, +field_149540_b,button,2, +field_149541_a,id,2, +field_149549_f,mode,2,Inventory operation mode +field_149550_d,actionNumber,2,"A unique number for the action, used for transaction handling" +field_149551_e,clickedItem,2,The item stack present in the slot +field_149552_b,slotId,2,Id of the clicked slot +field_149553_c,usedButton,2,Button used +field_149554_a,windowId,2,The id of the window which was clicked. 0 for player inventory. +field_149556_a,windowId,2, +field_149560_b,length,2, +field_149561_c,data,2, +field_149562_a,channel,2, +field_149566_b,action,2, +field_149567_a,entityId,2, +field_149577_f,facingX,2, +field_149578_g,facingY,2, +field_149579_d,placedBlockDirection,2, +field_149580_e,stack,2, +field_149581_b,placedBlockY,2, +field_149582_c,placedBlockZ,2, +field_149583_a,placedBlockX,2, +field_149584_h,facingZ,2, +field_149590_d,lines,2, +field_149591_b,y,2, +field_149592_c,z,2, +field_149593_a,x,2, +field_149597_d,requestedState,2, +field_149598_b,ip,2, +field_149599_c,port,2, +field_149600_a,protocolVersion,2, +field_149602_a,profile,2, +field_149605_a,reason,2, +field_149610_b,publicKey,2, +field_149612_a,hashedServerId,2, +field_149615_a,slotId,2, +field_149621_d,sneaking,2, +field_149622_b,forwardSpeed,2,"Positive for forward, negative for backward" +field_149623_c,jumping,2, +field_149624_a,strafeSpeed,2,"Positive for left strafe, negative for right" +field_149628_b,stack,2, +field_149629_a,slotId,2, +field_149754_D,minZ,2, +field_149755_E,maxX,2, +field_149756_F,maxY,2, +field_149757_G,maxZ,2, +field_149758_A,isBlockContainer,2,true if the Block contains a Tile Entity +field_149759_B,minX,2, +field_149760_C,minY,2, +field_149761_L,blockIcon,0, +field_149762_H,stepSound,2,Sound of stepping on the block +field_149763_I,blockParticleGravity,2, +field_149764_J,blockMaterial,2, +field_149765_K,slipperiness,2,Determines how much velocity is maintained while moving on top of this block +field_149766_f,soundTypeWood,2,the wood sound type +field_149767_g,soundTypeGravel,2,the gravel sound type +field_149768_d,textureName,2, +field_149769_e,soundTypeStone,2, +field_149770_b,unlocalizedName,2, +field_149771_c,blockRegistry,2, +field_149772_a,displayOnCreativeTab,2, +field_149773_n,soundTypeSnow,2, +field_149774_o,soundTypeLadder,2, +field_149775_l,soundTypeCloth,2, +field_149776_m,soundTypeSand,2, +field_149777_j,soundTypeMetal,2, +field_149778_k,soundTypeGlass,2, +field_149779_h,soundTypeGrass,2, +field_149780_i,soundTypePiston,2, +field_149781_w,blockResistance,2, +field_149782_v,blockHardness,2,Indicates how many hits it takes to break a block. +field_149783_u,useNeighborBrightness,2,Flag if block should use the brightest neighbor light value as its own +field_149784_t,lightValue,2,Amount of light emitted +field_149785_s,translucent,2, +field_149786_r,lightOpacity,2,How much light is subtracted for going through this block +field_149787_q,fullBlock,2, +field_149788_p,soundTypeAnvil,2, +field_149789_z,needsRandomTick,2,Flags whether or not this block is of a type that needs random ticking. Ref-counted by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. +field_149790_y,enableStats,2, +field_149791_x,blockConstructorCalled,2, +field_149823_b,iconWet,0,The texture to use for the top of wet (watered) farmland. +field_149824_a,iconDry,0,The texture to use for the top of dry farmland. +field_149832_M,fallInstantly,2, +field_149833_b,anvilRenderSide,0, +field_149834_a,anvilDamageNames,2, +field_149835_N,anvilIconNames,2, +field_149836_O,anvilIcons,0, +field_149837_b,sandIcon,0, +field_149839_N,redSandIcon,0, +field_149867_a,icons,0, +field_149891_b,sunflowerIcons,0, +field_149893_M,doublePlantBottomIcons,0, +field_149894_N,doublePlantTopIcons,0, +field_149914_a,isRepeaterPowered,2,Tells whether the repeater is powered or not +field_149921_b,hopperOutsideIcon,0, +field_149923_M,hopperTopIcon,0, +field_149924_N,hopperInsideIcon,0, +field_149932_b,isBurning,2, +field_149935_N,iconTop,0, +field_149936_O,iconFront,0,Front face of furnace either on or off +field_149943_a,dispenseBehaviorRegistry,2,Registry for all dispense behaviors. +field_149955_b,rand,2, +field_149956_a,chestType,2,"0 : Normal chest, 1 : Trapped chest" +field_149960_b,iconBrewingStandBase,0, +field_149961_a,rand,2, +field_149973_b,repeaterTorchOffset,2,The offsets for the two torches in redstone repeater blocks. +field_149974_M,repeaterState,2,The states in which the redstone repeater blocks can be. +field_149980_b,iconEnd,0, +field_149981_a,bedDirections,2, +field_149982_M,iconSide,0, +field_149983_N,iconTop,0, +field_149992_a,logger,2, +field_149995_b,name,2, +field_149996_a,ignoreSimilarity,2, +field_150004_a,isFullBlock,2, +field_150022_b,iconEndPortalFrameEye,0, +field_150023_a,iconEndPortalFrameTop,0, +field_150028_b,iconTop,0, +field_150029_a,iconInner,0, +field_150030_M,iconBottom,0, +field_150037_b,iconBottom,0, +field_150038_a,iconTop,0, +field_150039_M,iconInner,0, +field_150040_b,iconBottom,0, +field_150041_a,iconTop,0, +field_150047_a,wooden,2, +field_150053_a,isPowered,2, +field_150067_a,name,2, +field_150081_b,innerTopIcon,0,Only visible when piston is extended +field_150082_a,isSticky,2,This piston is the sticky one? +field_150083_M,bottomIcon,0,Bottom side texture +field_150084_N,topIcon,0,Top icon of piston depends on (either sticky or normal) +field_150180_P,redstoneLineOverlayIcon,0, +field_150181_a,canProvidePower,2, +field_150182_M,redstoneCrossIcon,0, +field_150183_N,redstoneLineIcon,0, +field_150184_O,redstoneCrossOverlayIcon,0, +field_150201_a,melonTopIcon,0, +field_150243_f,strikethrough,2, +field_150244_g,obfuscated,2, +field_150245_d,italic,2, +field_150246_e,underlined,2, +field_150247_b,color,2, +field_150248_c,bold,2, +field_150249_a,parentStyle,2,The parent of this ChatStyle. Used for looking up values that this instance does not override. +field_150250_j,rootStyle,2,The base of the ChatStyle hierarchy. All ChatStyle instances are implicitly children of this. +field_150251_h,chatClickEvent,2, +field_150252_i,chatHoverEvent,2, +field_150263_b,style,2, +field_150264_a,siblings,2,"The later siblings of this component. If this component turns the text bold, that will apply to all the siblings until a later sibling turns the text something else." +field_150267_b,text,2, +field_150274_f,syncLock,2, +field_150275_g,lastTranslationUpdateTimeInMilliseconds,2, +field_150276_d,key,2, +field_150277_e,formatArgs,2, +field_150278_b,children,2,"The discrete elements that make up this component. For example, this would be [""Prefix, "", ""FirstArg"", ""SecondArg"", "" again "", ""SecondArg"", "" and "", ""FirstArg"", "" lastly "", ""ThirdArg"", "" and also "", ""FirstArg"", "" again!""] for ""translation.test.complex"" (see en-US.lang)" +field_150279_c,stringVariablePattern,2, +field_150301_b,logger,2, +field_150317_a,logger,2, +field_150318_D,golden_rail,2, +field_150319_E,detector_rail,2, +field_150320_F,sticky_piston,2, +field_150321_G,web,2, +field_150322_A,sandstone,2, +field_150323_B,noteblock,2, +field_150324_C,bed,2, +field_150325_L,wool,2, +field_150326_M,piston_extension,2, +field_150327_N,yellow_flower,2, +field_150328_O,red_flower,2, +field_150329_H,tallgrass,2, +field_150330_I,deadbush,2, +field_150331_J,piston,2, +field_150332_K,piston_head,2, +field_150333_U,stone_slab,2, +field_150334_T,double_stone_slab,2, +field_150335_W,tnt,2, +field_150336_V,brick_block,2, +field_150337_Q,red_mushroom,2, +field_150338_P,brown_mushroom,2, +field_150339_S,iron_block,2, +field_150340_R,gold_block,2, +field_150341_Y,mossy_cobblestone,2, +field_150342_X,bookshelf,2, +field_150343_Z,obsidian,2, +field_150344_f,planks,2, +field_150345_g,sapling,2, +field_150346_d,dirt,2, +field_150347_e,cobblestone,2, +field_150348_b,stone,2, +field_150349_c,grass,2, +field_150350_a,air,2, +field_150351_n,gravel,2, +field_150352_o,gold_ore,2, +field_150353_l,lava,2, +field_150354_m,sand,2, +field_150355_j,water,2, +field_150356_k,flowing_lava,2, +field_150357_h,bedrock,2, +field_150358_i,flowing_water,2, +field_150359_w,glass,2, +field_150360_v,sponge,2, +field_150361_u,leaves2,2, +field_150362_t,leaves,2, +field_150363_s,log2,2, +field_150364_r,log,2, +field_150365_q,coal_ore,2, +field_150366_p,iron_ore,2, +field_150367_z,dispenser,2, +field_150368_y,lapis_block,2, +field_150369_x,lapis_ore,2, +field_150370_cb,quartz_stairs,2, +field_150371_ca,quartz_block,2, +field_150372_bz,sandstone_stairs,2, +field_150373_bw,double_wooden_slab,2, +field_150374_bv,lit_redstone_lamp,2, +field_150375_by,cocoa,2, +field_150376_bx,wooden_slab,2, +field_150377_bs,end_stone,2, +field_150378_br,end_portal_frame,2, +field_150379_bu,redstone_lamp,2, +field_150380_bt,dragon_egg,2, +field_150381_bn,enchanting_table,2, +field_150382_bo,brewing_stand,2, +field_150383_bp,cauldron,2, +field_150384_bq,end_portal,2, +field_150385_bj,nether_brick,2, +field_150386_bk,nether_brick_fence,2, +field_150387_bl,nether_brick_stairs,2, +field_150388_bm,nether_wart,2, +field_150389_bf,brick_stairs,2, +field_150390_bg,stone_brick_stairs,2, +field_150391_bh,mycelium,2, +field_150392_bi,waterlily,2, +field_150393_bb,pumpkin_stem,2, +field_150394_bc,melon_stem,2, +field_150395_bd,vine,2, +field_150396_be,fence_gate,2, +field_150397_co,stained_glass_pane,2, +field_150398_cm,double_plant,2, +field_150399_cn,stained_glass,2, +field_150400_ck,acacia_stairs,2, +field_150401_cl,dark_oak_stairs,2, +field_150402_ci,coal_block,2, +field_150403_cj,packed_ice,2, +field_150404_cg,carpet,2, +field_150405_ch,hardened_clay,2, +field_150406_ce,stained_hardened_clay,2, +field_150407_cf,hay_block,2, +field_150408_cc,activator_rail,2, +field_150409_cd,dropper,2, +field_150410_aZ,glass_pane,2, +field_150411_aY,iron_bars,2, +field_150412_bA,emerald_ore,2, +field_150413_aR,unpowered_repeater,2, +field_150414_aQ,cake,2, +field_150415_aT,trapdoor,2, +field_150416_aS,powered_repeater,2, +field_150417_aV,stonebrick,2, +field_150418_aU,monster_egg,2, +field_150419_aX,red_mushroom_block,2, +field_150420_aW,brown_mushroom_block,2, +field_150421_aI,jukebox,2, +field_150422_aJ,fence,2, +field_150423_aK,pumpkin,2, +field_150424_aL,netherrack,2, +field_150425_aM,soul_sand,2, +field_150426_aN,glowstone,2, +field_150427_aO,portal,2, +field_150428_aP,lit_pumpkin,2, +field_150429_aA,redstone_torch,2, +field_150430_aB,stone_button,2, +field_150431_aC,snow_layer,2, +field_150432_aD,ice,2, +field_150433_aE,snow,2, +field_150434_aF,cactus,2, +field_150435_aG,clay,2, +field_150436_aH,reeds,2, +field_150437_az,unlit_redstone_torch,2, +field_150438_bZ,hopper,2, +field_150439_ay,lit_redstone_ore,2, +field_150440_ba,melon_block,2, +field_150441_bU,unpowered_comparator,2, +field_150442_at,lever,2, +field_150443_bT,heavy_weighted_pressure_plate,2, +field_150444_as,wall_sign,2, +field_150445_bS,light_weighted_pressure_plate,2, +field_150446_ar,stone_stairs,2, +field_150447_bR,trapped_chest,2, +field_150448_aq,rail,2, +field_150449_bY,quartz_ore,2, +field_150450_ax,redstone_ore,2, +field_150451_bX,redstone_block,2, +field_150452_aw,wooden_pressure_plate,2, +field_150453_bW,daylight_detector,2, +field_150454_av,iron_door,2, +field_150455_bV,powered_comparator,2, +field_150456_au,stone_pressure_plate,2, +field_150457_bL,flower_pot,2, +field_150458_ak,farmland,2, +field_150459_bM,carrots,2, +field_150460_al,furnace,2, +field_150461_bJ,beacon,2, +field_150462_ai,crafting_table,2, +field_150463_bK,cobblestone_wall,2, +field_150464_aj,wheat,2, +field_150465_bP,skull,2, +field_150466_ao,wooden_door,2, +field_150467_bQ,anvil,2, +field_150468_ap,ladder,2, +field_150469_bN,potatoes,2, +field_150470_am,lit_furnace,2, +field_150471_bO,wooden_button,2, +field_150472_an,standing_sign,2, +field_150473_bD,tripwire,2, +field_150474_ac,mob_spawner,2, +field_150475_bE,emerald_block,2, +field_150476_ad,oak_stairs,2, +field_150477_bB,ender_chest,2, +field_150478_aa,torch,2, +field_150479_bC,tripwire_hook,2, +field_150480_ab,fire,2, +field_150481_bH,jungle_stairs,2, +field_150482_ag,diamond_ore,2, +field_150483_bI,command_block,2, +field_150484_ah,diamond_block,2, +field_150485_bF,spruce_stairs,2, +field_150486_ae,chest,2, +field_150487_bG,birch_stairs,2, +field_150488_af,redstone_wire,2, +field_150499_b,volume,2, +field_150500_c,frequency,2, +field_150501_a,soundName,2, +field_150507_a,cipher,2, +field_150509_a,decryptionCodec,2, +field_150511_e,lastUpdateTimeInMilliseconds,2,"The time, in milliseconds since epoch, that this instance was last updated" +field_150514_p,yellowFlowerGen,2, +field_150574_L,jungleEdge,2, +field_150575_M,deepOcean,2, +field_150576_N,stoneBeach,2, +field_150577_O,coldBeach,2, +field_150578_U,megaTaiga,2, +field_150579_T,coldTaigaHills,2, +field_150580_W,extremeHillsPlus,2, +field_150581_V,megaTaigaHills,2, +field_150582_Q,birchForestHills,2, +field_150583_P,birchForest,2, +field_150584_S,coldTaiga,2, +field_150585_R,roofedForest,2, +field_150586_aC,logger,2, +field_150587_Y,savannaPlateau,2, +field_150588_X,savanna,2, +field_150589_Z,mesa,2, +field_150590_f,height_MidPlains,2, +field_150591_g,height_LowHills,2, +field_150592_d,height_DeepOceans,2, +field_150593_e,height_LowPlains,2, +field_150594_b,height_ShallowWaters,2, +field_150595_c,height_Oceans,2, +field_150596_a,height_Default,2, +field_150597_n,explorationBiomesList,2, +field_150598_l,height_LowIslands,2, +field_150599_m,height_PartiallySubmerged,2, +field_150600_j,height_Shores,2, +field_150601_k,height_RockyWaters,2, +field_150602_h,height_HighPlateaus,2, +field_150603_i,height_MidHills,2, +field_150604_aj,topBlockMetadata,2, +field_150605_ac,temperatureNoise,2, +field_150606_ad,plantNoise,2, +field_150607_aa,mesaPlateau_F,2, +field_150608_ab,mesaPlateau,2, +field_150610_ae,genTallFlowers,2, +field_150611_aD,baseBiome,2, +field_150670_b,value,2, +field_150671_a,action,2, +field_150676_f,allowedInChat,2, +field_150677_g,canonicalName,2,The canonical name used to refer to this action. +field_150679_e,nameMapping,2, +field_150688_f,canonicalName,2, +field_150690_d,nameMapping,2, +field_150691_e,allowedInChat,2, +field_150700_a,GSON,2, +field_150703_b,value,2, +field_150704_a,action,2, +field_150710_d,enchantable,2, +field_150711_b,returnStack,2, +field_150712_c,maxDamagePercent,2, +field_150734_f,eventLoops,2, +field_150735_g,logger,2, +field_150736_d,attrKeyReceivable,2, +field_150737_e,attrKeySendable,2, +field_150738_b,logMarkerPackets,2, +field_150739_c,attrKeyConnectionState,2, +field_150740_a,logMarkerNetwork,2, +field_150741_n,connectionState,2,"The current connection state, being one of: HANDSHAKING, PLAY, STATUS, LOGIN" +field_150742_o,terminationReason,2,A String indicating why the network has shutdown. +field_150743_l,socketAddress,2,The address of the remote party +field_150744_m,packetListener,2,The INetHandler instance responsible for processing received packets +field_150745_j,outboundPacketsQueue,2,The queue for packets that require transmission +field_150746_k,channel,2,The active channel +field_150747_h,isClientSide,2,Whether this NetworkManager deals with the client or server side of the connection +field_150748_i,receivedPacketsQueue,2,"The queue for received, unprioritized packets that will be processed at the earliest opportunity" +field_150750_a,encryptionCodec,2, +field_150761_f,STATES_BY_CLASS,2, +field_150762_g,id,2, +field_150764_e,STATES_BY_ID,2, +field_150773_b,futureListeners,2, +field_150774_a,packet,2, +field_150776_b,variation,2, +field_150777_a,rootHeight,2, +field_150794_a,buf,2, +field_150798_a,logger,2, +field_150800_a,logger,2, +field_150814_l,isLightPopulated,2, +field_150816_i,chunkTileEntityMap,2,A Map of ChunkPositions to TileEntities in this chunk +field_150817_t,logger,2, +field_150828_b,fallbackTranslator,2,A StringTranslate instance using the hardcoded default locale (en_US). Used as a fallback in case the shared StringTranslate singleton instance fails to translate a key. +field_150889_b,logger,2, +field_150901_e,itemRegistry,2, +field_150907_b,cooked,2,"Indicates whether this fish is ""cooked"" or not." +field_150914_c,effectiveBlocksTool,2, +field_150915_c,effectiveBlocks,2, +field_150920_d,dyeIconArray,0,"Contains all dye icons, parsed from ItemDye.dyeIcons" +field_150921_b,dyeIcons,2, +field_150922_c,dyeColors,2, +field_150923_a,dyeColorNames,2, +field_150929_a,recordName,2,The name of the record. +field_150933_b,repairMaterial,2, +field_150939_a,blockInstance,2, +field_150961_L,exploreAllBiomes,2,Is the 'Adventuring Time' achievement +field_150962_H,breedCow,2,Is the 'Repopulation' achievement +field_150963_I,spawnWither,2,Is the 'The Beginning?' achievement +field_150964_J,killWither,2,Is the 'The Beginning.' achievement +field_150965_K,fullBeacon,2,Is the 'Beaconator' achievement +field_150980_f,itemDamage,2,The item damage value on an ItemStack that represents this fish type +field_150981_g,unlocalizedNamePart,2,"The value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." +field_150983_e,itemDamageToFishTypeMap,2,Maps an item damage value for an ItemStack to the corresponding FishType value. +field_150987_n,cookable,2,"Indicates whether this type of fish has ""raw"" and ""cooked"" variants" +field_150989_l,cookedHealAmount,2,The amount that eating the cooked version of this fish should heal the player. +field_150990_m,cookedSaturationModifier,2,The saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. +field_150991_j,uncookedHealAmount,2,The amount that eating the uncooked version of this fish should heal the player. +field_150992_k,uncookedSaturationModifier,2,The saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. +field_150993_h,uncookedIcon,0,The icon for the uncooked version of this fish. +field_150994_i,cookedIcon,0,The icon for the cooked version of this fish. +field_151002_e,theItem,2, +field_151004_a,underlyingSet,2,The set for this ForwardingSet to forward methods to. +field_151005_D,golden_pickaxe,2, +field_151006_E,golden_axe,2, +field_151007_F,string,2, +field_151008_G,feather,2, +field_151009_A,mushroom_stew,2, +field_151010_B,golden_sword,2, +field_151011_C,golden_shovel,2, +field_151012_L,diamond_hoe,2, +field_151013_M,golden_hoe,2, +field_151014_N,wheat_seeds,2, +field_151015_O,wheat,2, +field_151016_H,gunpowder,2, +field_151017_I,wooden_hoe,2, +field_151018_J,stone_hoe,2, +field_151019_K,iron_hoe,2, +field_151020_U,chainmail_helmet,2, +field_151021_T,leather_boots,2, +field_151022_W,chainmail_leggings,2, +field_151023_V,chainmail_chestplate,2, +field_151024_Q,leather_helmet,2, +field_151025_P,bread,2, +field_151026_S,leather_leggings,2, +field_151027_R,leather_chestplate,2, +field_151028_Y,iron_helmet,2, +field_151029_X,chainmail_boots,2, +field_151030_Z,iron_chestplate,2, +field_151031_f,bow,2, +field_151032_g,arrow,2, +field_151033_d,flint_and_steel,2, +field_151034_e,apple,2, +field_151035_b,iron_pickaxe,2, +field_151036_c,iron_axe,2, +field_151037_a,iron_shovel,2, +field_151038_n,wooden_shovel,2, +field_151039_o,wooden_pickaxe,2, +field_151040_l,iron_sword,2, +field_151041_m,wooden_sword,2, +field_151042_j,iron_ingot,2, +field_151043_k,gold_ingot,2, +field_151044_h,coal,2, +field_151045_i,diamond,2, +field_151046_w,diamond_pickaxe,2, +field_151047_v,diamond_shovel,2, +field_151048_u,diamond_sword,2, +field_151049_t,stone_axe,2, +field_151050_s,stone_pickaxe,2, +field_151051_r,stone_shovel,2, +field_151052_q,stone_sword,2, +field_151053_p,wooden_axe,2, +field_151054_z,bowl,2, +field_151055_y,stick,2, +field_151056_x,diamond_axe,2, +field_151057_cb,name_tag,2, +field_151058_ca,lead,2, +field_151059_bz,fire_charge,2, +field_151060_bw,speckled_melon,2, +field_151061_bv,ender_eye,2, +field_151062_by,experience_bottle,2, +field_151063_bx,spawn_egg,2, +field_151064_bs,magma_cream,2, +field_151065_br,blaze_powder,2, +field_151066_bu,cauldron,2, +field_151067_bt,brewing_stand,2, +field_151068_bn,potionitem,2, +field_151069_bo,glass_bottle,2, +field_151070_bp,spider_eye,2, +field_151071_bq,fermented_spider_eye,2, +field_151072_bj,blaze_rod,2, +field_151073_bk,ghast_tear,2, +field_151074_bl,gold_nugget,2, +field_151075_bm,nether_wart,2, +field_151076_bf,chicken,2, +field_151077_bg,cooked_chicken,2, +field_151078_bh,rotten_flesh,2, +field_151079_bi,ender_pearl,2, +field_151080_bb,pumpkin_seeds,2, +field_151081_bc,melon_seeds,2, +field_151082_bd,beef,2, +field_151083_be,cooked_beef,2, +field_151084_co,record_wait,2, +field_151085_cm,record_ward,2, +field_151086_cn,record_11,2, +field_151087_ck,record_stal,2, +field_151088_cl,record_strad,2, +field_151089_ci,record_mall,2, +field_151090_cj,record_mellohi,2, +field_151091_cg,record_chirp,2, +field_151092_ch,record_far,2, +field_151093_ce,record_cat,2, +field_151094_cf,record_blocks,2, +field_151095_cc,command_block_minecart,2, +field_151096_cd,record_13,2, +field_151097_aZ,shears,2, +field_151098_aY,filled_map,2, +field_151099_bA,writable_book,2, +field_151100_aR,dye,2, +field_151101_aQ,cooked_fish,2, +field_151102_aT,sugar,2, +field_151103_aS,bone,2, +field_151104_aV,bed,2, +field_151105_aU,cake,2, +field_151106_aX,cookie,2, +field_151107_aW,repeater,2, +field_151108_aI,chest_minecart,2, +field_151109_aJ,furnace_minecart,2, +field_151110_aK,egg,2, +field_151111_aL,compass,2, +field_151112_aM,fishing_rod,2, +field_151113_aN,clock,2, +field_151114_aO,glowstone_dust,2, +field_151115_aP,fish,2, +field_151116_aA,leather,2, +field_151117_aB,milk_bucket,2, +field_151118_aC,brick,2, +field_151119_aD,clay_ball,2, +field_151120_aE,reeds,2, +field_151121_aF,paper,2, +field_151122_aG,book,2, +field_151123_aH,slime_ball,2, +field_151124_az,boat,2, +field_151125_bZ,diamond_horse_armor,2, +field_151126_ay,snowball,2, +field_151127_ba,melon,2, +field_151128_bU,quartz,2, +field_151129_at,lava_bucket,2, +field_151130_bT,netherbrick,2, +field_151131_as,water_bucket,2, +field_151132_bS,comparator,2, +field_151133_ar,bucket,2, +field_151134_bR,enchanted_book,2, +field_151135_aq,wooden_door,2, +field_151136_bY,golden_horse_armor,2, +field_151137_ax,redstone,2, +field_151138_bX,iron_horse_armor,2, +field_151139_aw,iron_door,2, +field_151140_bW,hopper_minecart,2, +field_151141_av,saddle,2, +field_151142_bV,tnt_minecart,2, +field_151143_au,minecart,2, +field_151144_bL,skull,2, +field_151145_ak,flint,2, +field_151146_bM,carrot_on_a_stick,2, +field_151147_al,porkchop,2, +field_151148_bJ,map,2, +field_151149_ai,golden_leggings,2, +field_151150_bK,golden_carrot,2, +field_151151_aj,golden_boots,2, +field_151152_bP,fireworks,2, +field_151153_ao,golden_apple,2, +field_151154_bQ,firework_charge,2, +field_151155_ap,sign,2, +field_151156_bN,nether_star,2, +field_151157_am,cooked_porkchop,2, +field_151158_bO,pumpkin_pie,2, +field_151159_an,painting,2, +field_151160_bD,item_frame,2, +field_151161_ac,diamond_helmet,2, +field_151162_bE,flower_pot,2, +field_151163_ad,diamond_chestplate,2, +field_151164_bB,written_book,2, +field_151165_aa,iron_leggings,2, +field_151166_bC,emerald,2, +field_151167_ab,iron_boots,2, +field_151168_bH,baked_potato,2, +field_151169_ag,golden_helmet,2, +field_151170_bI,poisonous_potato,2, +field_151171_ah,golden_chestplate,2, +field_151172_bF,carrot,2, +field_151173_ae,diamond_leggings,2, +field_151174_bG,potato,2, +field_151175_af,diamond_boots,2, +field_151186_x,animalsBredStat,2,the number of animals you have bred +field_151191_b,jsonSerializableValue,2, +field_151192_a,integerValue,2, +field_151227_b,logger,2, +field_151228_a,downloadThreadsStarted,2,The number of download threads that we have started so far. +field_151234_b,logger,2, +field_151242_b,multiplyDeBruijnBitPosition,2,"Though it looks like an array, this is really more like a mapping. Key (index of this array) is the upper 5 bits of the result of multiplying a 32-bit unsigned integer by the B(2, 5) De Bruijn sequence 0x077CB531. Value (value stored in the array) is the unique index (from the right) of the leftmost one-bit in a 32-bit unsigned integer that can cause the upper 5 bits to get that value. Used for highly optimized ""find the log-base-2 of this number"" calculations." +field_151245_t,iconItemStack,0, +field_151249_a,logger,2, +field_151254_d,locationOfBlockChange,2, +field_151257_b,networkSystem,2, +field_151258_a,logger,2, +field_151262_p,logger,2, +field_151272_f,networkManagers,2,A list containing all NetworkManager instances of all endpoints +field_151273_d,mcServer,2,Reference to the MinecraftServer object. +field_151274_e,endpoints,2,Contains all endpoints added to this NetworkSystem +field_151275_b,logger,2, +field_151276_c,eventLoops,2, +field_151277_a,isAlive,2,True if this NetworkSystem has never had his endpoints terminated +field_151291_a,VALUES,2, +field_151305_b,protocol,2, +field_151306_a,name,2, +field_151323_d,favicon,2, +field_151324_b,playerCount,2, +field_151325_c,protocolVersion,2, +field_151326_a,serverMotd,2, +field_151327_b,chunkPosY,2, +field_151328_c,chunkPosZ,2, +field_151329_a,chunkPosX,2, +field_151334_b,onlinePlayerCount,2, +field_151335_c,players,2, +field_151336_a,maxPlayers,2, +field_151343_f,eventParameter,2, +field_151345_e,eventID,2,Different for each blockID +field_151346_b,coordY,2, +field_151347_c,coordZ,2, +field_151348_a,coordX,2, +field_151355_a,alreadyRegistered,2,"Whether the blocks, items, etc have already been registered" +field_151360_e,AMPLIFIED,2,amplified world type +field_151361_l,hasNotificationData,2, +field_151369_A,lure,2, +field_151370_z,luckOfTheSea,2, +field_151403_d,id,2, +field_151404_e,BY_ID,2, +field_151418_d,id,2, +field_151421_c,ACTIONS,2, +field_151430_f,resourceKey,2, +field_151433_e,chatVisibility,2, +field_151441_H,showInventoryAchievementHint,0, +field_151442_I,mipmapLevels,0, +field_151443_J,anisotropicFiltering,0, +field_151444_V,keyBindSprint,0, +field_151445_Q,keyBindInventory,0, +field_151446_aD,mapSoundLevels,0, +field_151447_Z,keyBindScreenshot,0, +field_151448_g,fboEnable,0, +field_151449_az,typeListString,0, +field_151450_ay,gson,0, +field_151451_c,renderDistanceChunks,0, +field_151452_as,saturation,0, +field_151453_l,resourcePacks,0, +field_151454_ax,logger,0, +field_151455_aw,forceUnicodeFont,0, +field_151456_ac,keyBindsHotbar,0, +field_151457_aa,keyBindTogglePerspective,0, +field_151458_ab,keyBindSmoothCamera,0, +field_151471_f,keyCategory,0, +field_151472_e,keyCodeDefault,0, +field_151473_c,keybindSet,0, +field_151474_i,pressTime,0, +field_151476_f,logger,2, +field_151477_a,optionIds,0, +field_151478_a,logger,2, +field_151479_b,logger,2, +field_151480_b,logger,2, +field_151481_a,logger,2, +field_151500_b,grassEaterEntity,2,The entity owner of this AITask +field_151501_c,entityWorld,2,The world the grass eater entity is eating from +field_151502_a,eatingGrassTimer,2,Number of ticks since the entity started to eat grass +field_151504_e,doorBlock,2,The wooden door block +field_151505_a,logger,2, +field_151506_a,logger,2, +field_151516_b,logger,2, +field_151520_r,damageIsAbsolute,2,Whether or not the damage ignores modification by potion effects or enchantments. +field_151527_f,difficultyId,2, +field_151528_g,difficultyResourceKey,2, +field_151530_e,difficultyEnums,2, +field_151566_D,dragonEgg,2, +field_151567_E,portal,2, +field_151568_F,cake,2, +field_151569_G,web,2, +field_151570_A,cactus,2, +field_151571_B,clay,2, +field_151572_C,gourd,2, +field_151573_f,iron,2, +field_151574_g,anvil,2, +field_151575_d,wood,2, +field_151576_e,rock,2, +field_151577_b,grass,2, +field_151578_c,ground,2, +field_151579_a,air,2, +field_151580_n,cloth,2, +field_151581_o,fire,2, +field_151582_l,vine,2, +field_151583_m,sponge,2, +field_151584_j,leaves,2, +field_151585_k,plants,2, +field_151586_h,water,2, +field_151587_i,lava,2, +field_151588_w,ice,2, +field_151589_v,coral,2, +field_151590_u,tnt,2, +field_151591_t,redstoneLight,2, +field_151592_s,glass,2, +field_151593_r,carpet,2, +field_151594_q,circuits,2, +field_151595_p,sand,2, +field_151596_z,craftedSnow,2,The material for crafted snow. +field_151597_y,snow,2, +field_151598_x,packedIce,2, +field_151629_c,logger,2, +field_151645_D,redColor,2, +field_151646_E,blackColor,2, +field_151647_F,goldColor,2, +field_151648_G,diamondColor,2, +field_151649_A,blueColor,2, +field_151650_B,brownColor,2, +field_151651_C,greenColor,2, +field_151652_H,lapisColor,2, +field_151653_I,emeraldColor,2, +field_151654_J,obsidianColor,2, +field_151655_K,netherrackColor,2, +field_151656_f,tntColor,2, +field_151657_g,iceColor,2, +field_151658_d,sandColor,2, +field_151659_e,clothColor,2, +field_151660_b,airColor,2, +field_151661_c,grassColor,2, +field_151662_n,waterColor,2, +field_151663_o,woodColor,2, +field_151664_l,dirtColor,2, +field_151665_m,stoneColor,2, +field_151666_j,snowColor,2, +field_151667_k,clayColor,2, +field_151668_h,ironColor,2, +field_151669_i,foliageColor,2, +field_151670_w,grayColor,2, +field_151671_v,pinkColor,2, +field_151672_u,limeColor,2, +field_151673_t,yellowColor,2, +field_151674_s,lightBlueColor,2, +field_151675_r,magentaColor,2, +field_151676_q,adobeColor,2, +field_151677_p,quartzColor,2, +field_151678_z,purpleColor,2, +field_151679_y,cyanColor,2, +field_151680_x,silverColor,2, +field_151687_a,logger,2, +field_152127_m,streamIndicator,0, +field_152175_f,supportedProtocols,0, +field_152176_i,serverResourcePacks,0, +field_152177_g,time,0, +field_152350_aA,skinManager,0, +field_152351_aB,scheduledTasks,0, +field_152352_aC,mcThread,0, +field_152353_at,stream,0, +field_152354_ay,mojangLogo,0, +field_152355_az,sessionService,0, +field_152356_J,twitchDetails,0, +field_152364_T,authService,2, +field_152365_W,profileRepo,2, +field_152366_X,profileCache,2, +field_152367_a,USER_CACHE_FILE,2, +field_152391_aS,STREAM_COMPRESSIONS,0, +field_152392_aT,STREAM_CHAT_MODES,0, +field_152393_aU,STREAM_CHAT_FILTER_MODES,0, +field_152394_aV,STREAM_MIC_MODES,0, +field_152395_am,keyBindFullscreen,0, +field_152396_an,keyBindStreamStartStop,0, +field_152397_ao,keyBindStreamPauseUnpause,0, +field_152398_ap,keyBindStreamCommercials,0, +field_152399_aq,keyBindStreamToggleMic,0, +field_152400_J,streamBytesPerPixel,0, +field_152401_K,streamMicVolume,0, +field_152402_L,streamGameVolume,0, +field_152403_M,streamKbps,0, +field_152404_N,streamFps,0, +field_152405_O,streamCompression,0, +field_152406_P,streamSendMetadata,0, +field_152407_Q,streamPreferredServer,0, +field_152408_R,streamChatEnabled,0, +field_152409_S,streamChatUserFilter,0, +field_152410_T,streamMicToggleBehavior,0, +field_152426_d,sessionType,0, +field_152429_d,sessionType,0, +field_152441_a,locationStreamIndicator,0, +field_152442_b,mc,0, +field_152451_a,INFINITE,2, +field_152452_b,spaceAllocated,2, +field_152453_c,spaceRead,2, +field_152461_c,logMarkerStat,2, +field_152462_h,STATISTICS,2, +field_152463_r,isEncrypted,2, +field_152478_a,LOGGER,2, +field_152479_b,NETSTAT_MARKER,2, +field_152482_a,packetId,2, +field_152483_b,data,2, +field_152496_a,totalBytes,2, +field_152497_b,count,2, +field_152498_c,averageBytes,2, +field_152587_j,resourceMode,0, +field_152588_l,lanServer,0, +field_152594_d,motd,0, +field_152613_a,FILE_PLAYERBANS,2, +field_152614_b,FILE_IPBANS,2, +field_152615_c,FILE_OPS,2, +field_152616_d,FILE_WHITELIST,2, +field_152630_a,SKIN_PART_TYPES,0, +field_152642_a,value,2, +field_152659_a,dateFormat,2, +field_152660_b,gson,2, +field_152665_g,usercacheFile,2, +field_152693_a,logger,2, +field_152694_b,gson,2, +field_152695_c,saveFile,2, +field_152696_d,values,2, +field_152697_e,lanServer,2, +field_152698_f,saveFileFormat,2, +field_152728_a,OLD_IPBAN_FILE,2, +field_152729_b,OLD_PLAYERBAN_FILE,2, +field_152730_c,OLD_OPS_FILE,2, +field_152731_d,OLD_WHITELIST_FILE,2, +field_152732_e,LOGGER,2, +field_152793_a,DEFAULT_SKIN,0, +field_152794_b,THREAD_POOL,0, +field_152795_c,textureManager,0, +field_152796_d,skinCacheDir,0, +field_152797_e,sessionService,0, +field_152798_f,skinCacheLoader,0, +field_152861_B,logger,0, +field_152879_o,broadcastState,0, +field_152886_v,channelInfo,0, +field_152951_c,broadcastController,0, +field_153018_p,LOGGER,0, +field_153207_o,GL_LINK_STATUS,0, +field_153208_p,GL_COMPILE_STATUS,0, +field_153209_q,GL_VERTEX_SHADER,0, +field_153210_r,GL_FRAGMENT_SHADER,0, +field_154332_n,eula,1, +field_154340_k,selectionList,0, +field_154349_a,LOG,1, +field_154350_b,eulaFile,1, +field_154351_c,acceptedEULA,1, +field_155771_h,logger,1, +field_164003_c,threadName,1, +field_164004_h,THREAD_ID,1, +field_164005_h,LOGGER,1, +field_164248_b,LOGGER,1, +field_164249_a,serverGuiFont,1, +field_164439_d,LOGGER,1, +field_164440_a,LOGGER,1, +field_70009_b,buffer,2,RCon string buffer for log. +field_70010_a,instance,2,Single instance of RConConsoleSource +field_70116_cv,serverPosZ,0, +field_70117_cu,serverPosY,0, +field_70118_ct,serverPosX,0, +field_70121_D,boundingBox,2,Axis aligned bounding box. +field_70122_E,onGround,2, +field_70123_F,isCollidedHorizontally,2,True if after a move this entity has collided with something on X- or Z-axis +field_70124_G,isCollidedVertically,2,True if after a move this entity has collided with something on Y-axis +field_70125_A,rotationPitch,2,Entity rotation Pitch +field_70126_B,prevRotationYaw,2, +field_70127_C,prevRotationPitch,2, +field_70128_L,isDead,2,"gets set by setEntityDead, so this must be the flag whether an Entity is dead (inactive may be better term)" +field_70129_M,yOffset,2, +field_70130_N,width,2,How wide this entity is considered to be +field_70131_O,height,2,How high this entity is considered to be +field_70132_H,isCollided,2,True if after a move this entity has collided with something either vertically or horizontally +field_70133_I,velocityChanged,2, +field_70134_J,isInWeb,2, +field_70136_U,lastTickPosZ,2,"The entity's Z coordinate at the previous tick, used to calculate position during rendering routines" +field_70137_T,lastTickPosY,2,"The entity's Y coordinate at the previous tick, used to calculate position during rendering routines" +field_70138_W,stepHeight,2,How high this entity can step up when running into a block to try to get over it (currently make note the entity will always step up this amount and not just the amount needed) +field_70139_V,yOffset2,2,Appears to be a secondary offset along the y-axis +field_70140_Q,distanceWalkedModified,2,The distance walked multiplied by 0.6 +field_70141_P,prevDistanceWalkedModified,2,The previous ticks distance walked multiplied by 0.6 +field_70142_S,lastTickPosX,2,"The entity's X coordinate at the previous tick, used to calculate position during rendering routines" +field_70143_R,fallDistance,2, +field_70144_Y,entityCollisionReduction,2,Reduces the velocity applied by entity collisions by the specified percent. +field_70145_X,noClip,2,Whether this entity won't clip with collision or not (make note it won't disable gravity) +field_70146_Z,rand,2, +field_70147_f,entityRiderYawDelta,2, +field_70148_d,firstUpdate,2, +field_70149_e,entityRiderPitchDelta,2, +field_70150_b,nextStepDistance,2,The distance that has to be exceeded in order to triger a new step sound and an onEntityWalking event on a block +field_70151_c,fire,2, +field_70152_a,nextEntityID,2, +field_70153_n,riddenByEntity,2,The entity that is riding this entity +field_70154_o,ridingEntity,2,The entity we are currently riding +field_70155_l,renderDistanceWeight,2, +field_70156_m,preventEntitySpawning,2,Blocks entities from spawning when they do their AABB check to make sure the spot is clear of entities that can prevent spawning. +field_70158_ak,ignoreFrustumCheck,2,Render entity even if it is outside the camera frustum. Only true in EntityFish for now. Used in RenderGlobal: render if ignoreFrustumCheck or in frustum. +field_70159_w,motionX,2,Entity motion X +field_70160_al,isAirBorne,2, +field_70161_v,posZ,2,Entity position Z +field_70162_ai,chunkCoordY,2, +field_70163_u,posY,2,Entity position Y +field_70164_aj,chunkCoordZ,2, +field_70165_t,posX,2,Entity position X +field_70166_s,prevPosZ,2, +field_70167_r,prevPosY,2, +field_70168_am,myEntitySize,2, +field_70169_q,prevPosX,2, +field_70170_p,worldObj,2,Reference to the World object. +field_70171_ac,inWater,2,Whether this entity is currently inside of water (if it handles water movement that is) +field_70172_ad,hurtResistantTime,2,"Remaining time an entity will be ""immune"" to further damage after being hurt." +field_70173_aa,ticksExisted,2,How many ticks has this entity had ran since being alive +field_70174_ab,fireResistance,2,The amount of ticks you have to stand inside of fire before be set on fire +field_70175_ag,addedToChunk,2,Has this entity been added to the chunk its within +field_70176_ah,chunkCoordX,2, +field_70177_z,rotationYaw,2,Entity rotation Yaw +field_70178_ae,isImmuneToFire,2, +field_70179_y,motionZ,2,Entity motion Z +field_70180_af,dataWatcher,2, +field_70181_x,motionY,2,Entity motion Y +field_70191_b,throwableShake,2, +field_70192_c,thrower,2,The entity that threw this throwable item. +field_70193_a,inGround,2, +field_70194_h,ticksInGround,2, +field_70195_i,ticksInAir,2, +field_70197_d,potionDamage,2,The damage value of the thrown potion that this EntityPotion represents. +field_70221_f,shatterOrDrop,2, +field_70222_d,targetZ,2,'z' location the eye should float towards. +field_70223_e,despawnTimer,2, +field_70224_b,targetX,2,'x' location the eye should float towards. +field_70225_c,targetY,2,'y' location the eye should float towards. +field_70230_d,accelerationZ,2, +field_70232_b,accelerationX,2, +field_70233_c,accelerationY,2, +field_70234_an,ticksInAir,2, +field_70235_a,shootingEntity,2, +field_70236_j,ticksAlive,2, +field_70238_i,inGround,2, +field_70249_b,arrowShake,2,Seems to be some sort of timer for animating an arrow. +field_70250_c,shootingEntity,2,The owner of this arrow. +field_70251_a,canBePickedUp,2,1 if the player can pick up the arrow +field_70252_j,ticksInGround,2, +field_70253_h,inData,2, +field_70254_i,inGround,2, +field_70255_ao,damage,2, +field_70256_ap,knockbackStrength,2,The amount of knockback an arrow applies when it hits a mob. +field_70257_an,ticksInAir,2, +field_70259_a,entityDragonObj,2,The dragon entity this dragon part belongs to +field_70260_b,health,2, +field_70261_a,innerRotation,2,Used to create the rotation animation when rendering the crystal. +field_70262_b,lightningState,2,"Declares which state the lightning bolt is in. Whether it's in the air, hit the ground, etc." +field_70263_c,boltLivingTime,2,Determines the time before the EntityLightningBolt is destroyed. It is a random integer decremented over time. +field_70264_a,boltVertex,2,A random long that is used to change the vertex of the lightning rendered in RenderLightningBolt +field_70272_f,boatZ,2, +field_70273_g,boatYaw,2, +field_70274_d,boatX,2, +field_70275_e,boatY,2, +field_70276_b,speedMultiplier,2, +field_70277_c,boatPosRotationIncrements,2, +field_70278_an,velocityZ,0, +field_70279_a,isBoatEmpty,2,true if no player in boat +field_70280_j,velocityY,0, +field_70281_h,boatPitch,2, +field_70282_i,velocityX,0, +field_70290_d,hoverStart,2,The EntityItem's random initial float height. +field_70291_e,health,2,"The health of this EntityItem. (For example, damage for tools)" +field_70292_b,age,2,The age of this EntityItem (used to animate it up and down as well as expire it) +field_70456_f,currentItemStack,0,The current ItemStack. +field_70457_g,itemStack,2, +field_70458_d,player,2,The player whose inventory this is. +field_70459_e,inventoryChanged,2,Set true whenever the inventory changes. Nothing sets it false so you will have to write your own code to check it and reset the value. +field_70460_b,armorInventory,2,An array of 4 item stacks containing the currently worn armor pieces. +field_70461_c,currentItem,2,The index of the currently held item (0-8). +field_70462_a,mainInventory,2,An array of 36 item stacks indicating the main player inventory (including the visible bar). +field_70464_b,inventoryWidth,2,the width of the crafting inventory +field_70465_c,eventHandler,2,Class containing the callbacks for the events on_GUIClosed and on_CraftMaxtrixChanged. +field_70466_a,stackList,2,List of the stacks in the crafting matrix. +field_70467_a,stackResult,2,A list of one item containing the result of the crafting formula +field_70472_d,currentRecipe,2, +field_70473_e,currentRecipeIndex,2, +field_70474_b,theInventory,2, +field_70475_c,thePlayer,2, +field_70476_a,theMerchant,2, +field_70477_b,upperChest,2,Inventory object corresponding to double chest upper part +field_70478_c,lowerChest,2,Inventory object corresponding to double chest lower part +field_70479_a,name,2,Name of the chest. +field_70481_b,slotsCount,2, +field_70482_c,inventoryContents,2, +field_70483_a,inventoryTitle,2, +field_70488_a,associatedChest,2, +field_70499_f,isInReverse,2, +field_70500_g,matrix,2,Minecart rotational logic matrix +field_70506_as,velocityZ,0, +field_70507_ar,velocityY,0, +field_70508_aq,velocityX,0, +field_70509_j,minecartY,2, +field_70510_h,turnProgress,2,appears to be the progress of the turn +field_70511_i,minecartX,2, +field_70512_ao,minecartYaw,2, +field_70513_ap,minecartPitch,2, +field_70514_an,minecartZ,2, +field_70516_a,fuse,2,How long the fuse is +field_70520_f,tickCounter1,2, +field_70522_e,art,2, +field_70529_d,xpOrbHealth,2,The health of this XP orb. +field_70530_e,xpValue,2,This is how much XP this orb has. +field_70531_b,xpOrbAge,2,The age of the XP orb in ticks. +field_70533_a,xpColor,2,A constantly increasing value that RenderXPOrb uses to control the colour shifting (Green / yellow) +field_70544_f,particleScale,0, +field_70545_g,particleGravity,0, +field_70546_d,particleAge,0, +field_70547_e,particleMaxAge,0, +field_70548_b,particleTextureJitterX,0, +field_70549_c,particleTextureJitterY,0, +field_70550_a,particleIcon,0,The icon field from which the given particle pulls its texture. +field_70551_j,particleBlue,0,"The blue amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70552_h,particleRed,0,"The red amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70553_i,particleGreen,0,"The green amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0." +field_70554_ao,interpPosY,0, +field_70555_ap,interpPosZ,0, +field_70556_an,interpPosX,0, +field_70557_a,theEntity,0,Entity that had been hit and done the Critical hit on. +field_70558_as,particleName,0, +field_70559_ar,maximumLife,0, +field_70560_aq,currentLife,0, +field_70561_a,initialParticleScale,0, +field_70562_a,flameScale,0,the scale of the flame FX +field_70563_a,materialType,0,the material type for dropped items/blocks +field_70564_aq,bobTimer,0,The height of the current bob +field_70570_a,reddustParticleScale,0, +field_70571_a,portalParticleScale,0, +field_70572_as,portalPosZ,0, +field_70573_ar,portalPosY,0, +field_70574_aq,portalPosX,0, +field_70575_a,particleScaleOverTime,0, +field_70576_a,footstepAge,0, +field_70577_ar,currentFootSteps,0, +field_70578_aq,footstepMaxAge,0, +field_70579_a,timeSinceStart,0, +field_70580_aq,maximumTime,0,the maximum time for the explosion +field_70583_ar,theRenderEngine,0,The Rendering Engine. +field_70585_a,noteParticleScale,0, +field_70586_a,lavaParticleScale,0, +field_70587_a,smokeParticleScale,0, +field_70588_a,snowDigParticleScale,0, +field_70590_a,baseSpellTextureIndex,0,Base spell texture index +field_70591_a,entityToPickUp,0, +field_70592_at,yOffs,0,renamed from yOffset to fix shadowing Entity.yOffset +field_70593_as,maxAge,0, +field_70594_ar,age,0, +field_70595_aq,entityPickingUp,0, +field_70696_bz,attackTarget,2,The active target the Task system uses for tracking +field_70698_bv,defaultPitch,2, +field_70699_by,navigator,2, +field_70700_bx,numTicksToChaseTarget,2,How long to keep a specific target entity +field_70701_bs,moveForward,2, +field_70702_br,moveStrafing,2, +field_70703_bu,isJumping,2,used to check whether entity is jumping. +field_70704_bt,randomYawVelocity,2, +field_70705_bn,newRotationPitch,2,The new yaw rotation to be applied to the entity. +field_70708_bq,entityAge,2,The age of this EntityLiving (used to determine when it dies) +field_70709_bj,newPosX,2,The new X position to be applied to the entity. +field_70710_bk,newPosY,2,The new Y position to be applied to the entity. +field_70712_bm,newRotationYaw,2,The new yaw rotation to be applied to the entity. +field_70713_bf,activePotionsMap,2, +field_70714_bg,tasks,2,"Passive tasks (wandering, look, idle, ...)" +field_70715_bh,targetTasks,2,"Fighting tasks (used by monsters, wolves, ocelots)" +field_70716_bi,newPosRotationIncrements,2,The number of updates over which the new position and rotation are to be applied to the entity. +field_70717_bb,attackingPlayer,2,The most recent player that has attacked this entity +field_70718_bc,recentlyHit,2,"Set to 60 when hit by the player or the player's wolf, then decrements. Used to determine whether the entity should drop items on death." +field_70720_be,arrowHitTimer,2, +field_70721_aZ,limbSwingAmount,2, +field_70722_aY,prevLimbSwingAmount,2, +field_70723_bA,senses,2, +field_70724_aR,attackTime,2, +field_70725_aQ,deathTime,2,"The amount of time remaining this entity should act 'dead', i.e. have a corpse in the world." +field_70726_aT,cameraPitch,2, +field_70727_aS,prevCameraPitch,2, +field_70728_aV,experienceValue,2,The experience points the Entity gives. +field_70729_aU,dead,2,"This gets set on entity death, but never used. Looks like a duplicate of isDead" +field_70732_aI,prevSwingProgress,2, +field_70733_aJ,swingProgress,2, +field_70735_aL,prevHealth,2, +field_70737_aN,hurtTime,2,The amount of time remaining this entity should act 'hurt'. (Visual appearance of red tint) +field_70738_aO,maxHurtTime,2,What the hurt time was max set to last. +field_70739_aP,attackedAtYaw,2,The yaw at which this entity was last attacked from. +field_70744_aE,scoreValue,2,"The score value of the Mob, the amount of points the mob is worth." +field_70746_aG,landMovementFactor,2,"A factor used to determine how far this entity will move each tick if it is walking on land. Adjusted by speed, and slipperiness of the current block." +field_70747_aH,jumpMovementFactor,2,A factor used to determine how far this entity will move each tick if it is jumping or falling. +field_70749_g,lookHelper,2, +field_70752_e,potionsNeedUpdate,2,Whether the DataWatcher needs to be updated with the active potions +field_70754_ba,limbSwing,2,Only relevant when limbYaw is not 0(the entity is moving). Influences where in its swing legs and arms currently are. +field_70755_b,entityLivingToAttack,2,"is only being set, has no uses as of MC 1.1" +field_70756_c,revengeTimer,2, +field_70757_a,livingSoundTime,2,Number of ticks since this EntityLiving last produced its sound +field_70758_at,prevRotationYawHead,2,Entity head rotation yaw at previous tick +field_70759_as,rotationYawHead,2,Entity head rotation yaw +field_70760_ar,prevRenderYawOffset,2, +field_70761_aq,renderYawOffset,2, +field_70762_j,bodyHelper,2, +field_70765_h,moveHelper,2, +field_70767_i,jumpHelper,2,Entity jumping helper +field_70771_an,maxHurtResistantTime,2, +field_70772_bD,maximumHomeDistance,2,If -1 there is no maximum distance +field_70773_bE,jumpTicks,2,Number of ticks since last jump +field_70775_bC,homePosition,2, +field_70776_bF,currentTarget,2,This entity's current target. +field_70786_d,pathToEntity,2, +field_70787_b,hasAttacked,2,returns true if a creature has attacked recently only used for creepers and skeletons +field_70788_c,fleeingTick,2,Used to make a creature speed up and wander away when hit. +field_70789_a,entityToAttack,2,The Entity this EntityCreature is set to attack. +field_70791_f,attackCounter,2, +field_70792_g,targetedEntity,2, +field_70793_d,waypointZ,2, +field_70794_e,prevAttackCounter,2, +field_70795_b,waypointX,2, +field_70796_c,waypointY,2, +field_70797_a,courseChangeCooldown,2, +field_70798_h,aggroCooldown,2,Cooldown time between target loss and new target aquirement. +field_70810_d,slimeJumpDelay,2,ticks until this slime jumps again +field_70811_b,squishFactor,2, +field_70812_c,prevSquishFactor,2, +field_70813_a,squishAmount,2, +field_70826_g,stareTimer,2,A player must stare at an enderman for 5 ticks before it becomes aggressive. This field counts those ticks. +field_70827_d,carriableBlocks,2, +field_70828_e,teleportDelay,2,Counter to delay the teleportation of an enderman towards the currently attacked target +field_70833_d,timeSinceIgnited,2,The amount of time since the creeper was close enough to the player to ignite +field_70834_e,lastActiveTime,2,"Time when this creeper was last in an active state (Messed up code here, probably causes creeper animation to go weird)" +field_70837_d,angerLevel,2,Above zero if this PigZombie is Angry. +field_70838_e,randomSoundDelay,2,A random delay until this PigZombie next makes a sound. +field_70843_d,allySummonCooldown,2,A cooldown before this entity will search for another Silverfish to join them in battle. +field_70847_d,heightOffset,2,Random offset used in floating behaviour +field_70848_e,heightOffsetUpdateTime,2,ticks until heightOffset is randomized +field_70855_f,attackTimer,2, +field_70856_g,holdRoseTick,2, +field_70857_d,villageObj,2, +field_70858_e,homeCheckTimer,2,"deincrements, and a distance-to-home check is done at 0" +field_70859_f,squidYaw,2, +field_70860_g,prevSquidYaw,2, +field_70861_d,squidPitch,2, +field_70862_e,prevSquidPitch,2, +field_70863_bz,randomMotionSpeed,2, +field_70864_bA,rotationVelocity,2,change in squidRotation in radians. +field_70865_by,lastTentacleAngle,2,the last calculated angle of the tentacles in radians +field_70866_j,tentacleAngle,2,angle of the tentacles in radians +field_70867_h,squidRotation,2,"appears to be rotation in radians; we already have pitch & yaw, so this completes the triumvirate." +field_70868_i,prevSquidRotation,2,previous squidRotation in radians +field_70869_bD,randomMotionVecY,2, +field_70870_bE,randomMotionVecZ,2, +field_70872_bC,randomMotionVecX,2, +field_70881_d,inLove,2, +field_70882_e,breeding,2,This is representation of a counter for reproduction progress. (Note that this is different from the inLove which represent being in Love-Mode) +field_70883_f,destPos,2, +field_70887_j,timeUntilNextEgg,2,The time until the next egg is spawned. +field_70898_d,fleeceColorTable,2,Holds the RGB table of the sheep colors - in OpenGL glColor3f values - used to render the sheep colored fleece. +field_70899_e,sheepTimer,2,Used to control movement as well as wool regrowth. Set to 40 on handleHealthUpdate and counts down with each tick. +field_70911_d,aiSit,2, +field_70914_e,aiTempt,2,"The tempt AI task for this mob, used to prevent taming while it is fleeing." +field_70924_f,headRotationCourseOld,2, +field_70925_g,isWet,2,true is the wolf is wet else false +field_70926_e,headRotationCourse,2,Float used to smooth the rotation of the wolf head +field_70927_j,prevTimeWolfIsShaking,2, +field_70928_h,isShaking,2,True if the wolf is shaking else False +field_70929_i,timeWolfIsShaking,2,This time increases while wolf is shaking and emitting water particles. +field_70935_b,customer,0,This merchant's current player customer. +field_70936_c,recipeList,0,The MerchantRecipeList instance. +field_70937_a,theMerchantInventory,0,Instance of Merchants Inventory. +field_70952_f,isMating,2, +field_70953_g,isPlaying,2, +field_70954_d,villageObj,2, +field_70955_e,randomTickDivider,2, +field_70956_bz,wealth,2, +field_70958_bB,villagersSellingList,2,Selling list of Villagers items. +field_70959_by,needsInitilization,2,addDefaultEquipmentAndRecipies is called if this is true +field_70960_bC,blacksmithSellingList,2,Selling list of Blacksmith items. +field_70961_j,timeUntilReset,2, +field_70962_h,buyingPlayer,2,This villager's current customer. +field_70963_i,buyingList,2,Initialises the MerchantRecipeList.java +field_70976_f,ringBufferIndex,2,Index into the ring buffer. Incremented once per tick and restarts at 0 once it reaches the end of the buffer. +field_70977_g,dragonPartArray,2,An array containing all body parts of this dragon +field_70978_d,targetZ,2, +field_70979_e,ringBuffer,2,Ring buffer array for the last 64 Y-positions and yaw rotations. Used to calculate offsets for the animations. +field_70980_b,targetX,2, +field_70981_c,targetY,2, +field_70982_bz,dragonPartTail3,2, +field_70983_bA,dragonPartWing1,2, +field_70984_by,dragonPartTail2,2, +field_70985_j,dragonPartTail1,2, +field_70986_h,dragonPartHead,2,The head bounding box of a dragon +field_70987_i,dragonPartBody,2,The body bounding box of a dragon +field_70988_bD,animTime,2,"Animation time, used to control the speed of the animation cycles (wings flapping, jaw opening, etc.)" +field_70989_bE,forceNewTarget,2,Force selecting a new flight target at next tick if set to true. +field_70990_bB,dragonPartWing2,2, +field_70991_bC,prevAnimTime,2,Animation time at previous tick. +field_70992_bH,healingEnderCrystal,2,The current endercrystal that is healing this dragon +field_70993_bI,target,2, +field_70994_bF,slowed,2,"Activated if the dragon is flying though obsidian, white stone or bedrock. Slows movement and animation speed." +field_70995_bG,deathTicks,2, +field_71067_cb,experienceTotal,2,The total amount of experience the player has. This also includes the amount of experience within their Experience Bar. +field_71068_ca,experienceLevel,2,The current experience level the player is on. +field_71069_bz,inventoryContainer,2,The Container for the player's inventory (which opens when they press E) +field_71070_bA,openContainer,2,The Container the player has open. +field_71071_by,inventory,2,Inventory of the player +field_71072_f,itemInUseCount,2,This field starts off equal to getMaxItemUseDuration and is decremented on each tick +field_71073_d,startMinecartRidingCoordinate,2,Holds the coordinate of the player when enter a minecraft to ride. +field_71074_e,itemInUse,2,"This is the item that is in use when the player is holding down the useItemButton (e.g., bow, food, sword)" +field_71075_bZ,capabilities,2,The player's capabilities. (See class PlayerCapabilities) +field_71076_b,sleepTimer,2, +field_71077_c,spawnChunk,2,holds the spawn chunk of the player +field_71078_a,theInventoryEnderChest,2, +field_71080_cy,prevTimeInPortal,0,The amount of time an entity has been in a Portal the previous tick +field_71081_bT,playerLocation,2,the current location of the player +field_71083_bS,sleeping,2,Boolean value indicating weather a player is sleeping or not +field_71086_bY,timeInPortal,0,The amount of time an entity has been in a Portal +field_71087_bX,inPortal,2,Whether the entity is inside a Portal +field_71088_bW,timeUntilPortal,2, +field_71090_bL,xpCooldown,2,Used by EntityPlayer to prevent too many xp orbs from getting absorbed at once. +field_71093_bK,dimension,2,"Which dimension the player is in (-1 = the Nether, 0 = normal world)" +field_71100_bB,foodStats,2,"The food object of the player, the general hunger logic." +field_71101_bC,flyToggleTimer,2,"Used to tell if the player pressed jump twice. If this is at 0 and it's pressed (And they are allowed to fly, as defined in the player's movementInput) it sets this to 7. If it's pressed and it's greater than 0 enable fly." +field_71102_ce,speedInAir,2, +field_71104_cf,fishEntity,2,"An instance of a fishing rod's hook. If this isn't null, the icon image of the fishing rod is slightly different" +field_71106_cc,experience,2,The current amount of experience the player has within their Experience Bar. +field_71107_bF,prevCameraYaw,2, +field_71108_cd,speedOnGround,2, +field_71109_bG,cameraYaw,2, +field_71129_f,loadedChunks,2,LinkedList that holds the loaded chunks. +field_71130_g,destroyedItemsNetCache,2,entities added to this list will be packet29'd to the player +field_71131_d,managedPosX,2,player X position as seen by PlayerManager +field_71132_e,managedPosZ,2,player Z position as seen by PlayerManager +field_71133_b,mcServer,2,Reference to the MinecraftServer object. +field_71134_c,theItemInWorldManager,2,The ItemInWorldManager belonging to this player +field_71135_a,playerNetServerHandler,2,The NetServerHandler assigned to this player by the ServerConfigurationManager. +field_71136_j,playerConqueredTheEnd,2,"Set when a player beats the ender dragon, used to respawn the player at the spawn point while retaining inventory and XP" +field_71137_h,isChangingQuantityOnly,2,set to true when player is moving quantity of items from one inventory to another(crafting) but item in either slot is not changed +field_71138_i,ping,2, +field_71139_cq,currentWindowId,2,The currently in use window ID. Incremented every time a window is opened. +field_71140_co,chatColours,2, +field_71143_cn,chatVisibility,2, +field_71144_ck,lastExperience,2,Amount of experience the client was last set to +field_71146_ci,lastFoodLevel,2,set to foodStats.GetFoodLevel +field_71147_cj,wasHungry,2,set to foodStats.getSaturationLevel() == 0.0F each tick +field_71148_cg,translator,2, +field_71149_ch,lastHealth,2,amount of health the client was last set to +field_71154_f,renderArmYaw,0, +field_71155_g,renderArmPitch,0, +field_71156_d,sprintToggleTimer,0,"Used to tell if the player pressed forward twice. If this is at 0 and it's pressed (And they are allowed to sprint, aka enough food on the ground etc) it sets this to 7. If it's pressed and it's greater than 0 enable sprinting." +field_71157_e,sprintingTicksLeft,0,Ticks left before sprinting is disabled. +field_71158_b,movementInput,0, +field_71159_c,mc,0, +field_71163_h,prevRenderArmYaw,0, +field_71164_i,prevRenderArmPitch,0, +field_71168_co,ticksSinceMovePacket,0,"Counter used to ensure that the server sends a move packet (Packet11, 12 or 13) to the client at least once a second." +field_71169_cp,hasSetHealth,0,has the client player's health been set? +field_71170_cm,wasSneaking,0,Used to check if the player has started or stopped sneaking and needs to tell the server. +field_71171_cn,wasSprinting,0,Used to check if the player has started or stopped sprinting and needs to tell the server. +field_71172_ck,oldRotationPitch,0, +field_71173_cl,wasOnGround,0,Check if was on ground last update +field_71174_a,sendQueue,0, +field_71175_ci,oldPosZ,0, +field_71176_cj,oldRotationYaw,0, +field_71177_cg,oldMinY,0,Old Minimum Y of the bounding box +field_71178_ch,oldPosY,0, +field_71179_j,oldPosX,0, +field_71180_f,otherPlayerMPYaw,0, +field_71181_g,otherPlayerMPPitch,0, +field_71182_d,otherPlayerMPY,0, +field_71183_e,otherPlayerMPZ,0, +field_71184_b,otherPlayerMPPosRotationIncrements,0, +field_71185_c,otherPlayerMPX,0, +field_71186_a,isItemInUse,0, +field_71280_D,buildLimit,2,Maximum build height. +field_71284_A,pvpEnabled,2,Indicates whether PvP is active on the server or not. +field_71285_B,allowFlight,2,Determines if flight is allowed or not. +field_71286_C,motd,2,The server MOTD string. +field_71287_L,worldName,0, +field_71288_M,isDemo,2, +field_71289_N,enableBonusChest,2, +field_71290_O,worldIsBeingDeleted,2,"If true, there is no need to save chunks or stop the server, because that is already being done." +field_71292_I,serverKeyPair,2, +field_71293_J,serverOwner,2,Username of the server owner (for integrated servers) +field_71294_K,folderName,2, +field_71295_T,startProfiling,2, +field_71296_Q,serverIsRunning,2, +field_71298_S,userMessage,2, +field_71299_R,timeOfLastWarning,2,"Set when warned for ""Can't keep up"", which triggers again after 15 seconds." +field_71302_d,currentTask,2,The task the server is currently working on(and will output on outputPercentRemaining). +field_71303_e,percentDone,2,The percentage of the current task finished so far. +field_71304_b,theProfiler,2, +field_71305_c,worldServers,2,The server world instances. +field_71307_n,usageSnooper,2,The PlayerUsageSnooper instance. +field_71308_o,anvilFile,2, +field_71309_l,mcServer,2,Instance of Minecraft Server. +field_71310_m,anvilConverterForAnvilFile,2, +field_71311_j,tickTimeArray,2, +field_71312_k,timeOfLastDimensionTick,2,Stats are [dimension][tick%100] system.nanoTime is stored. +field_71315_w,tickCounter,2,Incremented every tick. +field_71316_v,serverStopped,2,Indicates to other classes that the server is safely stopped. +field_71317_u,serverRunning,2,Indicates whether the server is running or not. Set to false to initiate a shutdown. +field_71318_t,serverConfigManager,2,The ServerConfigurationManager instance. +field_71319_s,serverPort,2,The server's port. +field_71320_r,hostname,1,The server's hostname. +field_71321_q,commandManager,2, +field_71322_p,playersOnline,2,List of names of players who are online. +field_71323_z,canSpawnNPCs,2, +field_71324_y,canSpawnAnimals,2,True if the server has animals turned on. +field_71325_x,onlineMode,2,True if the server is in online mode. +field_71335_s,guiIsEnabled,1, +field_71337_q,gameType,1, +field_71338_p,canSpawnStructures,1, +field_71339_n,theRConThreadMain,1, +field_71340_o,settings,1, +field_71341_l,pendingCommandList,1, +field_71342_m,theRConThreadQuery,1, +field_71345_q,lanServerPing,0, +field_71346_p,isPublic,0, +field_71348_o,isGamePaused,0, +field_71349_l,mc,0,The Minecraft instance. +field_71350_m,theWorldSettings,0, +field_71412_D,mcDataDir,0, +field_71415_G,inGameHasFocus,0,Does the actual gameplay have focus. If so then mouse and keys will effect the player instead of menus. +field_71417_B,mouseHelper,0,Mouse helper instance. +field_71419_L,debugUpdateTime,0,Approximate time (in ms) of last update to debug string +field_71420_M,fpsCounter,0,holds the current fps +field_71421_N,prevFrameTime,0, +field_71422_O,currentServerData,0, +field_71423_H,systemTime,0, +field_71424_I,mcProfiler,0,The profiler instance +field_71425_J,running,0,Set to true to keep the game loop running. Set to false by shutdown() to allow the game loop to exit cleanly. +field_71426_K,debug,0,String that shows the debug information +field_71427_U,usageSnooper,0,Instance of PlayerUsageSnooper. +field_71428_T,timer,0, +field_71429_W,leftClickCounter,0,Mouse left click counter +field_71431_Q,fullscreen,0, +field_71432_P,theMinecraft,0,Set to 'this' in Minecraft constructor; used by some settings get methods +field_71433_S,crashReporter,0,Instance of CrashReport. +field_71434_R,hasCrashed,0, +field_71435_Y,tempDisplayHeight,0,Display height +field_71436_X,tempDisplayWidth,0,Display width +field_71437_Z,theIntegratedServer,0,Instance of IntegratedServer. +field_71438_f,renderGlobal,0, +field_71439_g,thePlayer,0, +field_71440_d,displayHeight,0, +field_71441_e,theWorld,0, +field_71442_b,playerController,0, +field_71443_c,displayWidth,0, +field_71444_a,memoryReserve,0,A 10MiB preallocation to ensure the heap is reasonably sized. +field_71445_n,isGamePaused,0, +field_71446_o,renderEngine,0,The RenderEngine instance used by Minecraft +field_71449_j,session,0, +field_71451_h,renderViewEntity,0,"The Entity from which the renderer determines the render viewpoint. Currently is always the parent Minecraft class's 'thePlayer' instance. Modification of its location, rotation, or other settings at render time will modify the camera likewise, with the caveat of triggering chunk rebuilds as it moves, making it unsuitable for changing the viewpoint mid-render." +field_71452_i,effectRenderer,0, +field_71453_ak,myNetworkManager,0, +field_71454_w,skipRenderWorld,0,Skip render world +field_71455_al,integratedServerIsRunning,0, +field_71456_v,ingameGUI,0, +field_71457_ai,joinPlayerCounter,0,Join player counter +field_71458_u,guiAchievement,0,Gui achievement +field_71459_aj,isDemo,0, +field_71460_t,entityRenderer,0, +field_71461_s,loadingScreen,0, +field_71462_r,currentScreen,0,The GuiScreen that's being displayed at the moment. +field_71464_q,standardGalacticFontRenderer,0, +field_71465_an,debugProfilerName,0,Profiler currently displayed in the debug screen pie chart +field_71466_p,fontRendererObj,0,The font renderer used for displaying and measuring text +field_71467_ac,rightClickDelayTimer,0,"When you place a block, it's set to 6, decremented once per tick, when it's 0, you can place another block." +field_71468_ad,refreshTexturePacksScheduled,0,"Checked in Minecraft's while(running) loop, if true it's set to false and the textures refreshed." +field_71469_aa,saveLoader,0, +field_71470_ab,debugFPS,0,"This is set to fpsCounter every debug screen update, and is shown on the debug screen. It's also sent as part of the usage snooping." +field_71474_y,gameSettings,0,The game settings that currently hold effect. +field_71475_ae,serverName,0, +field_71476_x,objectMouseOver,0,The ray trace hit that the mouse is over. +field_71477_af,serverPort,0, +field_71510_d,crashReportFile,2,File of crash report. +field_71511_b,cause,2,"The Throwable that is the ""cause"" for this crash and Crash Report." +field_71512_c,crashReportSections,2,Holds the keys and values of all crash report sections. +field_71513_a,description,2,Description of the crash report. +field_71533_a,theAdmin,2, +field_71561_b,commandSet,2,The set of ICommand objects currently loaded. +field_71562_a,commandMap,2,Map of Strings to the ICommand objects they represent +field_71567_b,allowedCharactersArray,2,Array of the special characters that are allowed in any text drawing of Minecraft. +field_71572_b,posY,2,the y coordinate +field_71573_c,posZ,2,the z coordinate +field_71574_a,posX,2, +field_71576_a,theReportedExceptionCrashReport,2,Instance of CrashReport. +field_71577_f,enderEyeMetaToDirection,2, +field_71578_g,rotateLeft,2,Maps a direction to that to the left of it. +field_71579_d,facingToDirection,2,Maps a Facing value (3D) to a Direction value (2D). +field_71580_e,rotateOpposite,2,Maps a direction to that opposite of it. +field_71581_b,offsetZ,2, +field_71582_c,directionToFacing,2,Maps a Direction value (2D) to a Facing value (3D). +field_71583_a,offsetX,2, +field_71584_h,bedDirection,2, +field_71585_d,offsetsZForSide,2,gives the offset required for this axis to get the block at that side. +field_71586_b,offsetsXForSide,2,gives the offset required for this axis to get the block at that side. +field_71587_c,offsetsYForSide,2,gives the offset required for this axis to get the block at that side. +field_71588_a,oppositeSide,2,Converts a side to the opposite side. This is the same as XOR'ing it with 1. +field_72307_f,hitVec,2,The vector position of the hit +field_72308_g,entityHit,2,The hit entity +field_72309_d,blockZ,2,z coordinate of the block ray traced against +field_72310_e,sideHit,2,"Which side was hit. If its -1 then it went the full length of the ray trace. Bottom = 0, Top = 1, East = 2, West = 3, North = 4, South = 5." +field_72311_b,blockX,2,x coordinate of the block ray traced against +field_72312_c,blockY,2,y coordinate of the block ray traced against +field_72313_a,typeOfHit,2,"What type of ray trace hit was this? 0 = block, 1 = entity" +field_72334_f,maxZ,2, +field_72336_d,maxX,2, +field_72337_e,maxY,2, +field_72338_b,minY,2, +field_72339_c,minZ,2, +field_72340_a,minX,2, +field_72400_f,mcServer,2,Reference to the MinecraftServer object. +field_72401_g,bannedPlayers,2, +field_72402_d,viewDistance,2, +field_72403_e,dateFormat,2, +field_72404_b,playerEntityList,2,A list of player entities that exist on this server. +field_72405_c,maxPlayers,2,The maximum number of players that can be connected at a time. +field_72407_n,commandsAllowedForAll,2,True if all players are allowed to use commands (cheats). +field_72408_o,playerPingIndex,2,"index into playerEntities of player to ping, updated every tick; currently hardcoded to max at 200 players" +field_72409_l,whiteListEnforced,2,Server setting to only allow OPs and whitelisted players to join the server. +field_72410_m,gameType,2, +field_72411_j,whiteListedPlayers,2,The Set of all whitelisted players. +field_72412_k,playerNBTManagerObj,2,Reference to the PlayerNBTManager object. +field_72413_h,bannedIPs,2, +field_72414_i,ops,2,A set containing the OPs. +field_72416_e,hostPlayerData,0,"Holds the NBT data for the host player's save file, so this can be written to level.dat." +field_72448_b,yCoord,2,Y coordinate of Vec3D +field_72449_c,zCoord,2,Z coordinate of Vec3D +field_72450_a,xCoord,2,X coordinate of Vec3D +field_72595_f,requestIdAsString,1,The request ID stored as a String +field_72596_d,requestId,1,A client-provided request ID associated with this query. +field_72597_e,challengeValue,1,A unique string of bytes used to verify client auth +field_72598_b,timestamp,1,The creation timestamp for this auth +field_72599_c,randomChallenge,1,A random integer value to be used for client response authentication +field_72614_f,serverSocketList,1,A list of registered ServerSockets +field_72616_e,socketList,1,A list of registered DatagramSockets +field_72617_b,server,1,Reference to the IServer object. +field_72618_c,rconThread,1,Thread for this runnable class +field_72619_a,running,1,"True if the Thread is running, false otherwise" +field_72629_g,lastAuthCheckTime,1,The time of the last client auth check +field_72630_n,buffer,1,A buffer for incoming DatagramPackets +field_72631_o,incomingPacket,1,Storage for incoming DatagramPackets +field_72632_l,worldName,1,The name of the currently loaded world +field_72633_m,querySocket,1,The remote socket querying the server +field_72634_j,maxPlayers,1,The maximum number of players allowed on the server +field_72635_k,serverMotd,1,The current server message of the day +field_72636_h,queryPort,1,The RCon query port +field_72637_i,serverPort,1,Port the server is running on +field_72638_v,lastQueryResponseTime,1,The time of the last query response sent +field_72639_u,output,1,The RConQuery output stream +field_72640_t,time,1,"The time that this RConThreadQuery was constructed, from (new Date()).getTime()" +field_72641_s,queryClients,1,A map of SocketAddress objects to RConThreadQueryAuth objects +field_72642_r,serverHostname,1,The hostname of the running server +field_72643_q,queryHostname,1,The hostname of this query server +field_72647_g,rconPort,1,Port RCon is running on +field_72648_l,clientThreads,1,A map of client addresses to their running Threads +field_72649_j,serverSocket,1,The RCon ServerSocket. +field_72650_k,rconPassword,1,The RCon password +field_72651_h,serverPort,1,Port the server is running on +field_72652_i,hostname,1,Hostname RCon is running on +field_72657_g,loggedIn,1,"True if the client has succefssfully logged into the RCon, otherwise false" +field_72658_j,rconPassword,1,The RCon password +field_72659_h,clientSocket,1,The client's Socket connection +field_72660_i,buffer,1,A buffer for incoming Socket data +field_72666_a,hexDigits,1,Translation array of decimal to hex digits +field_72673_b,output,1,ByteArrayOutputStream wrapper +field_72674_a,byteArrayOutput,1,Output stream +field_72696_f,xzDirectionsConst,2,"x, z direction vectors: east, south, west, north" +field_72697_d,playerInstancesToUpdate,2,the playerInstances(chunks) that need to be updated +field_72698_e,playerViewRadius,2,Number of chunks the server sends to the client. Valid 3<=x<=15. In server.properties. +field_72699_b,players,2,players in the current instance +field_72700_c,playerInstances,2,the hash of all playerInstances created +field_72701_a,theWorldServer,2, +field_72737_D,maxBlockZ,0,Maximum block Z +field_72738_E,damagedBlocks,0,Stores blocks currently being broken. Key is entity ID of the thing doing the breaking. Value is a DestroyBlockProgress +field_72739_F,renderDistanceChunks,0, +field_72740_G,renderEntitiesStartupCounter,0,Render entities startup counter (init value=2) +field_72741_A,minBlockZ,0,Minimum block Z +field_72742_B,maxBlockX,0,Maximum block X +field_72743_C,maxBlockY,0,Maximum block Y +field_72744_L,renderersBeingClipped,0,How many renderers are being clipped by the frustrum this frame +field_72745_M,renderersBeingOccluded,0,How many renderers are being occluded this frame +field_72746_N,renderersBeingRendered,0,How many renderers are actually being rendered this frame +field_72747_O,renderersSkippingRenderPass,0,How many renderers are skipping rendering due to not having a render pass this frame +field_72748_H,countEntitiesTotal,0,Count entities total +field_72749_I,countEntitiesRendered,0,Count entities rendered +field_72750_J,countEntitiesHidden,0,Count entities hidden +field_72751_K,renderersLoaded,0,How many renderers are loaded this frame that try to be rendered +field_72752_Q,worldRenderersCheckIndex,0,World renderers check index +field_72753_P,dummyRenderInt,0,Dummy render int +field_72754_S,allRenderLists,0,All render lists (fixed length 4) +field_72755_R,glRenderLists,0,List of OpenGL lists for the current render pass +field_72756_f,prevSortZ,0,Previous Z position when the renderers were sorted. (Once the distance moves more than 4 units they will be resorted) +field_72757_g,frustumCheckOffset,0,The offset used to determine if a renderer is one of the sixteenth that are being updated this frame +field_72758_d,prevSortX,0,Previous x position when the renderers were sorted. (Once the distance moves more than 4 units they will be resorted) +field_72759_e,prevSortY,0,Previous y position when the renderers were sorted. (Once the distance moves more than 4 units they will be resorted) +field_72761_c,occlusionResult,0,Occlusion query result +field_72763_n,renderChunksTall,0, +field_72764_o,renderChunksDeep,0, +field_72765_l,worldRenderers,0, +field_72766_m,renderChunksWide,0, +field_72767_j,worldRenderersToUpdate,0, +field_72768_k,sortedWorldRenderers,0, +field_72769_h,theWorld,0, +field_72770_i,renderEngine,0,The RenderEngine instance used by RenderGlobal +field_72771_w,glSkyList,0,OpenGL sky list +field_72772_v,starGLCallList,0,The star GL Call list +field_72773_u,cloudTickCounter,0,counts the cloud render updates. Used with mod to stagger some updates +field_72774_t,occlusionEnabled,0,Is occlusion testing enabled +field_72775_s,glOcclusionQueryBase,0,OpenGL occlusion query base +field_72777_q,mc,0,A reference to the Minecraft object. +field_72778_p,glRenderListBase,0,OpenGL render lists base +field_72779_z,minBlockY,0,Minimum block Y +field_72780_y,minBlockX,0,Minimum block X +field_72781_x,glSkyList2,0,OpenGL sky list 2 +field_72782_b,theWorldServer,2,The WorldServer object. +field_72783_a,mcServer,2,Reference to the MinecraftServer object. +field_72792_d,maxTrackingDistanceThreshold,2, +field_72793_b,trackedEntities,2,"List of tracked entities, used for iteration operations on tracked entities." +field_72794_c,trackedEntityHashTable,2,Used for identity lookup of tracked entities. +field_72795_a,theWorld,2, +field_72814_d,hasExtendedLevels,2,set by !chunk.getAreLevelsEmpty +field_72815_e,worldObj,2,Reference to the World object. +field_72816_b,chunkZ,2, +field_72817_c,chunkArray,2, +field_72818_a,chunkX,2, +field_72982_D,villageCollectionObj,2, +field_72983_E,villageSiegeObj,2, +field_72984_F,theProfiler,2, +field_72985_G,spawnHostileMobs,2,indicates if enemies are spawned or not +field_72986_A,worldInfo,2,"holds information about a world (size on disk, time, spawn point, seed, ...)" +field_72987_B,findingSpawnPoint,2,"if set, this flag forces a request to load a chunk to load the chunk rather than defaulting to the world's chunkprovider's dummy if possible" +field_72988_C,mapStorage,2, +field_72990_M,ambientTickCountdown,2,number of ticks until the next random ambients play +field_72992_H,spawnPeacefulMobs,2,A flag indicating whether we should spawn peaceful mobs. +field_72993_I,activeChunkSet,2,populated by chunks that are within 9 chunks of any player +field_72994_J,lightUpdateBlockList,2,"is a temporary list of blocks and light values used when updating light levels. Holds up to 32x32x32 blocks (the maximum influence of a light source.) Every element is a packed bit value: 0000000000LLLLzzzzzzyyyyyyxxxxxx. The 4-bit L is a light level used when darkening blocks. 6-bit numbers x, y and z represent the block's offset from the original block, plus 32 (i.e. value of 31 would mean a -1 offset" +field_72995_K,isRemote,2,"This is set to true for client worlds, and false for server worlds." +field_72996_f,loadedEntityList,2,A list of all Entities in all currently-loaded chunks +field_72997_g,unloadedEntityList,2, +field_72998_d,collidingBoundingBoxes,2, +field_72999_e,scheduledUpdatesAreImmediate,2,boolean; if true updates scheduled by scheduleBlockUpdate happen immediately +field_73001_c,cloudColour,2, +field_73003_n,prevRainingStrength,2, +field_73004_o,rainingStrength,2, +field_73005_l,updateLCG,2,"Contains the current Linear Congruential Generator seed for block updates. Used with an A value of 3 and a C value of 0x3c6ef35f, producing a highly planar series of values ill-suited for choosing random blocks in a 16x128x16 field." +field_73006_m,DIST_HASH_MAGIC,2,magic number used to generate fast random numbers for 3d distribution within a chunk +field_73007_j,weatherEffects,2,a list of all the lightning entities +field_73008_k,skylightSubtracted,2,How much light is subtracted from full daylight +field_73010_i,playerEntities,2,Array list of players in the world. +field_73011_w,provider,2,The WorldProvider instance that World uses. +field_73012_v,rand,2,RNG for World. +field_73013_u,difficultySetting,2,"Whether monsters are enabled or not. (1 = on, 0 = off)" +field_73016_r,lastLightningBolt,2,Set to 2 whenever a lightning bolt is generated in SSP. Decrements if > 0 in updateWeather(). Value appears to be unused. +field_73017_q,thunderingStrength,2, +field_73018_p,prevThunderingStrength,2, +field_73019_z,saveHandler,2, +field_73020_y,chunkProvider,2,Handles chunk operations and caching +field_73021_x,worldAccesses,2, +field_73032_d,entityList,0,"Contains all entities for this client, both spawned and non-spawned." +field_73033_b,clientChunkProvider,0,The ChunkProviderClient instance +field_73034_c,entityHashSet,0,The hash set of entities handled by this client. Uses the entity's ID as the hash set's key. +field_73035_a,sendQueue,0,The packets that need to be sent to the server. +field_73036_L,entitySpawnQueue,0,Contains all entities for this client that were not spawned due to a non-present chunk. The game will attempt to spawn up to 10 pending entities with each subsequent tick until the spawn queue is empty. +field_73037_M,mc,0, +field_73038_N,previousActiveChunkSet,0, +field_73058_d,disableLevelSaving,2,Whether level saving is disabled or not +field_73059_b,theChunkProviderServer,2, +field_73061_a,mcServer,2, +field_73062_L,theEntityTracker,2, +field_73063_M,thePlayerManager,2, +field_73064_N,pendingTickListEntriesHashSet,2, +field_73065_O,pendingTickListEntriesTreeSet,2,All work to do in future ticks. +field_73066_T,entityIdMap,2,An IntHashMap of entity IDs (integers) to their Entity objects. +field_73068_P,allPlayersSleeping,2,is false if there are no players +field_73069_S,bonusChestContent,2, +field_73071_a,demoWorldSettings,2, +field_73072_L,demoWorldSeed,2, +field_73086_f,curBlockX,2, +field_73087_g,curBlockY,2, +field_73088_d,isDestroyingBlock,2,True if the player is destroying a block +field_73089_e,initialDamage,2, +field_73090_b,thisPlayerMP,2,The EntityPlayerMP object that this object is connected to. +field_73091_c,gameType,2, +field_73092_a,theWorld,2,The world object that this object is connected to. +field_73093_n,initialBlockDamage,2, +field_73094_o,durabilityRemainingOnBlock,2, +field_73095_l,posY,2, +field_73096_m,posZ,2, +field_73097_j,receivedFinishDiggingPacket,2,"Set to true when the ""finished destroying block"" packet is received but the block wasn't fully damaged yet. The block will not be destroyed while this is false." +field_73098_k,posX,2, +field_73099_h,curBlockZ,2, +field_73100_i,curblockDamage,2, +field_73103_d,demoTimeExpired,2, +field_73111_d,partialBlockZ,0, +field_73112_e,partialBlockProgress,0,damage ranges from 1 to 10. -1 causes the client to delete the partial block renderer. +field_73113_b,partialBlockX,0, +field_73114_c,partialBlockY,0, +field_73115_a,miningPlayerEntId,0,"entity ID of the player associated with this partially destroyed Block. Used to identify the Blocks in the client Renderer, max 1 per player on a server" +field_73126_f,encodedPosZ,2,The encoded entity Z position. +field_73127_g,encodedRotationYaw,2,The encoded entity yaw rotation. +field_73128_d,encodedPosX,2,The encoded entity X position. +field_73129_e,encodedPosY,2,The encoded entity Y position. +field_73130_b,trackingDistanceThreshold,2, +field_73131_c,updateFrequency,2,check for sync when ticks % updateFrequency==0 +field_73132_a,trackedEntity,2,The entity that this EntityTrackerEntry tracks. +field_73133_n,playerEntitiesUpdated,2, +field_73134_o,trackingPlayers,2,Holds references to all the players that are currently receiving position updates for this entity. +field_73135_l,motionZ,2, +field_73136_m,updateCounter,2, +field_73137_j,lastTrackedEntityMotionX,2, +field_73138_k,lastTrackedEntityMotionY,2, +field_73139_h,encodedRotationPitch,2,The encoded entity pitch rotation. +field_73140_i,lastHeadMotion,2, +field_73141_v,ridingEntity,2, +field_73142_u,ticksSinceLastForcedTeleport,2,"every 400 ticks a full teleport packet is sent, rather than just a ""move me +x"" command, so that position remains fully synced." +field_73143_t,sendVelocityUpdates,2, +field_73144_s,firstUpdateDone,2, +field_73145_r,lastTrackedEntityPosZ,2, +field_73146_q,lastTrackedEntityPosY,2, +field_73147_p,lastTrackedEntityPosX,2, +field_73161_b,random,2, +field_73163_a,worldObj,2, +field_73167_f,noiseData3,2, +field_73168_g,noiseData4,2, +field_73169_d,noiseData1,2, +field_73170_e,noiseData2,2, +field_73171_b,netherNoiseGen7,2, +field_73172_c,genNetherBridge,2, +field_73173_a,netherNoiseGen6,2, +field_73174_n,netherrackExculsivityNoiseGen,2,Determines whether something other than nettherack can be generated at a location +field_73175_o,worldObj,2,Is the world that the nether is getting generated. +field_73176_l,netherNoiseGen3,2, +field_73177_m,slowsandGravelNoiseGen,2,Determines whether slowsand or gravel can be generated at a location +field_73178_j,netherNoiseGen1,2,A NoiseGeneratorOctaves used in generating nether terrain +field_73179_k,netherNoiseGen2,2, +field_73180_h,noiseData5,2, +field_73181_i,hellRNG,2, +field_73182_t,netherCaveGenerator,2, +field_73183_s,netherrackExclusivityNoise,2,Holds the noise used to determine whether something other than netherrack can be generated at a location +field_73184_r,gravelNoise,2, +field_73185_q,slowsandNoise,2,Holds the noise used to determine whether slowsand can be generated at a location +field_73186_p,noiseField,2, +field_73190_f,noiseData4,2, +field_73191_g,noiseData5,2, +field_73192_d,noiseData2,2, +field_73193_e,noiseData3,2, +field_73194_b,noiseGen5,2, +field_73195_c,noiseData1,2, +field_73196_a,noiseGen4,2, +field_73197_n,densities,2, +field_73198_o,biomesForGeneration,2,The biomes that are used to generate the chunk +field_73199_l,noiseGen3,2, +field_73200_m,endWorld,2, +field_73201_j,noiseGen1,2, +field_73202_k,noiseGen2,2, +field_73204_i,endRNG,2, +field_73212_b,noiseGen6,2,A NoiseGeneratorOctaves used in generating terrain +field_73213_c,mobSpawnerNoise,2, +field_73214_a,noiseGen5,2,A NoiseGeneratorOctaves used in generating terrain +field_73220_k,rand,2,RNG. +field_73223_w,mineshaftGenerator,2,Holds Mineshaft Generator +field_73224_v,villageGenerator,2,Holds Village Generator +field_73225_u,strongholdGenerator,2,Holds Stronghold Generator +field_73226_t,caveGenerator,2, +field_73227_s,stoneNoise,2, +field_73229_q,mapFeaturesEnabled,2,are map structures going to be generated (e.g. strongholds) +field_73230_p,worldObj,2,Reference to the World object. +field_73231_z,biomesForGeneration,2,The biomes that are used to generate the chunk +field_73232_y,ravineGenerator,2,Holds ravine generator +field_73233_x,scatteredFeatureGenerator,2, +field_73235_d,worldObj,0,Reference to the World object. +field_73236_b,chunkMapping,0,The mapping between ChunkCoordinates and Chunks that ChunkProviderClient maintains. +field_73237_c,chunkListing,0,"This may have been intended to be an iterable version of all currently loaded chunks (MultiplayerChunkCache), with identical contents to chunkMapping's values. However it is never actually added to." +field_73238_a,blankChunk,0,The completely empty chunk used by ChunkProviderClient when field_73236_b doesn't contain the requested coordinates. +field_73244_f,id2ChunkMap,2,map of chunk Id's to Chunk instances +field_73245_g,loadedChunks,2, +field_73246_d,serverChunkGenerator,2,chunk generator object. Calls to load nonexistent chunks are forwarded to this object. +field_73247_e,chunkLoader,2, +field_73248_b,droppedChunksSet,2, +field_73249_c,dummyChunk,2,"a dummy chunk, returned in place of an actual chunk." +field_73250_a,chunkLoadOverride,2,"if set, this flag forces a request to load a chunk to load the chunk rather than defaulting to the dummy if possible" +field_73251_h,worldObj,2, +field_73260_f,flagsYAreasToUpdate,2,Integer field where each bit means to make update 16x16x16 division of chunk (from bottom). +field_73262_e,numBlocksToUpdate,2,the number of blocks that need to be updated next tick +field_73263_b,playersWatchingChunk,2,the list of all players in this instance (chunk) +field_73264_c,currentChunk,2,the chunk the player currently resides in +field_73672_b,serverProperties,1,The server properties object. +field_73673_c,serverPropertiesFile,1,The server properties file. +field_73692_f,banEndDate,2, +field_73693_g,reason,2, +field_73694_d,banStartDate,2, +field_73695_e,bannedBy,2, +field_73698_a,dateFormat,2, +field_73701_b,sender,1, +field_73702_a,command,1,The command string. +field_73725_b,mc,0,A reference to the Minecraft object. +field_73726_c,currentlyDisplayedText,0,The text currently displayed (i.e. the argument to the last call to printText or func_73722_d) +field_73735_i,zLevel,0, +field_73837_f,updateCounter,0, +field_73838_g,recordPlaying,0,The string specifying which record music is playing +field_73839_d,mc,0, +field_73840_e,persistantChatGUI,0,ChatGUI instance that retains all previous chat data +field_73841_b,itemRenderer,0, +field_73842_c,rand,0, +field_73843_a,prevVignetteBrightness,0,Previous frame vignette brightness (slowly changes by 1% each frame) +field_73844_j,recordIsPlaying,0, +field_73845_h,recordPlayingUpFor,0,How many ticks the record playing message will be displayed +field_73973_d,buttonResetDemo,0, +field_73974_b,updateCounter,0,Counts the number of screen updates. +field_73975_c,splashText,0,The splash message. +field_73976_a,rand,0,The RNG used by the Main Menu Screen. +field_73977_n,viewportTexture,0,Texture allocated for the current viewport of the main menu's panorama background. +field_73978_o,titlePanoramaPaths,0,An array of all the paths to the panorama pictures. +field_73979_m,panoramaTimer,0,"Timer used to rotate the panorama, increases every tick." +field_74276_f,lastHRTime,0,"The time reported by the high-resolution clock at the last call of updateTimer(), in seconds" +field_74277_g,lastSyncSysClock,0,"The time reported by the system clock at the last sync, in milliseconds" +field_74278_d,timerSpeed,0,A multiplier to make the timer (and therefore the game) go faster or slower. 0.5 makes the game run at half-speed. +field_74279_e,elapsedPartialTicks,0,"How much time has elapsed since the last tick, in ticks (range: 0.0 - 1.0)." +field_74280_b,elapsedTicks,0,"How many full ticks have turned over since the last call to updateTimer(), capped at 10." +field_74281_c,renderPartialTicks,0,"How much time has elapsed since the last tick, in ticks, for use by display rendering routines (range: 0.0 - 1.0). This field is frozen if the display is paused to eliminate jitter." +field_74282_a,ticksPerSecond,0,The number of timer ticks per second of real time +field_74283_j,timeSyncAdjustment,0,"A ratio used to sync the high-resolution clock to the system clock, updated once per second" +field_74284_h,lastSyncHRClock,0,"The time reported by the high-resolution clock at the last sync, in milliseconds" +field_74286_b,username,0, +field_74293_b,pixelBuffer,0,A buffer to hold pixel values returned by OpenGL. +field_74294_c,pixelValues,0,The built-up array that contains all the pixel values returned by OpenGL. +field_74295_a,dateFormat,0, +field_74310_D,keyBindChat,0, +field_74311_E,keyBindSneak,0, +field_74312_F,keyBindAttack,0, +field_74313_G,keyBindUseItem,0, +field_74314_A,keyBindJump,0, +field_74316_C,keyBindDrop,0, +field_74317_L,mc,0, +field_74318_M,difficulty,0, +field_74319_N,hideGUI,0, +field_74320_O,thirdPersonView,0, +field_74321_H,keyBindPlayerList,0, +field_74322_I,keyBindPickBlock,0, +field_74323_J,keyBindCommand,0, +field_74324_K,keyBindings,0, +field_74325_U,debugCamEnable,0, +field_74326_T,smoothCamera,0,Smooth Camera Toggle +field_74327_W,debugCamRate,0,Change rate for debug camera +field_74328_V,noclipRate,0,No clipping movement rate +field_74329_Q,showDebugProfilerChart,0, +field_74330_P,showDebugInfo,0,true if debug info should be displayed instead of version +field_74331_S,noclip,0,No clipping for singleplayer +field_74332_R,lastServer,0,The lastServer string. +field_74333_Y,gammaSetting,0, +field_74334_X,fovSetting,0, +field_74335_Z,guiScale,0,GUI scale +field_74336_f,viewBobbing,0, +field_74337_g,anaglyph,0, +field_74338_d,invertMouse,0, +field_74341_c,mouseSensitivity,0, +field_74343_n,chatVisibility,0, +field_74344_o,chatColours,0, +field_74345_l,clouds,0,Clouds flag +field_74347_j,fancyGraphics,0, +field_74348_k,ambientOcclusion,0,Smooth Lighting +field_74349_h,advancedOpengl,0,Advanced OpenGL +field_74350_i,limitFramerate,0, +field_74351_w,keyBindForward,0, +field_74352_v,enableVsync,0, +field_74353_u,fullScreen,0, +field_74354_ai,optionsFile,0, +field_74355_t,snooperEnabled,0, +field_74357_r,chatOpacity,0, +field_74358_q,chatLinksPrompt,0, +field_74359_p,chatLinks,0, +field_74362_aa,particleSetting,0,"Determines amount of particles. 0 = All, 1 = Decreased, 2 = Minimal" +field_74363_ab,language,0,Game settings language +field_74364_ag,PARTICLES,0, +field_74366_z,keyBindRight,0, +field_74367_ae,GUISCALES,0,GUI scale values +field_74368_y,keyBindBack,0, +field_74370_x,keyBindLeft,0, +field_74375_b,deltaY,0,Mouse delta Y this frame +field_74377_a,deltaX,0,Mouse delta X this frame +field_74385_A,enumFloat,0, +field_74386_B,enumBoolean,0, +field_74387_C,enumString,0, +field_74512_d,keyCode,0, +field_74513_e,pressed,0,because _303 wanted me to call it that(Caironater) +field_74514_b,hash,0, +field_74515_c,keyDescription,0, +field_74516_a,keybindArray,0, +field_74522_a,colorBuffer,0,Float buffer used to set OpenGL material colors +field_74530_b,listDummy,0, +field_74531_a,mapDisplayLists,0, +field_74541_b,lineString,0, +field_74542_c,chatLineID,0,"int value to refer to existing Chat Lines, can be 0 which means unreferrable" +field_74543_a,updateCounterCreated,0,GUI Update Counter value this Line was created at +field_74586_f,rotationZ,0,The Z component of the entity's yaw rotation +field_74587_g,rotationYZ,0,The Y component (scaled along the Z axis) of the entity's pitch rotation +field_74588_d,rotationX,0,The X component of the entity's yaw rotation +field_74589_e,rotationXZ,0,The combined X and Z components of the entity's pitch rotation +field_74590_b,objectY,0,The calculated view object Y coordinate +field_74591_c,objectZ,0,The calculated view object Z coordinate +field_74592_a,objectX,0,The calculated view object X coordinate +field_74593_l,objectCoords,0,The computed view object coordinates +field_74594_j,modelview,0,The current GL modelview matrix +field_74595_k,projection,0,The current GL projection matrix +field_74596_h,rotationXY,0,The Y component (scaled along the X axis) of the entity's pitch rotation +field_74597_i,viewport,0,The current GL viewport +field_74746_b,tagType,2,The type byte for the tags in the list - they must all be of the same type. +field_74747_a,tagList,2,The array list containing the tags encapsulated in this list. +field_74748_a,data,2,The integer value for the tag. +field_74749_a,intArray,2,The array of saved integers +field_74750_a,data,2,The float value for the tag. +field_74751_a,data,2,The string value for the tag (cannot be empty). +field_74752_a,data,2,The short value for the tag. +field_74753_a,data,2,The long value for the tag. +field_74754_a,byteArray,2,The byte array stored in the tag. +field_74755_a,data,2,The double value for the tag. +field_74756_a,data,2,The byte value for the tag. +field_74784_a,tagMap,2,"The key-value pairs for the tag. Each key is a UTF string, each value is a tag." +field_74816_c,languageList,2, +field_74817_a,instance,2,Is the private singleton instance of StringTranslate. +field_74839_a,localizedName,2, +field_74845_a,errorObjects,2, +field_74885_f,coordBaseMode,2,switches the Coordinate System base off the Bounding Box +field_74886_g,componentType,2,The type ID of this component. +field_74887_e,boundingBox,2, +field_74896_a,villagersSpawned,2,The number of villagers that have been spawned in this component. +field_74909_b,isTallHouse,2, +field_74910_c,tablePosition,2, +field_74913_b,isRoofAccessible,2, +field_74917_c,hasMadeChest,2, +field_74918_a,villageBlacksmithChestContents,2,List of items that Village's Blacksmith chest can contain. +field_74926_d,structVillagePieceWeight,2, +field_74927_b,inDesert,2,Boolean that determines if the village is in a desert or not. +field_74928_c,terrainType,2,"World terrain type, 0 for normal, 1 for flap map" +field_74929_a,worldChunkMngr,2, +field_74931_h,structureVillageWeightedPieceList,2,"Contains List of all spawnable Structure Piece Weights. If no more Pieces of a type can be spawned, they are removed from this list" +field_74934_a,averageGroundLevel,2, +field_74937_b,scatteredFeatureSizeY,2,The size of the bounding box for this feature in the Y axis +field_74938_c,scatteredFeatureSizeZ,2,The size of the bounding box for this feature in the Z axis +field_74939_a,scatteredFeatureSizeX,2,The size of the bounding box for this feature in the X axis +field_74941_i,itemsToGenerateInTemple,2,List of items to generate in chests of Temples. +field_74942_n,junglePyramidsRandomScatteredStones,2,List of random stones to be generated in the Jungle Pyramid. +field_74943_l,junglePyramidsChestContents,2,List of Chest contents to be generated in the Jungle Pyramid chests. +field_74944_m,junglePyramidsDispenserContents,2,List of Dispenser contents to be generated in the Jungle Pyramid dispensers. +field_74949_a,roomsLinkedToTheRoom,2,List of other Mineshaft components linked to this room. +field_74952_b,isMultipleFloors,2, +field_74953_a,corridorDirection,2, +field_74955_d,sectionCount,2,A count of the different sections of this mine. The space between ceiling supports. +field_74956_b,hasSpiders,2, +field_74957_c,spawnerPlaced,2, +field_74958_a,hasRails,2, +field_74968_b,primaryWeights,2,Contains the list of valid piece weights for the set of nether bridge structure pieces. +field_74969_c,secondaryWeights,2,Contains the list of valid piece weights for the secondary set of nether bridge structure pieces. +field_74970_a,theNetherBridgePieceWeight,2,Instance of StructureNetherBridgePieceWeight. +field_74972_a,fillSeed,2, +field_74976_a,hasSpawner,2, +field_75002_c,hasMadeChest,2, +field_75003_a,strongholdChestContents,2,List of items that Stronghold chests can contain. +field_75005_a,hasSpawner,2, +field_75007_b,strongholdLibraryChestContents,2,List of items that Stronghold Library chests can contain. +field_75008_c,isLargeRoom,2, +field_75013_b,roomType,2, +field_75014_c,strongholdRoomCrossingChestContents,2,Items that could generate in the chest that is located in Stronghold Room Crossing. +field_75019_b,expandsX,2, +field_75020_c,expandsZ,2, +field_75025_b,strongholdPortalRoom,2, +field_75027_a,strongholdPieceWeight,2, +field_75038_b,rand,2,The RNG used by the MapGen classes. +field_75039_c,worldObj,2,This world object. +field_75040_a,range,2,The number of Chunks to gen-check in any given direction. +field_75053_d,structureMap,2,"Used to store a list of all structures that have been recursively generated. Used so that during recursive generation, the structure generator can avoid generating structures that intersect ones that have already been placed." +field_75054_f,terrainType,2,"World terrain type, 0 for normal, 1 for flat map" +field_75055_e,villageSpawnBiomes,2,A list of all the biomes villages can spawn in. +field_75056_f,ranBiomeCheck,2,is spawned false and set true once the defined BiomeGenBases were compared with the present ones +field_75057_g,structureCoords,2, +field_75060_e,spawnList,2, +field_75061_e,biomelist,2, +field_75065_b,selectedBlockMetaData,2, +field_75074_b,boundingBox,2, +field_75075_a,components,2,List of all StructureComponents that are part of this structure +field_75076_c,hasMoreThanTwoComponents,2,well ... thats what it does +field_75087_d,villagePiecesLimit,2, +field_75088_b,villagePieceWeight,2, +field_75089_c,villagePiecesSpawned,2, +field_75090_a,villagePieceClass,2,The Class object for the represantation of this village piece. +field_75096_f,flySpeed,2, +field_75097_g,walkSpeed,2, +field_75098_d,isCreativeMode,2,"Used to determine if creative mode is enabled, and therefore if items should be depleted on usage" +field_75099_e,allowEdit,2,Indicates whether the player is allowed to modify the surroundings +field_75100_b,isFlying,2,Sets/indicates whether the player is flying. +field_75101_c,allowFlying,2,whether or not to allow the player to fly when they double jump. +field_75102_a,disableDamage,2,Disables player damage. +field_75123_d,foodTimer,2,The player's food timer value. +field_75124_e,prevFoodLevel,2, +field_75125_b,foodSaturationLevel,2,The player's food saturation. +field_75126_c,foodExhaustionLevel,2,The player's food exhaustion. +field_75127_a,foodLevel,2,The player's food level. +field_75148_f,playerList,2, +field_75149_d,crafters,2,list of all people that need to be notified when this craftinventory changes +field_75150_e,transactionID,0, +field_75151_b,inventorySlots,2,the list of all slots in the inventory +field_75152_c,windowId,2, +field_75153_a,inventoryItemStacks,2,the list of all items(stacks) for the corresponding slot +field_75154_f,numRows,2, +field_75155_e,lowerChestInventory,2, +field_75156_f,lastCookTime,2, +field_75157_g,lastBurnTime,2, +field_75158_e,tileFurnace,2, +field_75159_h,lastItemBurnTime,2, +field_75160_f,craftResult,2, +field_75161_g,worldObj,2, +field_75162_e,craftMatrix,2,The crafting matrix inventory (3x3). +field_75163_j,posZ,2, +field_75164_h,posX,2, +field_75165_i,posY,2, +field_75166_f,nameSeed,2,used as seed for EnchantmentNameParts (see GuiEnchantment) +field_75167_g,enchantLevels,2,3-member array storing the enchantment levels of each slot +field_75168_e,tableInventory,2,SlotEnchantmentTable object with ItemStack to be enchanted +field_75169_l,rand,2, +field_75170_j,posY,2, +field_75171_k,posZ,2, +field_75172_h,worldPointer,2,current world (for bookshelf counting) +field_75173_i,posX,2, +field_75176_f,merchantInventory,2, +field_75177_g,theWorld,2,Instance of World. +field_75178_e,theMerchant,2,Instance of Merchant. +field_75179_f,craftResult,2, +field_75180_g,isLocalWorld,2,Determines if inventory manipulation should be handled. +field_75181_e,craftMatrix,2,The crafting matrix inventory. +field_75182_e,tileEntityDispenser,2, +field_75186_f,theSlot,2,Instance of Slot. +field_75187_g,brewTime,2, +field_75188_e,tileBrewingStand,2, +field_75191_d,instancesLimit,2,How many Structure Pieces of this type may spawn in a structure +field_75192_b,pieceWeight,2,"This basically keeps track of the 'epicness' of a structure. Epic structure components have a higher 'weight', and Structures may only grow up to a certain 'weight' before generation is stopped" +field_75193_c,instancesSpawned,2, +field_75194_a,pieceClass,2, +field_75203_d,strongComponentType,2, +field_75204_e,strongholdStones,2, +field_75205_b,pieceWeightArray,2, +field_75206_c,structurePieceList,2, +field_75207_a,totalWeight,2, +field_75221_f,yDisplayPosition,2,display position of the inventory slot on the screen y axis +field_75222_d,slotNumber,2,the id of the slot(also the index in the inventory arraylist) +field_75223_e,xDisplayPosition,2,display position of the inventory slot on the screen x axis +field_75224_c,inventory,2,The inventory we want to extract a slot from. +field_75225_a,slotIndex,2,The index of the slot in the inventory. +field_75229_a,thePlayer,2,The player that is using the GUI where this slot resides. +field_75232_b,thePlayer,2,The Player whos trying to buy/sell stuff. +field_75233_a,theMerchantInventory,2,Merchant's inventory. +field_75234_h,theMerchant,2,"""Instance"" of the Merchant." +field_75237_g,amountCrafted,2,The number of items that have been crafted so far. Gets passed to ItemStack.onCrafting before being reset. +field_75238_b,thePlayer,2,The player that is using the GUI where this slot resides. +field_75239_a,craftMatrix,2,The craft matrix inventory linked to this result slot. +field_75244_a,player,2,The player that has this container open. +field_75245_a,doorEnum,2, +field_75254_a,mutexBits,2,"A bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +field_75255_d,idleTime,2,A decrementing tick that stops the entity from being idle once it reaches 0. +field_75256_b,lookX,2,X offset to look at +field_75257_c,lookZ,2,Z offset to look at +field_75258_a,idleEntity,2,The entity that is looking idle. +field_75259_d,playTime,2, +field_75260_b,targetVillager,2, +field_75262_a,villagerObj,2, +field_75263_d,randPosY,2, +field_75264_e,randPosZ,2, +field_75265_b,speed,2, +field_75266_c,randPosX,2, +field_75267_a,theEntityCreature,2, +field_75268_b,creeperAttackTarget,2,The creeper's attack target. This is used for the changing of the creeper's state. +field_75269_a,swellingCreeper,2,The creeper that is swelling. +field_75271_b,isSitting,2,If the EntityTameable is sitting. +field_75272_a,theEntity,2, +field_75273_a,theEntity,2, +field_75274_b,frontDoor,2, +field_75275_a,entityObj,2, +field_75276_a,villager,2, +field_75280_d,targetY,2,Y position of player tempting this mob +field_75281_e,targetZ,2,Z position of player tempting this mob +field_75283_c,targetX,2,X position of player tempting this mob +field_75284_a,temptedEntity,2,The entity using this AI that is tempted by the player. +field_75285_l,scaredByPlayerMovement,2,Whether the entity using this AI will be scared by the tempter's sudden movement. +field_75287_j,isRunning,2,True if this EntityAITempt task is running +field_75289_h,temptingPlayer,2,The player that is tempting the entity that is using this AI. +field_75290_i,delayTemptCounter,2,A counter that is decremented each time the shouldExecute method is called. The shouldExecute method will always return false if delayTemptCounter is greater than 0. +field_75291_d,tookGolemRose,2, +field_75292_b,theGolem,2, +field_75293_c,takeGolemRoseTick,2, +field_75294_a,theVillager,2, +field_75297_f,shouldCheckSight,2,"If true, EntityAI targets must be able to be seen (cannot be blocked by walls) to be suitable targets." +field_75298_g,targetUnseenTicks,2,"If @shouldCheckSight is true, the number of ticks before the interuption of this AITastk when the entity does't see the target" +field_75299_d,taskOwner,2,The entity that this task belongs to +field_75301_b,targetSearchStatus,2,"When nearbyOnly is true: 0 -> No target, but OK to search; 1 -> Nearby target found; 2 -> Target too far." +field_75302_c,targetSearchDelay,2,"When nearbyOnly is true, this throttles target searching to avoid excessive pathfinding." +field_75303_a,nearbyOnly,2,"When true, only entities that can be reached with minimal effort will be targetted." +field_75304_b,villageAgressorTarget,2,The aggressor of the iron golem's village which is now the golem's attack target. +field_75305_a,irongolem,2, +field_75306_g,theNearestAttackableTargetSorter,2,Instance of EntityAINearestAttackableTargetSorter. +field_75307_b,targetClass,2, +field_75308_c,targetChance,2, +field_75309_a,targetEntity,2, +field_75310_g,theTameable,2, +field_75312_a,entityCallsForHelp,2, +field_75313_b,theTarget,2, +field_75314_a,theEntityTameable,2, +field_75315_b,theOwnerAttacker,2, +field_75316_a,theDefendingTameable,2, +field_75320_d,rangedAttackTime,2,A decrementing tick that spawns a ranged attack once this value reaches 0. It is then set back to the maxRangedAttackTime. +field_75321_e,entityMoveSpeed,2, +field_75322_b,entityHost,2,The entity the AI instance has been applied to +field_75323_c,attackTarget,2, +field_75325_h,maxRangedAttackTime,2,The maximum time the AI has to wait before peforming another ranged attack. +field_75326_b,leapTarget,2,The entity that the leaper is leaping towards. +field_75327_c,leapMotionY,2,The entity's motionY after leaping. +field_75328_a,leaper,2,The entity that is leaping. +field_75329_f,watchedClass,2, +field_75330_d,lookTime,2, +field_75332_b,theWatcher,2, +field_75333_c,maxDistanceForPlayer,2,This is the Maximum distance that the AI will look for the Entity +field_75334_a,closestEntity,2,The closest entity which is being watched by this one. +field_75335_b,theMerchant,2, +field_75337_g,petPathfinder,2, +field_75338_d,thePet,2, +field_75339_e,theOwner,2, +field_75340_b,maxDist,2, +field_75341_c,minDist,2, +field_75342_a,theWorld,2, +field_75346_b,parentAnimal,2, +field_75348_a,childAnimal,2,The child that is following its parent. +field_75350_f,hasStoppedDoorInteraction,2,If is true then the Entity has stopped Door Interaction and compoleted the task. +field_75351_g,entityPositionX,2, +field_75352_d,entityPosZ,2, +field_75354_b,entityPosX,2, +field_75355_c,entityPosY,2, +field_75356_a,theEntity,2, +field_75357_h,entityPositionZ,2, +field_75359_i,breakingTime,2, +field_75360_j,closeDoorTemporisation,2,"The temporisation before the entity close the door (in ticks, always 20 = 1 second)" +field_75361_i,closeDoor,2,If the entity close the door +field_75367_f,theWorld,2, +field_75368_d,shelterZ,2, +field_75369_e,movementSpeed,2, +field_75370_b,shelterX,2, +field_75371_c,shelterY,2, +field_75372_a,theCreature,2, +field_75373_a,theEntity,2, +field_75374_f,entityPathEntity,2,The PathEntity of our entity +field_75375_g,entityPathNavigate,2,The PathNavigate of our entity +field_75376_d,closestLivingEntity,2, +field_75377_e,distanceFromEntity,2, +field_75378_b,farSpeed,2, +field_75379_c,nearSpeed,2, +field_75380_a,theEntity,2,The entity we are attached to +field_75381_h,targetEntityClass,2,The class of the entity we should avoid +field_75383_d,minPlayerDistance,2, +field_75385_b,thePlayer,2, +field_75386_c,worldObject,2, +field_75387_a,theWolf,2, +field_75390_d,theAnimal,2, +field_75391_e,targetMate,2, +field_75392_b,spawnBabyDelay,2,Delay preventing a baby from spawning immediately when two mate-able animals find each other. +field_75393_c,moveSpeed,2,The speed the creature moves at during mating behavior. +field_75394_a,theWorld,2, +field_75395_b,theVillager,2, +field_75396_c,lookTime,2, +field_75397_a,theGolem,2, +field_75408_d,attackCountdown,2, +field_75409_b,theEntity,2, +field_75410_c,theVictim,2, +field_75411_a,theWorld,2, +field_75415_f,doorList,2, +field_75416_d,doorInfo,2, +field_75417_e,isNocturnal,2, +field_75418_b,movementSpeed,2, +field_75419_c,entityPathNavigate,2,The PathNavigate of our entity. +field_75420_a,theEntity,2, +field_75421_d,insidePosZ,2, +field_75422_b,doorInfo,2, +field_75423_c,insidePosX,2, +field_75424_a,entityObj,2, +field_75425_f,speed,2, +field_75426_g,maxTargetDistance,2,"If the distance to the target entity is further than this, this AI task will not run." +field_75427_d,movePosY,2, +field_75428_e,movePosZ,2, +field_75429_b,targetEntity,2, +field_75430_c,movePosX,2, +field_75431_a,theEntity,2, +field_75432_d,movePosZ,2, +field_75433_e,movementSpeed,2, +field_75434_b,movePosX,2, +field_75435_c,movePosY,2, +field_75436_a,theEntity,2, +field_75437_f,longMemory,2,"When true, the mob will continue chasing its target, even if it can't find a path to them right now." +field_75438_g,entityPathEntity,2,The PathEntity of our entity. +field_75439_d,attackTick,2,An amount of decrementing ticks that allows the entity to attack once the tick reaches 0. +field_75440_e,speedTowardsTarget,2,The speed with which the mob will approach the target +field_75441_b,attacker,2, +field_75443_a,worldObj,2, +field_75444_h,classTarget,2, +field_75448_d,worldObj,2, +field_75449_e,matingTimeout,2, +field_75450_b,villagerObj,2, +field_75451_c,mate,2, +field_75452_a,villageObj,2, +field_75453_d,zPosition,2, +field_75454_e,speed,2, +field_75455_b,xPosition,2, +field_75456_c,yPosition,2, +field_75457_a,entity,2, +field_75459_b,theEntity,2, +field_75465_a,staticVector,2,"used to store a driection when the user passes a point to move towards or away from. WARNING: NEVER THREAD SAFE. MULTIPLE findTowards and findAway calls, will share this var" +field_75475_f,lastActivityTimestamp,2, +field_75476_g,isDetachedFromVillageFlag,2, +field_75477_d,insideDirectionX,2, +field_75478_e,insideDirectionZ,2, +field_75479_b,posY,2, +field_75480_c,posZ,2, +field_75481_a,posX,2, +field_75482_h,doorOpeningRestrictionCounter,2, +field_75509_f,avoidSun,2,If blocks exposed to the sun must be avoided +field_75510_g,totalTicks,2,"Time, in number of ticks, following the current path" +field_75511_d,speed,2, +field_75512_e,pathSearchRange,2,The number of blocks (extra) +/- in each axis that get pulled out as cache for the pathfinder's search space +field_75513_b,worldObj,2, +field_75514_c,currentPath,2,The PathEntity being followed. +field_75515_a,theEntity,2, +field_75516_l,avoidsWater,2,If water blocks are avoided (at least by the pathfinder) +field_75517_m,canSwim,2,If the entity can swim. Swimming AI enables this and the pathfinder will also cause the entity to swim straight upwards when underwater +field_75518_j,canPassOpenWoodenDoors,2,"Specifically, if a wooden door block is even considered to be passable by the pathfinder" +field_75519_k,canPassClosedWoodenDoors,2,If door blocks are considered passable even when closed +field_75520_h,ticksAtLastPos,2,The time when the last position check was done (to detect successful movement) +field_75521_i,lastPosCheck,2,Coordinates of the entity's position last time a check was done (part of monitoring getting 'stuck') +field_75524_b,seenEntities,2,Cache of entities which we can see +field_75525_c,unseenEntities,2,Cache of entities which we cannot see +field_75526_a,entityObj,2, +field_75531_f,theVillage,2,Instance of Village. +field_75537_a,worldObj,2, +field_75552_d,villageList,2, +field_75553_e,tickCounter,2, +field_75554_b,villagerPositionsList,2,"This is a black hole. You can add data to this list through a public interface, but you can't query that information in any way and it's not used internally either." +field_75555_c,newDoors,2, +field_75556_a,worldObj,2, +field_75580_f,lastAddDoorTimestamp,2, +field_75581_g,tickCounter,2, +field_75582_d,center,2,This is the actual village center. +field_75583_e,villageRadius,2, +field_75584_b,villageDoorInfoList,2,list of VillageDoorInfo objects +field_75585_c,centerHelper,2,This is the sum of all door coordinates and used to calculate the actual village center by dividing by the number of doors. +field_75586_a,worldObj,2, +field_75587_j,numIronGolems,2, +field_75588_h,numVillagers,2, +field_75589_i,villageAgressors,2, +field_75590_b,agressionTime,2, +field_75592_a,agressor,2, +field_75603_f,creatureMaterial,2, +field_75604_g,isPeacefulCreature,2,A flag indicating whether this creature type is peaceful. +field_75605_d,creatureClass,2,"The root class of creatures associated with this EnumCreatureType (IMobs for aggressive creatures, EntityAnimals for friendly ones)" +field_75606_e,maxNumberOfCreature,2, +field_75611_b,primaryColor,2,Base color of the egg +field_75612_c,secondaryColor,2,Color of the egg spots +field_75613_a,spawnedID,2,The entityID of the spawned mob +field_75622_f,stringToIDMapping,2,Maps entity names to their numeric identifiers +field_75623_d,idToClassMap,2,provides a mapping between an entityID and an Entity Class +field_75624_e,classToIDMapping,2,provides a mapping between an Entity Class and an entity ID +field_75625_b,stringToClassMapping,2,Provides a mapping between entity classes and a string +field_75626_c,classToStringMapping,2,Provides a mapping between a string and an entity classes +field_75627_a,entityEggs,2,This is a HashMap of the Creative Entity Eggs/Spawners. +field_75643_f,update,2, +field_75644_d,posZ,2, +field_75645_e,speed,2,The speed at which the entity should move +field_75646_b,posX,2, +field_75647_c,posY,2, +field_75648_a,entity,2,The EntityLiving that is being moved +field_75653_f,posY,2, +field_75654_g,posZ,2, +field_75655_d,isLooking,2,Whether or not the entity is trying to look at something. +field_75656_e,posX,2, +field_75657_b,deltaLookYaw,2,The amount of change that is made each update for an entity facing a direction. +field_75658_c,deltaLookPitch,2,The amount of change that is made each update for an entity facing a direction. +field_75659_a,entity,2, +field_75662_b,isJumping,2, +field_75663_a,entity,2, +field_75666_b,rotationTickCounter,2,Used to progressively ajust the rotation of the body to the rotation of the head +field_75667_c,prevRenderYawHead,2, +field_75668_a,theLiving,2,Instance of EntityLiving. +field_75675_d,watched,2, +field_75676_b,dataValueId,2,id of max 31 +field_75677_c,watchedObject,2, +field_75678_a,objectType,2, +field_75694_d,lock,2, +field_75695_b,watchedObjects,2, +field_75696_c,objectChanged,2,true if one or more object was changed +field_75697_a,dataTypes,2, +field_75699_D,offsetX,2, +field_75700_E,offsetY,2, +field_75702_A,title,2,Painting Title. +field_75703_B,sizeX,2, +field_75704_C,sizeY,2, +field_75728_z,maxArtTitleLength,2,Holds the maximum length of paintings art title. +field_75731_b,priority,2,Priority of the EntityAIBase +field_75733_a,action,2,The EntityAIBase object. +field_75737_d,savedIOCounter,2, +field_75738_e,isThreadWaiting,2, +field_75739_b,threadedIOQueue,2, +field_75740_c,writeQueuedCounter,2, +field_75741_a,threadedIOInstance,2,Instance of ThreadedFileIOBase +field_75748_d,idCounts,2,Map of MapDataBase id String prefixes ('map' etc) to max known unique Short id (the 0 part etc) for that prefix +field_75749_b,loadedDataMap,2,Map of item data String id to loaded MapDataBases +field_75750_c,loadedDataList,2,List of loaded MapDataBases. +field_75751_a,saveHandler,2, +field_75767_f,saveDirectoryName,2,The directory name of the world +field_75768_d,mapDataDir,2, +field_75769_e,initializationTime,2,The time in milliseconds when this field was initialized. Stored in the session lock file. +field_75770_b,worldDirectory,2,The directory in which to save world data. +field_75771_c,playersDirectory,2,The directory in which to save player data. +field_75778_d,tickCount,2, +field_75779_e,tickRate,2, +field_75780_b,executingTaskEntries,2,A list of EntityAITaskEntrys that are currently being executed. +field_75781_c,theProfiler,2,Instance of Profiler. +field_75782_a,taskEntries,2,A list of EntityAITaskEntrys in EntityAITasks. +field_75791_f,theEnumGameType,0,Instance of EnumGameType. +field_75792_g,hardcore,0, +field_75793_d,sizeOnDisk,0, +field_75794_e,requiresConversion,0, +field_75795_b,displayName,0,the displayed name of this save file +field_75796_c,lastTimePlayed,0, +field_75797_a,fileName,0,the file name of this save +field_75798_h,cheatsEnabled,0, +field_75808_a,savesDirectory,2,Reference to the File object representing the directory for the world saves +field_75825_d,chunkSaveLocation,2,Save directory for chunks using the Anvil format +field_75826_b,pendingAnvilChunksCoordinates,2, +field_75827_c,syncLockObject,2, +field_75828_a,chunksToRemove,2, +field_75833_f,distanceToNext,2,The linear distance to the next point +field_75834_g,distanceToTarget,2,The distance to the target +field_75835_d,index,2,The index of this point in its assigned path +field_75836_e,totalPathDistance,2,The distance along the path to this point +field_75837_b,yCoord,2,The y coordinate of this point +field_75838_c,zCoord,2,The z coordinate of this point +field_75839_a,xCoord,2,The x coordinate of this point +field_75840_j,hash,2,A hash of the coordinates used to identify this point +field_75841_h,previous,2,The point preceding this in its assigned path +field_75842_i,visited,2,True if the pathfinder has already visited this point +field_75851_b,count,2,The number of points in this path +field_75852_a,pathPoints,2,Contains the points in this path +field_75862_f,canPassClosedWoodenDoor,2,Should the PathFinder go through closed wooden door blocks +field_75863_g,avoidsWater,2,Should the PathFinder avoids waters blocks +field_75864_d,pathOptions,2,Selection of path points to add to the path +field_75865_e,canPassOpenWoodenDoors,2,Should the PathFinder go through open wooden door blocks +field_75866_b,path,2,The path being generated +field_75867_c,pointMap,2,The points in the path +field_75868_a,worldMap,2,Used to find obstacles +field_75869_h,canEntitySwim,2,"Tells the FathFinder to start pathing from the surface (if an entity can swim, it doesn't drown)" +field_75882_b,currentPathIndex,2,PathEntity Array Index the Entity is currently targeting +field_75883_c,pathLength,2,The total length of the path +field_75884_a,points,2,The actual points in the path +field_75906_d,baseSeed,2,base seed to the LCG prng provided via the constructor +field_75907_b,worldGenSeed,2,seed from World#getWorldSeed that is used in the LCG prng +field_75908_c,chunkSeed,2,"final part of the LCG prng that uses the chunk X, Z coords along with the other two seeds to generate pseudorandom numbers" +field_75909_a,parent,2,parent GenLayer that was provided via the constructor +field_75910_b,biomePatternGeneratorChain,2, +field_75911_c,riverPatternGeneratorChain,2, +field_75928_D,objectCraftStats,2,Tracks the number of items a given block or item has been crafted. +field_75929_E,objectUseStats,2,Tracks the number of times a given block or item has been used. +field_75930_F,objectBreakStats,2,Tracks the number of times a given block or item has been broken. +field_75932_A,playerKillsStat,2,counts the number of times you've killed a player +field_75933_B,fishCaughtStat,2, +field_75934_C,mineBlockStatArray,2, +field_75938_d,itemStats,2, +field_75939_e,objectMineStats,2,Tracks the number of times a given block or item has been mined. +field_75940_b,allStats,2, +field_75941_c,generalStats,2, +field_75942_a,oneShotStats,2,Tracks one-off stats. +field_75943_n,distanceFallenStat,2,the distance you have fallen +field_75944_o,distanceClimbedStat,2,the distance you've climbed +field_75945_l,distanceWalkedStat,2,distance you've walked +field_75946_m,distanceSwumStat,2,distance you have swam +field_75947_j,leaveGameStat,2,number of times you've left a game +field_75948_k,minutesPlayedStat,2,number of minutes you have played +field_75951_w,damageDealtStat,2,the amount of damage you've dealt +field_75952_v,dropStat,2,the distance you've dropped (or times you've fallen?) +field_75953_u,jumpStat,2,the times you've jumped +field_75954_t,distanceByPigStat,2,the distance you've traveled by pig +field_75955_s,distanceByBoatStat,2,the distance you've traveled by boat +field_75956_r,distanceByMinecartStat,2,the distance you've traveled by minecart +field_75957_q,distanceDoveStat,2,the distance you've dived +field_75958_p,distanceFlownStat,2,the distance you've flown +field_75959_z,mobKillsStat,2,the number of mobs you have killed +field_75960_y,deathsStat,2,the number of times you have died +field_75961_x,damageTakenStat,2,the amount of damage you have taken +field_75972_f,isIndependent,2, +field_75974_d,decimalFormat,2, +field_75975_e,statId,2,The Stat ID +field_75976_b,type,2, +field_75977_c,numberFormat,2, +field_75978_a,statName,2,The Stat name +field_75979_j,distanceStatType,2, +field_75980_h,simpleStatType,2, +field_75981_i,timeStatType,2, +field_75990_d,theItemStack,2,Holds the ItemStack that will be used to draw the achievement into the GUI. +field_75991_b,displayRow,2,"Is the row (related to center of achievement gui, in 24 pixels unit) that the achievement will be displayed." +field_75992_c,parentAchievement,2,"Holds the parent achievement, that must be taken before this achievement is avaiable." +field_75993_a,displayColumn,2,"Is the column (related to center of achievement gui, in 24 pixels unit) that the achievement will be displayed." +field_75994_l,statStringFormatter,0,"Holds a string formatter for the achievement, some of then needs extra dynamic info - like the key used to open the inventory." +field_75995_m,isSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +field_75996_k,achievementDescription,2,"Holds the description of the achievement, ready to be formatted and/or displayed." +field_75998_D,enchantments,2,Is the 'Enchanter' achievement +field_75999_E,overkill,2, +field_76000_F,bookcase,2,Is the 'Librarian' achievement +field_76001_A,potion,2,Is the 'Local Brewery' achievement +field_76002_B,theEnd,2,Is the 'The End?' achievement +field_76003_C,theEnd2,2,Is the 'The End.' achievement +field_76004_f,openInventory,2,Is the 'open inventory' achievement. +field_76005_g,mineWood,2,Is the 'getting wood' achievement. +field_76006_d,maxDisplayRow,2,Is the biggest row used to display a achievement on the GUI. +field_76007_e,achievementList,2,The list holding all achievements +field_76008_b,minDisplayRow,2,Is the smallest row used to display a achievement on the GUI. +field_76009_c,maxDisplayColumn,2,Is the biggest column used to display a achievement on the GUI. +field_76010_a,minDisplayColumn,2,Is the smallest column used to display a achievement on the GUI. +field_76011_n,bakeCake,2,Is the 'the lie' achievement. +field_76012_o,buildBetterPickaxe,2,Is the 'getting a upgrade' achievement. +field_76013_l,buildHoe,2,Is the 'time to farm' achievement. +field_76014_m,makeBread,2,Is the 'bake bread' achievement. +field_76015_j,buildFurnace,2,Is the 'hot topic' achievement. +field_76016_k,acquireIron,2,Is the 'acquire hardware' achievement. +field_76017_h,buildWorkBench,2,Is the 'benchmarking' achievement. +field_76018_i,buildPickaxe,2,Is the 'time to mine' achievement. +field_76019_w,diamonds,2,Is the 'DIAMONDS!' achievement +field_76020_v,snipeSkeleton,2,The achievement for killing a Skeleton from 50 meters aways. +field_76021_u,flyPig,2,Is the 'when pig fly' achievement. +field_76022_t,killCow,2,is the 'cow tipper' achievement. +field_76023_s,killEnemy,2,Is the 'monster hunter' achievement. +field_76024_r,buildSword,2,Is the 'time to strike' achievement. +field_76025_q,onARail,2,Is the 'on a rail' achievement +field_76026_p,cookFish,2,Is the 'delicious fish' achievement. +field_76027_z,blazeRod,2,Is the 'Into Fire' achievement +field_76028_y,ghast,2,Is the 'Return to Sender' achievement +field_76029_x,portal,2,Is the 'We Need to Go Deeper' achievement +field_76032_d,slotHash,2,The id of the hash slot computed from the hash +field_76033_b,valueEntry,2,The object stored in this entry +field_76034_c,nextEntry,2,The next entry in this slot +field_76035_a,hashEntry,2,The hash code of this entry +field_76050_f,keySet,2,The set of all the keys stored in this MCHash object +field_76051_d,growFactor,2,The scale factor used to determine when to grow the table +field_76052_e,versionStamp,2,A serial stamp used to mark changes +field_76053_b,count,2,The number of items stored in this map +field_76054_c,threshold,2,The grow threshold +field_76055_a,slots,2,An array of HashEntries representing the heads of hash slot lists +field_76094_f,worldTime,2,"The current world time in ticks, ranging from 0 to 23999." +field_76095_g,lastTimePlayed,2,The last time the player was in this world. +field_76096_d,spawnY,2,The spawn zone position Y coordinate. +field_76097_e,spawnZ,2,The spawn zone position Z coordinate. +field_76098_b,terrainType,2, +field_76099_c,spawnX,2,The spawn zone position X coordinate. +field_76100_a,randomSeed,2,Holds the seed of the currently world. +field_76101_n,rainTime,2,Number of ticks until next rain. +field_76102_o,thundering,2,Is thunderbolts failing now? +field_76103_l,saveVersion,2,"Introduced in beta 1.3, is the save version for future control." +field_76104_m,raining,2,"True if it's raining, false otherwise." +field_76105_j,dimension,2, +field_76106_k,levelName,2,The name of the save defined at world creation. +field_76107_h,sizeOnDisk,2,"The size of entire save of current world on the disk, isn't exactly." +field_76108_i,playerTag,2, +field_76109_u,initialized,2, +field_76110_t,allowCommands,2, +field_76111_s,hardcore,2,Hardcore mode flag +field_76112_r,mapFeaturesEnabled,2,Whether the map features (e.g. strongholds) generation is enabled or disabled. +field_76113_q,theGameType,2,The Game Type. +field_76114_p,thunderTime,2,Number of ticks untils next thunderbolt. +field_76115_a,theWorldInfo,2,Instance of WorldInfo. +field_76117_a,internalMap,2, +field_76144_a,SIN_TABLE,2,"A table of sin values computed from 0 (inclusive) to 2*pi (exclusive), with steps of 2*PI / 65536." +field_76147_d,hash,2, +field_76148_b,value,2,the value held by the hash at the specified key +field_76149_c,nextEntry,2,the next hashentry in the table +field_76150_a,key,2,the key as a long (for playerInstances it is the x in the most significant 32 bits and then y) +field_76165_d,percentUseable,2,percent of the hasharray that can be used without hash colliding probably +field_76166_e,modCount,2,count of times elements have been added/removed +field_76167_b,numHashElements,2,the number of elements in the hash array +field_76168_c,capacity,2,the maximum amount of elements in the hash (probably 3/4 the size due to meh hashing function) +field_76169_a,hashArray,2,the array of all elements in the hash +field_76189_a,dirty,2,Whether this MapDataBase needs saving to disk. +field_76190_i,mapName,2,The name of the map data nbt +field_76196_g,playersArrayList,2,Holds a reference to the MapInfo of the players who own a copy of the map +field_76197_d,scale,2, +field_76198_e,colors,2,colours +field_76199_b,zCenter,2, +field_76200_c,dimension,2, +field_76201_a,xCenter,2, +field_76202_j,playersHashMap,2,Holds a reference to the players who own a copy of the map and a reference to their MapInfo +field_76203_h,playersVisibleOnMap,2, +field_76205_f,ticksUntilPlayerLocationMapUpdate,2, +field_76206_g,lastPlayerLocationOnMap,2,a cache of the result from getPlayersOnMap so that it is not resent when nothing changes +field_76208_e,currentRandomNumber,2,"updated by x = mod(x*11,128) +1 x-1 is used to index field_76209_b and field_76210_c" +field_76211_a,entityplayerObj,2,Reference for EntityPlayer object in MapInfo +field_76212_d,iconRotation,2, +field_76214_b,centerX,2, +field_76215_c,centerZ,2, +field_76216_a,iconSize,2, +field_76233_E,piston,2,Pistons' material. +field_76234_F,materialMapColor,2,The color index used to draw the blocks of this material on maps. +field_76235_G,canBurn,2,Bool defining if the block can burn or not. +field_76239_H,replaceable,2,"Determines whether blocks with this material can be ""overwritten"" by other blocks when placed - eg snow, vines and tall grass." +field_76240_I,isTranslucent,2,Indicates if the material is translucent +field_76241_J,requiresNoTool,2,Determines if the material can be harvested without a tool (or with the wrong tool) +field_76242_K,mobilityFlag,2,"Mobility information flag. 0 indicates that this block is normal, 1 indicates that it can't push other blocks, 2 indicates that it can't be pushed." +field_76281_a,mapColorArray,2,"Holds all the 16 colors used on maps, very similar of a pallete system." +field_76290_q,colorIndex,2,Holds the index of the color used on map. +field_76291_p,colorValue,2,Holds the color in RGB value that will be rendered on maps. +field_76292_a,itemWeight,2,The Weight is how often the item is chosen(higher number is higher chance(lower is lower)) +field_76295_d,theMinimumChanceToGenerateItem,2,The minimum chance of item generating. +field_76296_e,theMaximumChanceToGenerateItem,2,The maximum chance of item generating. +field_76297_b,theItemId,2,The Item/Block ID to generate in the Chest. +field_76299_d,maxGroupCount,2, +field_76300_b,entityClass,2,Holds the class of the entity to be spawned. +field_76301_c,minGroupCount,2, +field_76302_b,enchantmentobj,2,Enchantment object associated with this EnchantmentData +field_76303_c,enchantmentLevel,2,Enchantment level associated with this EnchantmentData +field_76306_b,octaves,2, +field_76307_a,generatorCollection,2,Collection of noise generation functions. Output is combined to produce different octaves of noise. +field_76312_d,permutations,2, +field_76313_b,yCoord,2, +field_76314_c,zCoord,2, +field_76315_a,xCoord,2, +field_76323_d,profilingSection,2,Current profiling section +field_76324_e,profilingMap,2,Profiling map +field_76325_b,sectionList,2,List of parent sections +field_76326_c,timestampList,2,List of timestamps (System.nanoTime) +field_76327_a,profilingEnabled,2,Flag profiling enabled +field_76339_a,patternControlCode,2, +field_76342_b,second,2,Second Object in the Tuple +field_76343_a,first,2,First Object in the Tuple +field_76366_f,starve,2, +field_76367_g,cactus,2, +field_76368_d,inWall,2, +field_76369_e,drown,2, +field_76370_b,onFire,2, +field_76371_c,lava,2, +field_76372_a,inFire,2, +field_76373_n,damageType,2, +field_76374_o,isUnblockable,2,This kind of damage can be blocked or not. +field_76376_m,magic,2, +field_76377_j,generic,2, +field_76378_k,explosion,2, +field_76379_h,fall,2, +field_76380_i,outOfWorld,2, +field_76381_t,difficultyScaled,2,Whether this damage source will have its damage amount scaled based on the current difficulty. +field_76382_s,projectile,2,This kind of damage is based on a projectile or not. +field_76383_r,fireDamage,2,This kind of damage is based on fire or not. +field_76384_q,hungerDamage,2, +field_76385_p,isDamageAllowedInCreativeMode,2, +field_76386_o,damageSourceEntity,2, +field_76387_p,indirectEntity,2, +field_76412_L,effectiveness,2, +field_76413_M,usable,2, +field_76414_N,liquidColor,2,Is the color of the liquid for this potion. +field_76415_H,id,2,The Id of a Potion object. +field_76416_I,name,2,The name of the Potion. +field_76417_J,statusIconIndex,2,The index for the icon displayed when the potion effect is active. +field_76418_K,isBadEffect,2,This field indicated if the effect is 'bad' - negative - for the entity. +field_76419_f,digSlowdown,2, +field_76420_g,damageBoost,2, +field_76421_d,moveSlowdown,2, +field_76422_e,digSpeed,2, +field_76424_c,moveSpeed,2, +field_76425_a,potionTypes,2,The array of potion types. +field_76426_n,fireResistance,2,The fire resistance Potion object. +field_76427_o,waterBreathing,2,The water breathing Potion object. +field_76428_l,regeneration,2,The regeneration Potion object. +field_76429_m,resistance,2, +field_76430_j,jump,2, +field_76431_k,confusion,2, +field_76432_h,heal,2, +field_76433_i,harm,2, +field_76434_w,healthBoost,2,The health boost Potion object. +field_76436_u,poison,2,The poison Potion object. +field_76437_t,weakness,2,The weakness Potion object. +field_76438_s,hunger,2,The hunger Potion object. +field_76439_r,nightVision,2,The night vision Potion object. +field_76440_q,blindness,2,The blindness Potion object. +field_76441_p,invisibility,2,The invisibility Potion object. +field_76443_y,saturation,2,The saturation Potion object. +field_76444_x,absorption,2,The absorption Potion object. +field_76447_d,freeLargeArrays,2,A list of pre-allocated int[cacheSize] arrays that are currently unused and can be returned by getIntCache() +field_76448_e,inUseLargeArrays,2,A list of pre-allocated int[cacheSize] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. +field_76449_b,freeSmallArrays,2,A list of pre-allocated int[256] arrays that are currently unused and can be returned by getIntCache() +field_76450_c,inUseSmallArrays,2,A list of pre-allocated int[256] arrays that were previously returned by getIntCache() and which will not be re-used again until resetIntCache() is called. +field_76451_a,intCacheSize,2, +field_76460_b,duration,2,The duration of the potion effect +field_76461_c,amplifier,2,The amplifier of the potion effect +field_76462_a,potionID,2,ID value of the potion this effect matches. +field_76476_f,syncLock,2, +field_76477_g,isRunning,2, +field_76478_d,playerStatsCollector,2, +field_76479_e,threadTrigger,2,set to fire the snooperThread every 15 mins +field_76480_b,uniqueID,2, +field_76481_c,serverUrl,2,URL of the server to send the report to +field_76483_h,selfCounter,2,incremented on every getSelfCounterFor +field_76488_a,doBlockNotify,2,"Sets wither or not the generator should notify blocks of blocks it changes. When the world is first generated, this is false, when saplings grow, this is true." +field_76501_f,height,2, +field_76502_g,heightAttenuation,2, +field_76503_d,basePos,2, +field_76504_e,heightLimit,2, +field_76505_b,rand,2,random seed for GenBigTree +field_76506_c,worldObj,2,Reference to the World object. +field_76507_a,otherCoordPairs,2,"Contains three sets of two values that provide complimentary indices for a given 'major' index - 1 and 2 for 0, 0 and 2 for 1, and 0 and 1 for 2." +field_76508_n,leafDistanceLimit,2,Sets the distance limit for how far away the generator will populate leaves from the base leaf node. +field_76509_o,leafNodes,2,Contains a list of a points at which to generate groups of leaves. +field_76510_l,trunkSize,2,"Currently always 1, can be set to 2 in the class constructor to generate a double-sized tree trunk for big trees." +field_76511_m,heightLimitLimit,2,Sets the limit of the random value used to initialize the height limit. +field_76512_j,scaleWidth,2, +field_76513_k,leafDensity,2, +field_76514_h,branchDensity,2, +field_76515_i,branchSlope,2, +field_76517_b,numberOfBlocks,2,The number of blocks to generate. +field_76520_b,woodMetadata,2,Sets the metadata for the wood blocks used +field_76521_c,leavesMetadata,2,Sets the metadata for the leaves used in huge trees +field_76522_a,baseHeight,2,The base height of the tree +field_76523_a,mushroomType,2,"The mushroom type. 0 for brown, 1 for red." +field_76530_d,metaLeaves,2,The metadata value of the leaves to use in tree generation. +field_76531_b,vinesGrow,2,True if this tree should grow Vines. +field_76532_c,metaWood,2,The metadata value of the wood to use in tree generation. +field_76533_a,minTreeHeight,2,The minimum height of a generated tree. +field_76534_b,tallGrassMetadata,2, +field_76539_b,radius,2,The maximum radius used when generating a patch of blocks. +field_76541_b,numberOfBlocks,2,The number of blocks to generate. +field_76545_b,itemsToGenerateInBonusChest,2,Value of this int will determine how much items gonna generate in Bonus Chest. +field_76546_a,theBonusChestGenerator,2,Instance of WeightedRandomChestContent what will randomly generate items into the Bonus Chest. +field_76547_b,nbtTags,2, +field_76548_a,chunkCoordinate,2, +field_76553_a,regionsByFilename,2,A map containing Files as keys and RegionFiles as values +field_76573_f,lightBrightnessTable,2,Light to brightness conversion table +field_76574_g,dimensionId,2,"The id for the dimension (ex. -1: Nether, 0: Overworld, 1: The End)" +field_76575_d,isHellWorld,2,States whether the Hell world provider is used(true) or if the normal world provider is used(false) +field_76576_e,hasNoSky,2,A boolean that tells if a world does not have a sky. Used in calculating weather and skylight +field_76577_b,terrainType,2, +field_76578_c,worldChunkMgr,2,World chunk manager being used to generate chunks +field_76579_a,worldObj,2,world object being used +field_76580_h,colorsSunriseSunset,2,Array for sunrise/sunset colors (RGBA) +field_76583_b,depthBits,2,Log base 2 of the chunk height (128); applied as a shift on Z coordinate +field_76584_c,depthBitsPlusFour,2,Log base 2 of the chunk height (128) * width (16); applied as a shift on X coordinate +field_76585_a,data,2,Byte array of data stored in this holder. Possibly a light map or some chunk data. Data is accessed in 4-bit pieces. +field_76634_f,heightMap,2, +field_76635_g,xPosition,2,The x coordinate of the chunk. +field_76636_d,isChunkLoaded,2,Whether or not this Chunk is currently loaded into the World +field_76637_e,worldObj,2,Reference to the World object. +field_76638_b,precipitationHeightMap,2,"A map, similar to heightMap, that tracks how far down precipitation can fall." +field_76639_c,updateSkylightColumns,2,Which columns need their skylightMaps updated. +field_76640_a,isLit,2,Determines if the chunk is lit or not at a light value greater than 0. +field_76641_n,lastSaveTime,2,The time according to World.worldTime when this chunk was last saved +field_76642_o,sendUpdates,2,"Updates to this chunk will not be sent to clients if this is false. This field is set to true the first time the chunk is sent to a client, and never set to false." +field_76643_l,isModified,2,Set to true if the chunk has been modified and needs to be updated internally. +field_76644_m,hasEntities,2,Whether this Chunk has any Entities and thus requires saving on every tick +field_76645_j,entityLists,2,Array of Lists containing the entities in this Chunk. Each List represents a 16 block subchunk. +field_76646_k,isTerrainPopulated,2,Boolean value indicating if the terrain is populated. +field_76647_h,zPosition,2,The z coordinate of the chunk. +field_76649_t,queuedLightChecks,2,"Contains the current round-robin relight check index, and is implied as the relight check location as well." +field_76650_s,isGapLightingUpdated,2, +field_76651_r,blockBiomeArray,2,Contains a 16x16 mapping on the X/Z plane of the biome ID to which each colum belongs. +field_76652_q,storageArrays,2,"Used to store block IDs, block MSBs, Sky-light maps, Block-light maps, and metadata. Each entry corresponds to a logical segment of 16x16x16 blocks, stacked vertically." +field_76678_f,blockMetadataArray,2,Stores the metadata associated with blocks in this ExtendedBlockStorage. +field_76679_g,blocklightArray,2,The NibbleArray containing a block of Block-light data. +field_76680_d,blockLSBArray,2,Contains the least significant 8 bits of each block ID belonging to this block storage's parent Chunk. +field_76681_e,blockMSBArray,2,Contains the most significant 4 bits of each block ID belonging to this block storage's parent Chunk. +field_76682_b,blockRefCount,2,A total count of the number of non-air blocks in this block storage's Chunk. +field_76683_c,tickRefCount,2,Contains the number of blocks in this block storage's parent chunk that require random ticking. Used to cull the Chunk from random tick updates for performance reasons. +field_76684_a,yBase,2,Contains the bottom-most Y block represented by this ExtendedBlockStorage. Typically a multiple of 16. +field_76685_h,skylightArray,2,The NibbleArray containing a block of Sky-light data. +field_76687_b,depthBits,2, +field_76688_c,depthBitsPlusFour,2, +field_76689_a,data,2, +field_76692_f,data,2, +field_76693_g,blocks,2, +field_76694_d,blockLight,2, +field_76695_e,skyLight,2, +field_76696_b,terrainPopulated,2, +field_76697_c,heightmap,2, +field_76698_a,lastUpdated,2, +field_76699_l,z,2, +field_76701_k,x,2, +field_76702_h,entities,2, +field_76714_f,sectorFree,2, +field_76715_g,sizeDelta,2,McRegion sizeDelta +field_76716_d,offsets,2, +field_76717_e,chunkTimestamps,2, +field_76718_b,fileName,2, +field_76719_c,dataFile,2, +field_76720_a,emptySector,2, +field_76721_h,lastModified,2, +field_76722_b,chunkX,2, +field_76723_c,chunkZ,2, +field_76748_D,minHeight,2,The minimum height of this biome. Default 0.1. +field_76749_E,maxHeight,2,The maximum height of this biome. Default 0.3. +field_76750_F,temperature,2,The temperature of this biome. +field_76751_G,rainfall,2,The rainfall in this biome. +field_76752_A,topBlock,2,The block expected to be on the top of this biome +field_76753_B,fillerBlock,2,The block to fill spots in when not on the top +field_76754_C,fillerBlockMetadata,2, +field_76755_L,spawnableWaterCreatureList,2,Holds the classes of any aquatic creature that can be spawned in the water of the biome. +field_76756_M,biomeID,2,"The id number to this biome, and its index in the biomeList array." +field_76757_N,worldGeneratorTrees,2,The tree generator. +field_76758_O,worldGeneratorBigTree,2,The big tree generator. +field_76759_H,waterColorMultiplier,2,Color tint applied to water depending on biome +field_76760_I,theBiomeDecorator,2,The biome decorator. +field_76761_J,spawnableMonsterList,2,Holds the classes of IMobs (hostile mobs) that can be spawned in the biome. +field_76762_K,spawnableCreatureList,2,Holds the classes of any creature that can be spawned in the biome as friendly creature. +field_76763_Q,worldGeneratorSwamp,2,The swamp tree generator. +field_76765_S,enableRain,2,Is true (default) if the biome support rain (desert and nether can't have rain) +field_76766_R,enableSnow,2,Set to true if snow is enabled for this biome. +field_76767_f,forest,2, +field_76768_g,taiga,2, +field_76769_d,desert,2, +field_76770_e,extremeHills,2, +field_76771_b,ocean,2, +field_76772_c,plains,2, +field_76773_a,biomeList,2,"An array of all the biomes, indexed by biome id." +field_76774_n,icePlains,2, +field_76775_o,iceMountains,2, +field_76776_l,frozenOcean,2, +field_76777_m,frozenRiver,2, +field_76778_j,hell,2, +field_76779_k,sky,2,Is the biome used for sky world. +field_76780_h,swampland,2, +field_76781_i,river,2, +field_76782_w,jungle,2,Jungle biome identifier +field_76783_v,extremeHillsEdge,2,Extreme Hills Edge biome. +field_76784_u,taigaHills,2,Taiga Hills biome. +field_76785_t,forestHills,2,Forest Hills biome. +field_76786_s,desertHills,2,Desert Hills biome. +field_76787_r,beach,2,Beach biome. +field_76788_q,mushroomIslandShore,2, +field_76789_p,mushroomIsland,2, +field_76790_z,color,2, +field_76791_y,biomeName,2, +field_76792_x,jungleHills,2, +field_76798_D,mushroomsPerChunk,2,"The number of extra mushroom patches per chunk. It generates 1/4 this number in brown mushroom patches, and 1/8 this number in red mushroom patches. These mushrooms go beyond the default base number of mushrooms." +field_76799_E,reedsPerChunk,2,The number of reeds to generate per chunk. Reeds won't generate if the randomly selected placement is unsuitable. +field_76800_F,cactiPerChunk,2,The number of cactus plants to generate per chunk. Cacti only work on sand. +field_76801_G,sandPerChunk,2,The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. +field_76802_A,flowersPerChunk,2,"The number of yellow flower patches to generate per chunk. The game generates much less than this number, since it attempts to generate them at a random altitude." +field_76803_B,grassPerChunk,2,The amount of tall grass to generate per chunk. +field_76804_C,deadBushPerChunk,2,The number of dead bushes to generate per chunk. Used in deserts and swamps. +field_76805_H,sandPerChunk2,2,The number of sand patches to generate per chunk. Sand patches only generate when part of it is underwater. There appear to be two separate fields for this. +field_76806_I,clayPerChunk,2,The number of clay patches to generate per chunk. Only generates when part of it is underwater. +field_76807_J,bigMushroomsPerChunk,2,Amount of big mushrooms per chunk +field_76808_K,generateLakes,2,True if decorator should generate surface lava & water +field_76809_f,clayGen,2,The clay generator. +field_76810_g,sandGen,2,The sand generator. +field_76811_d,chunk_Z,2,The Z-coordinate of the chunk currently being decorated +field_76813_b,randomGenerator,2,The Biome Decorator's random number generator. +field_76814_c,chunk_X,2,The X-coordinate of the chunk currently being decorated +field_76815_a,currentWorld,2,The world the BiomeDecorator is currently decorating +field_76816_n,redstoneGen,2,Field that holds redstone WorldGenMinable +field_76817_o,diamondGen,2,Field that holds diamond WorldGenMinable +field_76818_l,ironGen,2, +field_76819_m,goldGen,2,Field that holds gold WorldGenMinable +field_76820_j,gravelGen,2, +field_76821_k,coalGen,2, +field_76822_h,gravelAsSandGen,2,The gravel generator. +field_76823_i,dirtGen,2,The dirt generator. +field_76824_w,cactusGen,2,Field that holds WorldGenCactus +field_76825_v,reedGen,2,Field that holds WorldGenReed +field_76826_u,bigMushroomGen,2,Field that holds big mushroom generator +field_76827_t,mushroomRedGen,2,Field that holds mushroomRed WorldGenFlowers +field_76828_s,mushroomBrownGen,2,Field that holds mushroomBrown WorldGenFlowers +field_76831_p,lapisGen,2,Field that holds Lapis WorldGenMinable +field_76832_z,treesPerChunk,2,"The number of trees to attempt to generate per chunk. Up to 10 in forests, none in deserts." +field_76833_y,waterlilyPerChunk,2,Amount of waterlilys per chunk. +field_76834_x,waterlilyGen,2,The water lily generation! +field_76835_L,spikeGen,2, +field_76841_d,cache,2,The list of cached BiomeCacheBlocks +field_76842_b,lastCleanupTime,2,"The last time this BiomeCache was cleaned, in milliseconds." +field_76843_c,cacheMap,2,"The map of keys to BiomeCacheBlocks. Keys are based on the chunk x, z coordinates as (x | z << 32)." +field_76844_a,chunkManager,2,Reference to the WorldChunkManager +field_76886_f,lastAccessTime,2,"The last time this BiomeCacheBlock was accessed, in milliseconds." +field_76888_d,xPosition,2,The x coordinate of the BiomeCacheBlock. +field_76889_e,zPosition,2,The z coordinate of the BiomeCacheBlock. +field_76890_b,rainfallValues,2,An array of chunk rainfall values saved by this cache. +field_76891_c,biomes,2,The array of biome types stored in this BiomeCacheBlock. +field_76942_f,biomeCache,2,The biome list. +field_76943_g,biomesToSpawnIn,2,A list of biomes that the player can spawn in. +field_76944_d,genBiomes,2, +field_76945_e,biomeIndexLayer,2,A GenLayer containing the indices into BiomeGenBase.biomeList[] +field_76946_f,rainfall,2,The rainfall in the world +field_76947_d,biomeGenerator,2,The biome generator object. +field_76987_f,shadowOpaque,0,Determines the darkness of the object's shadow. Higher value makes a darker shadow. +field_76989_e,shadowSize,0, +field_76990_c,renderManager,0, +field_76993_a,blockRenderer,0, +field_76998_a,modelBoat,0,instance of ModelBoat for rendering +field_77002_a,scale,0, +field_77013_a,modelMinecart,0,instance of ModelMinecart for rendering +field_77023_b,zLevel,0,Defines the zLevel of rendering of item on GUI. +field_77024_a,renderWithColor,0, +field_77025_h,random,0,The RNG used in RenderItem (for bobbing itemstacks on the ground) +field_77045_g,mainModel,0, +field_77046_h,renderPassModel,0,The model to be used during the render passes. +field_77050_a,ironGolemModel,0,Iron Golem's Model. +field_77056_a,villagerModel,0,Model of the villager. +field_77064_a,creeperModel,0,The creeper model. +field_77071_a,modelBipedMain,0, +field_77073_a,scale,0,Scale of the model to use +field_77077_b,rnd,0, +field_77078_a,endermanModel,0,The model of the enderman +field_77084_b,modelDragon,0,An instance of the dragon model in RenderDragon +field_77092_a,scaleAmount,0, +field_77094_a,snowmanModel,0,A reference to the Snowman model in RenderSnowMan. +field_77108_b,modelArmorChestplate,0, +field_77109_a,modelBipedMain,0, +field_77111_i,modelArmor,0, +field_77133_f,worldType,2, +field_77134_g,generatorVersion,2,The int version of the ChunkProvider that generated this world. +field_77135_d,LARGE_BIOMES,2,Large Biome world Type. +field_77136_e,DEFAULT_1_1,2,Default (1.1) world type. +field_77137_b,DEFAULT,2,Default world type. +field_77138_c,FLAT,2,Flat world type. +field_77139_a,worldTypes,2,List of world types. +field_77140_h,canBeCreated,2,Whether this world type can be generated. Normally true; set to false for out-of-date generator versions. +field_77141_i,isWorldTypeVersioned,2,Whether this WorldType has a version or not. +field_77151_f,name,2, +field_77154_e,id,2, +field_77168_f,commandsAllowed,2,True if Commands (cheats) are allowed. +field_77169_g,bonusChestEnabled,2,True if the Bonus Chest is enabled. +field_77170_d,hardcoreEnabled,2,True if hardcore mode is enabled +field_77171_e,terrainType,2, +field_77172_b,theGameType,2,The EnumGameType. +field_77173_c,mapFeaturesEnabled,2,"Switch for the map features. 'true' for enabled, 'false' for disabled." +field_77174_a,seed,2,The seed for the map. +field_77177_f,nextTickEntryID,2,The id number for the next tick entry +field_77178_g,tickEntryID,2,The id of the tick entry +field_77180_e,scheduledTime,2,Time this tick is scheduled to occur at +field_77181_b,yCoord,2,Y position this tick is occuring at +field_77182_c,zCoord,2,Z position this tick is occuring at +field_77183_a,xCoord,2,X position this tick is occuring at +field_77187_a,random,2,A private Random() function in Teleporter +field_77193_b,eligibleChunksForSpawning,2,The 17x17 area around the player where mobs can spawn +field_77198_c,defaultLightValue,2, +field_77275_b,chunkZPos,2,The Z position of this Chunk Coordinate Pair +field_77276_a,chunkXPos,2,The X position of this Chunk Coordinate Pair +field_77280_f,explosionSize,2, +field_77281_g,affectedBlockPositions,2,A list of ChunkPositions of blocks affected by this explosion +field_77282_d,explosionZ,2, +field_77283_e,exploder,2, +field_77284_b,explosionX,2, +field_77285_c,explosionY,2, +field_77286_a,isFlaming,2,whether or not the explosion sets fire to blocks around it +field_77287_j,worldObj,2, +field_77290_i,explosionRNG,2, +field_77327_f,blastProtection,2,Protection against explosions +field_77328_g,projectileProtection,2,Protection against projectile entities (e.g. arrows) +field_77329_d,fireProtection,2,Protection against fire +field_77330_e,featherFalling,2,Less fall damage +field_77331_b,enchantmentsList,2, +field_77332_c,protection,2,Converts environmental damage to armour damage +field_77333_a,weight,2, +field_77334_n,fireAspect,2,Lights mobs on fire +field_77335_o,looting,2,Mobs have a chance to drop more loot +field_77336_l,baneOfArthropods,2,"Extra damage to spiders, cave spiders and silverfish" +field_77337_m,knockback,2,Knocks mob and players backwards upon hit +field_77338_j,sharpness,2,Extra damage to mobs +field_77339_k,smite,2,"Extra damage to zombies, zombie pigmen and skeletons" +field_77340_h,respiration,2,Decreases the rate of air loss underwater; increases time between damage while suffocating +field_77341_i,aquaAffinity,2,Increases underwater mining rate +field_77342_w,infinity,2,"Infinity enchantment for bows. The bow will not consume arrows anymore, but will still required at least one arrow on inventory use the bow." +field_77343_v,flame,2,Flame enchantment for bows. Arrows fired by the bow will be on fire. Any target hit will also set on fire. +field_77344_u,punch,2,"Knockback enchantments for bows, the arrows will knockback the target when hit." +field_77345_t,power,2,"Power enchantment for bows, add's extra damage to arrows." +field_77346_s,fortune,2,Can multiply the drop rate of items from blocks +field_77347_r,unbreaking,2,"Sometimes, the tool's durability will not be spent when the tool is used" +field_77348_q,silkTouch,2,"Blocks mined will drop themselves, even if it should drop something else (e.g. stone will drop stone, not cobblestone)" +field_77349_p,efficiency,2,Faster resource gathering while in use +field_77350_z,name,2,Used in localisation and stats. +field_77351_y,type,2,The EnumEnchantmentType given to this Enchantment. +field_77352_x,effectId,2, +field_77353_D,thresholdEnchantability,2,"Used on the formula of base enchantability, this is the 'window' factor of values to be able to use thing enchant." +field_77354_A,protectionName,2,Holds the name to be translated of each protection type. +field_77355_B,baseEnchantability,2,Holds the base factor of enchantability needed to be able to use the enchant. +field_77356_a,protectionType,2,"Defines the type of protection of the enchantment, 0 = all, 1 = fire, 2 = fall (feather fall), 3 = explosion and 4 = projectile." +field_77357_C,levelEnchantability,2,Holds how much each level increased the enchantability factor to be able to use this enchant. +field_77358_D,thresholdEnchantability,2,"Used on the formula of base enchantability, this is the 'window' factor of values to be able to use thing enchant." +field_77359_A,protectionName,2,Holds the name to be translated of each protection type. +field_77360_B,baseEnchantability,2,Holds the base factor of enchantability needed to be able to use the enchant. +field_77361_a,damageType,2,"Defines the type of damage of the enchantment, 0 = all, 1 = undead, 3 = arthropods" +field_77362_C,levelEnchantability,2,Holds how much each level increased the enchantability factor to be able to use this enchant. +field_77400_d,toolUses,2,Saves how much has been tool used when put into to slot to be enchanted. +field_77401_b,secondItemToBuy,2,Second Item the Villager buys. +field_77402_c,itemToSell,2,Item the Villager sells. +field_77403_a,itemToBuy,2,Item the Villager buys. +field_77471_a,foliageBuffer,0,Color buffer for foliage +field_77476_b,lightmapTexUnit,0,"An OpenGL constant corresponding to GL_TEXTURE1, used when setting data pertaining to auxiliary OpenGL texture units." +field_77478_a,defaultTexUnit,0,"An OpenGL constant corresponding to GL_TEXTURE0, used when setting data pertaining to auxiliary OpenGL texture units." +field_77481_a,grassBuffer,0,Color buffer for grass +field_77490_b,lanServerIpPort,0, +field_77491_c,timeLastSeen,0,Last time this LanServer was seen. +field_77492_a,lanServerMotd,0, +field_77494_b,entityLiving,2, +field_77495_a,livingModifier,2,Used to calculate the (magic) extra damage based on enchantments of current equipped player item. +field_77496_b,source,2,Used as parameter to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. +field_77497_a,damageModifier,2,Used to calculate the damage modifier (extra armor) on enchantments that the player have on equipped armors. +field_77498_b,broadcastAddress,0,InetAddress for 224.0.2.60 +field_77499_c,socket,0,The socket we're using to receive packets on. +field_77500_a,localServerList,0,The LanServerList +field_77520_b,enchantmentModifierDamage,2,Used to calculate the extra armor of enchantments on armors equipped on player. +field_77521_c,enchantmentModifierLiving,2,Used to calculate the (magic) extra damage done by enchantments on current equipped item of player. +field_77522_a,enchantmentRand,2,Is the random seed of enchantment effects. +field_77526_d,isStopping,0, +field_77527_e,address,0, +field_77528_b,motd,0, +field_77529_c,socket,0,The socket we're using to send packets on. +field_77555_b,listOfLanServers,0, +field_77556_a,wasUpdated,0, +field_77574_d,recipeItems,2,Is a array of ItemStack that composes the recipe. +field_77575_e,recipeOutput,2,Is the ItemStack that you get when craft the recipe. +field_77576_b,recipeWidth,2,How many horizontal slots this recipe is wide. +field_77577_c,recipeHeight,2,How many vertical slots this recipe uses. +field_77579_b,recipeItems,2,Is a List of ItemStack that composes the recipe. +field_77580_a,recipeOutput,2,Is the ItemStack that you get when craft the recipe. +field_77584_b,recipeItems,2, +field_77585_a,recipePatterns,2, +field_77587_b,recipeItems,2, +field_77588_a,recipePatterns,2, +field_77591_a,recipeItems,2, +field_77597_b,recipes,2,A list of all the recipes added +field_77598_a,instance,2,The static instance of this class +field_77604_b,smeltingList,2,The list of smelting results. +field_77605_c,experienceList,2, +field_77606_a,smeltingBase,2, +field_77610_b,recipeItems,2, +field_77611_a,recipePatterns,2, +field_77697_d,itemRand,2,The RNG used by the Item subclasses. +field_77699_b,maxDurability,2,Maximum damage an item can handle. +field_77700_c,containerItem,2, +field_77701_a,tabToDisplayOn,2, +field_77774_bZ,unlocalizedName,2,The unlocalized name of this item. +field_77777_bU,maxStackSize,2,Maximum size of the stack. +field_77785_bY,potionEffect,2,The string representing this item's effect on a potion when used as an ingredient. +field_77787_bX,hasSubtypes,2,"Some items (like dyes) have multiple subtypes on same item, this is field define this behavior" +field_77789_bW,bFull3D,2,"If true, render the object in full 3D, like weapons and tools." +field_77791_bV,itemIcon,0,Icon index in the icons table. +field_77836_a,effectCache,2,Contains a map from integers to the list of potion effects that potions with that damage value confer (to prevent recalculating it). +field_77838_b,soilBlockID,2,BlockID of the block the seeds can be planted on. +field_77841_a,minecartType,2, +field_77843_a,theToolMaterial,2, +field_77850_cb,potionDuration,2,set by setPotionEffect +field_77851_ca,potionId,2,represents the potion effect that will occurr upon eating this food. Set by setPotionEffect +field_77852_bZ,alwaysEdible,2,"If this field is true, the food can be consumed even if the player don't need to eat." +field_77853_b,healAmount,2,The amount this food item heals the player. +field_77854_c,saturationModifier,2, +field_77855_a,itemUseDuration,2,Number of ticks to run while 'EnumAction'ing until result. +field_77856_bY,isWolfsFavoriteMeat,2,Whether wolves like this food (true for raw and cooked porkchop). +field_77857_cc,potionAmplifier,2,set by setPotionEffect +field_77858_cd,potionEffectProbability,2,probably of the set potion effect occurring +field_77862_b,toolMaterial,2,The material this tool is made from. +field_77864_a,efficiencyOnProperMaterial,2, +field_77865_bY,damageVsEntity,2,Damage versus entities. +field_77870_a,doorMaterial,2, +field_77876_a,isFull,2,field for checking if the bucket has been filled. +field_77878_bZ,material,2,The EnumArmorMaterial used for this ItemArmor +field_77879_b,damageReduceAmount,2,Holds the amount of damage that the armor reduces at full durability. +field_77880_c,renderIndex,2,"Used on RenderPlayer to select the correspondent armor to be rendered on the player: 0 is cloth, 1 is chain, 2 is iron, 3 is diamond and 4 is gold." +field_77881_a,armorType,2,"Stores the armor type: 0 is helmet, 1 is plate, 2 is legs and 3 is boots" +field_77882_bY,maxDamageArray,2,Holds the 'base' maxDamage that each armorType have. +field_77918_f,speckledMelonEffect,2, +field_77919_g,blazePowderEffect,2, +field_77920_d,spiderEyeEffect,2, +field_77921_e,fermentedSpiderEyeEffect,2, +field_77922_b,sugarEffect,2, +field_77923_c,ghastTearEffect,2, +field_77926_o,potionPrefixes,2,"An array of possible potion prefix names, as translation IDs." +field_77927_l,potionRequirements,2, +field_77928_m,potionAmplifiers,2,Potion effect amplifier map +field_77929_j,glowstoneEffect,2, +field_77930_k,gunpowderEffect,2, +field_77931_h,magmaCreamEffect,2, +field_77932_i,redstoneEffect,2, +field_77934_f,rarityName,2,Rarity name. +field_77937_e,rarityColor,2,A decimal representation of the hex color codes of a the color assigned to this rarity type. (13 becomes d as in \247d which is light purple) +field_77990_d,stackTagCompound,2,A NBTTagMap containing data about an ItemStack. Can only be used for non stackable items +field_77991_e,metadata,2, +field_77992_b,animationsToGo,2,"Number of animation frames to go when receiving an item (by walking into it, for example)." +field_77994_a,stackSize,2,Size of the stack. +field_78001_f,harvestLevel,2,"The level of material this tool can harvest (3 = DIAMOND, 2 = IRON, 1 = STONE, 0 = WOOD/GOLD)" +field_78002_g,maxUses,2,"The number of uses this material allows. (wood = 59, stone = 131, iron = 250, diamond = 1561, gold = 32)" +field_78008_j,enchantability,2,Defines the natural enchantability factor of the material. +field_78010_h,efficiencyOnProperMaterial,2,The strength of this tool material against blocks which it is effective against. +field_78011_i,damageVsEntity,2,Damage versus entities. +field_78026_f,tabMisc,2, +field_78027_g,tabAllSearch,2, +field_78028_d,tabRedstone,2, +field_78029_e,tabTransport,2, +field_78030_b,tabBlock,2, +field_78031_c,tabDecorations,2, +field_78032_a,creativeTabArray,2, +field_78033_n,tabIndex,2, +field_78034_o,tabLabel,2, +field_78035_l,tabMaterials,2, +field_78036_m,tabInventory,2, +field_78037_j,tabCombat,2, +field_78038_k,tabBrewing,2, +field_78039_h,tabFood,2, +field_78040_i,tabTools,2, +field_78041_r,drawTitle,2,Whether to draw the title in the foreground of the creative GUI +field_78042_q,hasScrollbar,2, +field_78043_p,theTexture,2,Texture to use. +field_78048_f,maxDamageFactor,2,"Holds the maximum damage factor (each piece multiply this by it's own value) of the material, this is the item damage (how much can absorb before breaks)" +field_78049_g,damageReductionAmountArray,2,"Holds the damage reduction (each 1 points is half a shield on gui) of each piece of armor (helmet, plate, legs and boots)" +field_78055_h,enchantability,2,Return the enchantability factor of the material +field_78089_u,textureHeight,0, +field_78090_t,textureWidth,0, +field_78091_s,isChild,0, +field_78092_r,boxList,0,This is a list of all the boxes (ModelRenderer.class) in the current model. +field_78093_q,isRiding,0, +field_78094_a,modelTextureMap,0,A mapping for all texture offsets +field_78095_p,swingProgress,0, +field_78096_f,flippingPageLeft,0,Right cover renderer (when facing the book) +field_78097_g,bookSpine,0,The renderer of spine of the book +field_78098_d,pagesLeft,0,The left pages renderer (when facing the book) +field_78099_e,flippingPageRight,0,Right cover renderer (when facing the book) +field_78100_b,coverLeft,0,Left cover renderer (when facing the book) +field_78101_c,pagesRight,0,The right pages renderer (when facing the book) +field_78102_a,coverRight,0,Right cover renderer (when facing the book) +field_78103_a,boatSides,0, +field_78105_b,blazeHead,0, +field_78106_a,blazeSticks,0,The sticks that fly around the Blaze. +field_78112_f,bipedRightArm,0, +field_78113_g,bipedLeftArm,0, +field_78114_d,bipedHeadwear,0, +field_78115_e,bipedBody,0, +field_78116_c,bipedHead,0, +field_78117_n,isSneak,0, +field_78118_o,aimedBow,0,Records whether the model should be rendered aiming a bow. +field_78119_l,heldItemLeft,0,"Records whether the model should be rendered holding an item in the left hand, and if that item is a block." +field_78120_m,heldItemRight,0,"Records whether the model should be rendered holding an item in the right hand, and if that item is a block." +field_78121_j,bipedEars,0, +field_78122_k,bipedCloak,0, +field_78123_h,bipedRightLeg,0, +field_78124_i,bipedLeftLeg,0, +field_78125_b,isAttacking,0,Is the enderman attacking an entity? +field_78126_a,isCarrying,0,Is the enderman carrying a block? +field_78127_b,tentacles,0, +field_78128_a,body,0, +field_78129_f,leg3,0, +field_78130_g,leg4,0, +field_78131_d,leg1,0, +field_78132_e,leg2,0, +field_78134_c,body,0, +field_78135_a,head,0, +field_78136_f,leftWing,0, +field_78137_g,bill,0, +field_78138_d,leftLeg,0, +field_78139_e,rightWing,0, +field_78140_b,body,0, +field_78141_c,rightLeg,0, +field_78142_a,head,0, +field_78143_h,chin,0, +field_78144_f,leg4,0, +field_78146_d,leg2,0, +field_78147_e,leg3,0, +field_78148_b,body,0, +field_78149_c,leg1,0, +field_78150_a,head,0, +field_78152_i,headRotationAngleX,0, +field_78154_a,sideModels,0, +field_78155_f,ocelotTail2,0,The second part of tail model for the Ocelot. +field_78156_g,ocelotHead,0,The head model for the Ocelot. +field_78157_d,ocelotFrontRightLeg,0,The front right leg model for the Ocelot. +field_78158_e,ocelotTail,0,The tail model for the Ocelot. +field_78159_b,ocelotBackRightLeg,0,The back right leg model for the Ocelot. +field_78160_c,ocelotFrontLeftLeg,0,The front left leg model for the Ocelot. +field_78161_a,ocelotBackLeftLeg,0,The back left leg model for the Ocelot. +field_78162_h,ocelotBody,0,The body model for the Ocelot. +field_78165_b,signStick,0,The stick a sign stands on. +field_78166_a,signBoard,0,The board on a sign that has the writing on it. +field_78167_d,silverfishBoxLength,0,"The widths, heights, and lengths for the silverfish model boxes." +field_78168_e,silverfishTexturePositions,0,The texture positions for the silverfish's model's boxes. +field_78169_b,silverfishWings,0,The wings (dust-looking sprites) on the silverfish's model. +field_78171_a,silverfishBodyParts,0,The body parts of the silverfish's model. +field_78173_f,ironGolemRightLeg,0,The right leg model for the Iron Golem. +field_78174_d,ironGolemLeftArm,0,The left arm model for the iron golem. +field_78175_e,ironGolemLeftLeg,0,The left leg model for the Iron Golem. +field_78176_b,ironGolemBody,0,The body model for the iron golem. +field_78177_c,ironGolemRightArm,0,The right arm model for the iron golem. +field_78178_a,ironGolemHead,0,The head model for the iron golem. +field_78179_f,wolfLeg4,0,Wolf's fourth leg +field_78180_g,wolfTail,0,The wolf's tail +field_78181_d,wolfLeg2,0,Wolf's second leg +field_78182_e,wolfLeg3,0,Wolf's third leg +field_78183_b,wolfBody,0,The wolf's body +field_78184_c,wolfLeg1,0,Wolf'se first leg +field_78185_a,wolfHeadMain,0,main box for the wolf head +field_78186_h,wolfMane,0,The wolf's mane +field_78187_d,rightVillagerLeg,0,The right leg of the VillagerModel +field_78188_e,leftVillagerLeg,0,The left leg of the VillagerModel +field_78189_b,villagerBody,0,The body of the VillagerModel +field_78190_c,villagerArms,0,The arms of the VillagerModel +field_78191_a,villagerHead,0,The head box of the VillagerModel +field_78192_d,rightHand,0, +field_78193_e,leftHand,0, +field_78194_b,bottomBody,0, +field_78195_c,head,0, +field_78196_a,body,0, +field_78197_d,slimeMouth,0,The slime's mouth +field_78198_b,slimeRightEye,0,The slime's right eye +field_78199_c,slimeLeftEye,0,The slime's left eye +field_78200_a,slimeBodies,0,"The slime's bodies, both the inside box and the outside box" +field_78201_b,squidTentacles,0,The squid's tentacles +field_78202_a,squidBody,0,The squid's body +field_78203_f,spiderLeg3,0,Spider's third leg +field_78204_g,spiderLeg4,0,Spider's fourth leg +field_78205_d,spiderLeg1,0,Spider's first leg +field_78206_e,spiderLeg2,0,Spider's second leg +field_78207_b,spiderNeck,0,The spider's neck box +field_78208_c,spiderBody,0,The spider's body box +field_78209_a,spiderHead,0,The spider's head box +field_78210_j,spiderLeg7,0,Spider's seventh leg +field_78211_k,spiderLeg8,0,Spider's eight leg +field_78212_h,spiderLeg5,0,Spider's fifth leg +field_78213_i,spiderLeg6,0,Spider's sixth leg +field_78215_f,frontLeg,0,The front leg Model renderer of the dragon +field_78216_g,rearLegTip,0,The rear leg tip Model renderer of the dragon +field_78217_d,body,0,The body Model renderer of the dragon +field_78218_e,rearLeg,0,The rear leg Model renderer of the dragon +field_78219_b,spine,0,The spine Model renderer of the dragon +field_78220_c,jaw,0,The jaw Model renderer of the dragon +field_78221_a,head,0,The head Model renderer of the dragon +field_78222_l,wingTip,0,The wing tip Model renderer of the dragon +field_78223_m,partialTicks,0, +field_78224_j,frontFoot,0,The front foot Model renderer of the dragon +field_78225_k,wing,0,The wing Model renderer of the dragon +field_78226_h,frontLegTip,0,The front leg tip Model renderer of the dragon +field_78227_i,rearFoot,0,The rear foot Model renderer of the dragon +field_78228_b,glass,0,The glass model for the Ender Crystal. +field_78229_c,base,0,The base model for the Ender Crystal. +field_78230_a,cube,0,The cube model for the Ender Crystal. +field_78232_b,chestBelow,0,The model of the bottom of the chest. +field_78233_c,chestKnob,0,The chest's knob in the chest model. +field_78234_a,chestLid,0,The chest lid in the chest's model. +field_78237_b,nVertices,0, +field_78238_c,invertNormal,0, +field_78239_a,vertexPositions,0, +field_78241_b,texturePositionX,0, +field_78242_c,texturePositionY,0, +field_78243_a,vector3D,0, +field_78246_f,posZ2,0,Z vertex coordinate of upper box corner +field_78248_d,posX2,0,X vertex coordinate of upper box corner +field_78249_e,posY2,0,Y vertex coordinate of upper box corner +field_78250_b,posY1,0,Y vertex coordinate of lower box corner +field_78251_c,posZ1,0,Z vertex coordinate of lower box corner +field_78252_a,posX1,0,X vertex coordinate of lower box corner +field_78253_h,vertexPositions,0,"The (x,y,z) vertex positions and (u,v) texture coordinates for each of the 8 points on a cube" +field_78254_i,quadList,0,"An array of 6 TexturedQuads, one for each face of a cube" +field_78285_g,colorCode,0,Array of RGB triplets defining the 16 standard chat colors followed by 16 darker version of the same colors for drop shadows. +field_78286_d,charWidth,0,Array of width of all the characters in default.png +field_78287_e,glyphWidth,0,Array of the start/end column (in upper/lower nibble) for every glyph in the /font directory. +field_78288_b,FONT_HEIGHT,0,the height in pixels of default text +field_78289_c,fontRandom,0, +field_78291_n,red,0,Used to specify new red value for the current color. +field_78292_o,blue,0,Used to specify new blue value for the current color. +field_78293_l,unicodeFlag,0,"If true, strings should be rendered with Unicode fonts instead of the default.png font" +field_78294_m,bidiFlag,0,"If true, the Unicode Bidirectional Algorithm should be run before rendering any string." +field_78295_j,posX,0,Current X coordinate at which to draw the next character. +field_78296_k,posY,0,Current Y coordinate at which to draw the next character. +field_78298_i,renderEngine,0,The RenderEngine used to load and setup glyph textures. +field_78299_w,strikethroughStyle,0,"Set if the ""m"" style (strikethrough) is active in currently rendering string" +field_78300_v,underlineStyle,0,"Set if the ""n"" style (underlined) is active in currently rendering string" +field_78301_u,italicStyle,0,"Set if the ""o"" style (italic) is active in currently rendering string" +field_78302_t,boldStyle,0,"Set if the ""l"" style (bold) is active in currently rendering string" +field_78303_s,randomStyle,0,"Set if the ""k"" style (random) is active in currently rendering string" +field_78304_r,textColor,0,Text color of the currently rendering string. +field_78305_q,alpha,0,Used to speify new alpha value for the current color. +field_78306_p,green,0,Used to specify new green value for the current color. +field_78329_d,scaledHeightD,0, +field_78330_e,scaleFactor,0, +field_78331_b,scaledHeight,0, +field_78332_c,scaledWidthD,0, +field_78333_a,scaledWidth,0, +field_78388_E,bufferSize,0,The size of the buffers used (in integers). +field_78394_d,byteBuffer,0,The byte buffer used for GL allocation. +field_78398_a,instance,0,The static instance of the Tessellator. +field_78399_n,hasColor,0,Whether the current draw object for this tessellator has color values. +field_78400_o,hasTexture,0,Whether the current draw object for this tessellator has texture coordinates. +field_78401_l,brightness,0, +field_78402_m,color,0,The color (RGBA) value to be used for the following draw call. +field_78403_j,textureU,0,The first coordinate to be used for the texture. +field_78404_k,textureV,0,The second coordinate to be used for the texture. +field_78405_h,rawBuffer,0,Raw integer array. +field_78406_i,vertexCount,0,The number of vertices to be drawn in the next draw call. Reset to 0 between draw calls. +field_78407_w,yOffset,0,An offset to be applied along the y-axis for all vertices in this draw call. +field_78408_v,xOffset,0,An offset to be applied along the x-axis for all vertices in this draw call. +field_78409_u,drawMode,0,The draw mode currently being used by the tessellator. +field_78410_t,isColorDisabled,0,Disables all color information for the following draw call. +field_78411_s,addedVertices,0,The number of vertices manually added to the given draw call. This differs from vertexCount because it adds extra vertices when converting quads to triangles. +field_78413_q,hasNormals,0,Whether the current draw object for this tessellator has normal values. +field_78414_p,hasBrightness,0, +field_78415_z,isDrawing,0,Whether this tessellator is currently in draw mode. +field_78416_y,normal,0,The normal to be applied to the face being drawn. +field_78417_x,zOffset,0,An offset to be applied along the z-axis for all vertices in this draw call. +field_78423_f,cameraZ,0, +field_78424_g,glLists,0,A list of OpenGL render list IDs rendered by this RenderList. +field_78425_d,cameraX,0,"The in-world location of the camera, used to translate the world into the proper position for rendering." +field_78426_e,cameraY,0, +field_78427_b,renderChunkY,0, +field_78428_c,renderChunkZ,0, +field_78429_a,renderChunkX,0,The location of the 16x16x16 render chunk rendered by this RenderList. +field_78430_h,valid,0,Does this RenderList contain properly-initialized and current data for rendering? +field_78431_i,bufferFlipped,0,Has glLists been flipped to make it ready for reading yet? +field_78436_b,imageWidth,0, +field_78437_c,imageHeight,0, +field_78438_a,imageData,0, +field_78450_g,equippedItemSlot,0,"The index of the currently held item (0-8, or -1 if not yet updated)" +field_78451_d,prevEquippedProgress,0, +field_78453_b,itemToRender,0, +field_78454_c,equippedProgress,0,How far the current item has been equipped (0 disequipped and 1 fully up) +field_78455_a,mc,0,A reference to the Minecraft object. +field_78485_D,debugCamYaw,0, +field_78486_E,prevDebugCamYaw,0, +field_78487_F,debugCamPitch,0, +field_78488_G,prevDebugCamPitch,0, +field_78489_A,mouseFilterDummy4,0,Mouse filter dummy 4 +field_78490_B,thirdPersonDistance,0, +field_78491_C,thirdPersonDistanceTemp,0,Third person distance temp +field_78492_L,smoothCamPartialTicks,0,Smooth cam partial ticks +field_78493_M,debugCamFOV,0, +field_78494_N,prevDebugCamFOV,0, +field_78495_O,camRoll,0, +field_78496_H,smoothCamYaw,0,Smooth cam yaw +field_78497_I,smoothCamPitch,0,Smooth cam pitch +field_78498_J,smoothCamFilterX,0,Smooth cam filter X +field_78499_K,smoothCamFilterY,0,Smooth cam filter Y +field_78500_U,cloudFog,0,Cloud fog mode +field_78501_T,fovMultiplierTemp,0,FOV multiplier temp +field_78502_W,cameraYaw,0, +field_78503_V,cameraZoom,0, +field_78504_Q,lightmapColors,0,Colors computed in updateLightmap() and loaded into the lightmap emptyTexture +field_78505_P,prevCamRoll,0, +field_78506_S,fovModifierHandPrev,0,FOV modifier hand prev +field_78507_R,fovModifierHand,0,FOV modifier hand +field_78508_Y,prevFrameTime,0,Previous frame time in milliseconds +field_78509_X,cameraPitch,0, +field_78510_Z,renderEndNanoTime,0,End time of last render (ns) +field_78511_f,torchFlickerDX,0,Torch flicker DX +field_78512_g,torchFlickerY,0,Torch flicker Y +field_78513_d,lightmapTexture,0,The texture id of the blocklight/skylight texture used for lighting effects +field_78514_e,torchFlickerX,0,Torch flicker X +field_78515_b,anaglyphField,0,"Anaglyph field (0=R, 1=GB)" +field_78516_c,itemRenderer,0, +field_78517_a,anaglyphEnable,0, +field_78518_n,fogColorRed,0,red component of the fog color +field_78519_o,fogColorGreen,0,green component of the fog color +field_78521_m,fogColorBuffer,0,Fog color buffer +field_78522_j,rainYCoords,0,Rain Y coords +field_78524_h,torchFlickerDY,0,Torch flicker DY +field_78525_i,rainXCoords,0,Rain X coords +field_78526_w,mouseFilterYAxis,0, +field_78527_v,mouseFilterXAxis,0, +field_78528_u,pointedEntity,0,Pointed entity +field_78529_t,rendererUpdateCount,0,Entity renderer update count +field_78530_s,farPlaneDistance,0, +field_78531_r,mc,0,A reference to the Minecraft object. +field_78532_q,debugViewDirection,0,"Debug view direction (0=OFF, 1=Front, 2=Right, 3=Back, 4=Left, 5=TiltLeft, 6=TiltRight)" +field_78533_p,fogColorBlue,0,blue component of the fog color +field_78534_ac,rainSoundCounter,0,Rain sound counter +field_78535_ad,fogColor2,0,Fog color 2 +field_78536_aa,lightmapUpdateNeeded,0,"Is set, updateCameraAndRender() calls updateLightmap(); set by updateTorchFlicker()" +field_78537_ab,random,0, +field_78538_z,mouseFilterDummy3,0,Mouse filter dummy 3 +field_78539_ae,fogColor1,0,Fog color 1 +field_78540_y,mouseFilterDummy2,0,Mouse filter dummy 2 +field_78541_x,mouseFilterDummy1,0,Mouse filter dummy 1 +field_78549_d,zPosition,0, +field_78550_b,xPosition,0, +field_78551_c,yPosition,0, +field_78552_a,clippingHelper,0, +field_78554_d,clippingMatrix,0, +field_78555_b,projectionMatrix,0, +field_78556_c,modelviewMatrix,0, +field_78557_a,frustum,0, +field_78561_f,projectionMatrixBuffer,0, +field_78562_g,modelviewMatrixBuffer,0, +field_78563_e,instance,0, +field_78721_f,itemRenderer,0, +field_78722_g,worldObj,0,Reference to the World object. +field_78723_d,renderPosZ,0, +field_78724_e,renderEngine,0, +field_78725_b,renderPosX,0, +field_78726_c,renderPosY,0, +field_78727_a,instance,0,The static instance of RenderManager. +field_78728_n,viewerPosZ,0, +field_78729_o,entityRenderMap,0,A map of entity classes and the associated renderer. +field_78730_l,viewerPosX,0, +field_78731_m,viewerPosY,0, +field_78732_j,playerViewX,0, +field_78733_k,options,0,Reference to the GameSettings object. +field_78734_h,livingPlayer,0,Rendermanager's variable for the player +field_78735_i,playerViewY,0, +field_78736_p,textRenderer,0,Renders fonts +field_78741_b,secondaryComponents,2, +field_78742_a,primaryComponents,2, +field_78770_f,curBlockDamageMP,0,Current block damage (MP) +field_78772_d,currentBlockY,0,PosY of the current block being destroyed +field_78773_e,currentblockZ,0,PosZ of the current block being destroyed +field_78774_b,netClientHandler,0, +field_78775_c,currentBlockX,0,PosX of the current block being destroyed +field_78776_a,mc,0,The Minecraft instance. +field_78777_l,currentPlayerItem,0,Index of the current item held by the player in the inventory hotbar +field_78778_j,isHittingBlock,0,Tells if the player is hitting a block +field_78779_k,currentGameType,0,Current game type for the player +field_78780_h,stepSoundTickCounter,0,"Tick counter, when it hits 4 it resets back to 0 and plays the step sound" +field_78781_i,blockHitDelay,0,Delays the first damage on the block after the first click on the block +field_78782_b,textureOffsetY,0,The y coordinate offset of the texture +field_78783_a,textureOffsetX,0,The x coordinate offset of the texture +field_78795_f,rotateAngleX,0, +field_78796_g,rotateAngleY,0, +field_78797_d,rotationPointY,0, +field_78798_e,rotationPointZ,0, +field_78799_b,textureHeight,0,The size of the texture file's height in pixels. +field_78800_c,rotationPointX,0, +field_78801_a,textureWidth,0,The size of the texture file's width in pixels. +field_78802_n,boxName,0, +field_78803_o,textureOffsetX,0,The X offset into the texture used for displaying this model +field_78804_l,cubeList,0, +field_78805_m,childModels,0, +field_78806_j,showModel,0, +field_78807_k,isHidden,0,Hides the model. +field_78808_h,rotateAngleZ,0, +field_78809_i,mirror,0, +field_78810_s,baseModel,0, +field_78811_r,displayList,0,The GL display list rendered by the Tessellator for this model +field_78812_q,compiled,0, +field_78813_p,textureOffsetY,0,The Y offset into the texture used for displaying this model +field_78818_a,mineshaftChestContents,2,List of contents that can generate in Mineshafts. +field_78828_a,weightClass,2,The class of the StructureComponent to which this weight corresponds. +field_78829_b,responseTime,0,Player response time to server in milliseconds +field_78830_c,nameinLowerCase,0,Player name in lowercase. +field_78831_a,name,0,The string value of the object +field_78843_d,serverMOTD,0,(better variable name would be 'hostname') server name as displayed in the server browser's second line (grey text) +field_78844_e,pingToServer,0,last server ping that showed up in the server browser +field_78845_b,serverIP,0, +field_78846_c,populationInfo,0,"the string indicating number of players on and capacity of the server that is shown on the server browser (i.e. ""5/20"" meaning 5 slots used out of 20 slots total)" +field_78847_a,serverName,0, +field_78858_b,servers,0,List of ServerData instances. +field_78859_a,mc,0,The Minecraft instance. +field_78865_b,serverPort,0, +field_78866_a,ipAddress,0, +field_78875_d,rand,0,RNG. +field_78876_b,fxLayers,0, +field_78877_c,renderer,0, +field_78878_a,worldObj,0,Reference to the World object. +field_78892_f,maxZ,2,The second z coordinate of a bounding box. +field_78893_d,maxX,2,The second x coordinate of a bounding box. +field_78894_e,maxY,2,The second y coordinate of a bounding box. +field_78895_b,minY,2,The first y coordinate of a bounding box. +field_78896_c,minZ,2,The first z coordinate of a bounding box. +field_78897_a,minX,2,The first x coordinate of a bounding box. +field_78899_d,sneak,0, +field_78900_b,moveForward,0,The speed at which the player is moving forward. Negative numbers will move backwards. +field_78901_c,jump,0, +field_78902_a,moveStrafe,0,The speed at which the player is strafing. Postive numbers to the left and negative to the right. +field_78903_e,gameSettings,0, +field_78915_A,isInitialized,0, +field_78917_C,bytesDrawn,0,Bytes sent to the GPU +field_78918_f,posXMinus,0,Pos X minus +field_78919_g,posYMinus,0,Pos Y minus +field_78920_d,posY,0, +field_78921_e,posZ,0, +field_78922_b,chunksUpdated,0, +field_78923_c,posX,0, +field_78924_a,worldObj,0,Reference to the World object. +field_78925_n,posXPlus,0,Pos X plus +field_78926_o,posYPlus,0,Pos Y plus +field_78927_l,isInFrustum,0, +field_78928_m,skipRenderPass,0,Should this renderer skip this render pass +field_78929_j,posYClip,0,Pos Y clipped +field_78930_k,posZClip,0,Pos Z clipped +field_78931_h,posZMinus,0,Pos Z minus +field_78932_i,posXClip,0,Pos X clipped +field_78933_w,isChunkLit,0,Is the chunk lit +field_78934_v,glOcclusionQuery,0,OpenGL occlusion query +field_78935_u,isWaitingOnOcclusionQuery,0,Is this renderer waiting on the result of the occlusion query +field_78936_t,isVisible,0,Is this renderer visible according to the occlusion query +field_78937_s,chunkIndex,0,Chunk index +field_78938_r,rendererBoundingBox,0,Axis aligned bounding box +field_78939_q,needsUpdate,0,Boolean for whether this renderer needs to be updated or not +field_78940_p,posZPlus,0,Pos Z plus +field_78941_z,tessellator,0, +field_78942_y,glRenderList,0, +field_78945_a,baseEntity,0,The entity (usually the player) that the camera is inside. +field_78947_b,entityPosY,0,Entity position Y +field_78948_c,entityPosZ,0,Entity position Z +field_78949_a,entityPosX,0,Entity position X +field_80001_f,closestPlayer,2,The closest EntityPlayer to this orb. +field_80002_g,xpTargetColor,2,Threshold color for tracking players +field_80004_Q,updateEntityTick,2, +field_80005_w,hideServerAddress,0, +field_82151_R,distanceWalkedOnStepModified,2, +field_82152_aq,teleportDirection,2, +field_82153_h,portalCounter,2, +field_82172_bs,canPickUpLoot,2,Whether this entity can pick up items from the ground. +field_82174_bp,equipmentDropChances,2,Chances for each equipment piece from dropping when this entity dies. +field_82175_bq,isSwingInProgress,2,Whether an arm swing is currently in progress. +field_82179_bU,persistenceRequired,2,Whether this entity should NOT despawn. +field_82180_bT,previousEquipment,2,"The equipment this mob was previously wearing, used for syncing." +field_82182_bS,equipment,2,Equipment (armor and held item) for this entity. +field_82184_d,aiControlledByPlayer,2,AI task for player control. +field_82189_bL,lastBuyingPlayer,2,"Last player to trade with this villager, used for aggressivity." +field_82190_bM,isLookingForHome,2, +field_82192_a,mobSelector,2,Entity selector for IMob types. +field_82199_d,witchDrops,2,List of items a witch should drop on death. +field_82200_e,witchAttackTimer,2,"Timer used as interval for a witch's attack, decremented every tick if aggressive and when reaches zero the witch will throw a potion at the target entity." +field_82219_bJ,attackEntitySelector,2,Selector used to determine the entities a wither boss should attack. +field_82225_f,fuseTime,2, +field_82226_g,explosionRadius,2,Explosion radius for this creeper. +field_82234_d,conversionTime,2,Ticker used to determine the time remaining for this zombie to convert into a villager when cured. +field_82237_a,spawnPosition,2,Coordinates of where the bat spawned. +field_82248_d,spawnForced,2,"Whether this player's spawn point is forced, preventing execution of bed checks." +field_82332_a,hangingDirection,2, +field_82337_e,itemDropChance,2,Chance for this item frame's item to drop from the frame. +field_82339_as,particleAlpha,0,Particle alpha +field_82373_c,directions,2, +field_82374_e,facings,2, +field_82387_b,intListPattern,2,"This matches things like ""-1,,4"", and is used for getting x,y,z,range from the token's argument list." +field_82388_c,keyValueListPattern,2,"This matches things like ""rm=4,c=2"" and is used for handling named token arguments." +field_82389_a,tokenPattern,2,"This matches the at-tokens introduced for command blocks, including their arguments, if any." +field_82401_a,skeletonHeadModel,0,The Skeleton's head model. +field_82407_g,renderInFrame,0, +field_82414_a,witchModel,0, +field_82423_g,modelArmourChestplate,0,"used for rendering armor on mobs, like zombies" +field_82424_k,bipedArmorFilenamePrefix,0,List of armor texture filenames. +field_82432_p,zombieVillagerModel,0, +field_82446_a,renderedBatSize,0,"not actually sure this is size, is not used as of now, but the model would be recreated if the value changed and it seems a good match for a bats size" +field_82483_a,itemDispenseBehaviorProvider,2, +field_82548_a,theChunkCoordinates,2, +field_82575_g,totalTime,2,Total time for this world. +field_82576_c,generatorOptions,2, +field_82577_x,theGameRules,2, +field_82578_b,NBT_TYPES,2, +field_82596_a,registryObjects,2,Objects registered on this registry. +field_82597_b,defaultObject,2,"Default object for this registry, returned when an object is not found." +field_82603_g,order_a,2,Face order for D-U-N-S-E-W. +field_82609_l,faceList,2,List of all values in EnumFacing. Order is D-U-N-S-E-W. +field_82611_j,frontOffsetY,2, +field_82612_k,frontOffsetZ,2, +field_82613_h,order_b,2,Face order for U-D-S-N-W-E. +field_82614_i,frontOffsetX,2, +field_82624_d,zPos,2, +field_82625_b,xPos,2, +field_82626_c,yPos,2, +field_82627_a,worldObj,2, +field_82628_b,y,2, +field_82629_c,z,2, +field_82630_a,x,2, +field_82635_f,maxSpeedBoostTime,2,Maximum time the entity's speed should be boosted for. +field_82636_d,speedBoosted,2,Whether the entity's speed is boosted. +field_82637_e,speedBoostTime,2,"Counter for speed boosting, upon reaching maxSpeedBoostTime the speed boost will be disabled" +field_82638_b,maxSpeed,2, +field_82639_c,currentSpeed,2, +field_82640_a,thisEntity,2, +field_82641_b,rangedAttackEntityHost,2,The entity (as a RangedAttackMob) the AI instance has been applied to. +field_82642_h,maxAttackDistance,2, +field_82643_g,targetEntitySelector,2,This filter is applied to the Entity search. Only matching entities will be targetted. (null -> no restrictions) +field_82653_b,worldFeatures,2,List of world features enabled on this preset. +field_82654_c,biomeToUse,2, +field_82655_a,flatLayers,2,List of layers on this preset. +field_82661_d,layerMinimumY,2, +field_82663_c,layerFillBlockMeta,2,Block metadata used on this set of laeyrs. +field_82664_a,layerCount,2,Amount of layers for this set of layers. +field_82668_f,scatteredFeatureSpawnList,2,contains possible spawns for scattered features +field_82669_g,maxDistanceBetweenScatteredFeatures,2,the maximum distance between scattered features +field_82670_h,minDistanceBetweenScatteredFeatures,2,the minimum distance between scattered features +field_82675_b,cropTypeA,2,First crop type for this field. +field_82676_c,cropTypeB,2,Second crop type for this field. +field_82678_d,cropTypeC,2,Third crop type for this field. +field_82679_b,cropTypeA,2,First crop type for this field. +field_82680_c,cropTypeB,2,Second crop type for this field. +field_82681_h,cropTypeD,2,Fourth crop type for this field. +field_82682_h,hasWitch,2,Whether this swamp hut has a witch. +field_82693_j,playerReputation,2,List of player reputations with this village +field_82694_i,noBreedTicks,2,Timestamp of tick count when villager last bred +field_82696_f,structureGenerators,2, +field_82697_g,hasDecoration,2, +field_82698_d,cachedBlockMetadata,2, +field_82699_e,flatWorldGenInfo,2, +field_82700_c,cachedBlockIDs,2, +field_82701_j,lavaLakeGenerator,2, +field_82702_h,hasDungeons,2, +field_82703_i,waterLakeGenerator,2, +field_82707_i,isAnimal,2,Whether this creature type is an animal. +field_82723_d,isSplashPotion,2,Whether the potion is a splash potion +field_82724_e,isAmbient,2,Whether the potion effect came from a beacon +field_82727_n,wither,2, +field_82728_o,anvil,2, +field_82729_p,fallingBlock,2, +field_82730_x,magicDamage,2,Whether the damage is magic based. +field_82731_v,wither,2,The wither Potion object. +field_82745_f,createdAtCloudUpdateTick,0,keeps track of how many ticks this PartiallyDestroyedBlock already exists +field_82748_f,worldTypeId,2,ID for this world type. +field_82754_f,priority,2, +field_82755_b,isSmoking,2,whether or not this explosion spawns smoke particles +field_82759_d,valueDouble,2, +field_82760_b,valueBoolean,2, +field_82761_c,valueInteger,2, +field_82762_a,valueString,2, +field_82771_a,theGameRules,2, +field_82786_e,maxTradeUses,2,Maximum times this trade can be used. +field_82807_a,skullTypes,2, +field_82809_c,soilId,2,Block ID of the soil this seed food should be planted on. +field_82811_a,hangingEntityClass,2, +field_82818_l,goldenCarrotEffect,2, +field_82821_f,version,0, +field_82822_g,gameVersion,0,Game version for this server. +field_82825_d,hasColorModifier,0, +field_82826_b,statusBarTime,0, +field_82827_c,bossName,0, +field_82828_a,healthScale,0, +field_82831_U,bossColorModifier,0, +field_82832_V,bossColorModifierPrev,0, +field_82843_f,itemFrame,2,"Item frame this stack is on, or null if not on an item frame." +field_82852_f,outputSlot,2,Here comes out item you merged and/or renamed. +field_82853_g,inputSlots,2,The 2slots where you put your items in that you want to merge and/or rename. +field_82854_e,maximumCost,2,The maximum cost of repairing/renaming in the anvil. +field_82855_n,thePlayer,2,The player that has this container open. +field_82856_l,materialCost,2,determined by damage of input item and stackSize of repair materials +field_82857_m,repairedItemName,2, +field_82860_h,theWorld,2, +field_82862_h,thePlayer,2, +field_82864_f,beaconSlot,2,"This beacon's slot where you put in Emerald, Diamond, Gold or Iron Ingot." +field_82866_e,tileBeacon,2, +field_82880_z,showCape,0,Whether to show your cape +field_82881_y,pauseOnLostFocus,0,"Whether to pause when the game loses focus, toggled by F3+P" +field_82882_x,advancedItemTooltips,0,"Whether to show advanced information on item tooltips, toggled by F3+H" +field_82890_f,batOuterLeftWing,0,The outer left wing box of the bat model. +field_82891_d,batLeftWing,0,The inner left wing box of the bat model. +field_82892_e,batOuterRightWing,0,The outer right wing box of the bat model. +field_82893_b,batBody,0,The body box of the bat model. +field_82894_c,batRightWing,0,The inner right wing box of the bat model. +field_82895_a,batHead,0, +field_82896_a,skeletonHead,0, +field_82898_f,villagerNose,0, +field_82902_i,witchHat,0, +field_82906_o,offsetX,0, +field_82907_q,offsetZ,0, +field_82908_p,offsetY,0, +field_82912_p,heightMapMinimum,2,Lowest value in the heightmap. +field_82914_M,spawnableCaveCreatureList,2, +field_82915_S,theWorldGenerator,2, +field_83001_bt,invulnerable,2, +field_83002_am,debugCrashKeyPressTime,0,"Keeps track of how long the debug crash keycombo (F3+C) has been pressed for, in order to crash after 10 seconds." +field_83016_L,theCalendar,2, +field_85037_d,aiArrowAttack,2, +field_85038_e,aiAttackOnCollide,2, +field_85053_h,throwerName,2, +field_85060_g,stacktrace,2, +field_85061_c,theReportCategory,2,Category of crash +field_85075_d,stackTrace,2, +field_85078_a,theCrashReport,2, +field_85087_d,lastUpdateTime,2,The worldtime at which this PortalPosition was last verified +field_85095_o,debugBoundingBox,0,whether bounding box should be rendered or not +field_85159_M,isAdventureModeExempt,2, +field_85177_Q,worldTeleporter,2,the teleporter to use when the entity is being transferred into the dimension +field_85183_f,currentItemHittingBlock,0,The Item currently being used to destroy a block +field_85185_A,touchscreen,0, +field_85190_d,destinationCoordinateKeys,2,A list of valid keys for the destinationCoordainteCache. These are based on the X & Z of the players initial location. +field_85191_c,destinationCoordinateCache,2,Stores successful portal placement locations for rapid lookup. +field_85192_a,worldServerInstance,2, +field_90016_e,inventoryCrafting,2,Internal crafting inventory used to check the result of mixing dyes corresponding to the fleece color when breeding sheep. +field_92014_j,explosionStrength,2,The explosion radius of spawned fireballs. +field_92016_l,highlightingItemStack,0,The ItemStack that is currently being highlighted +field_92017_k,remainingHighlightTicks,0,Remaining ticks the item highlight should be visible +field_92039_az,fireworkExplosions,0, +field_92040_ay,theEffectRenderer,0, +field_92041_a,twinkle,0, +field_92042_ax,fireworkAge,0, +field_92049_a,baseTextureIndex,0, +field_92050_aA,fadeColourRed,0, +field_92051_aB,fadeColourGreen,0, +field_92052_aC,fadeColourBlue,0, +field_92053_aD,hasFadeColour,0, +field_92055_b,lifetime,2,The lifetime of the firework in ticks. When the age reaches the lifetime the firework explodes. +field_92056_a,fireworkAge,2,The age of the firework in ticks. +field_92086_a,isBlank,2,When isBlank is true the DataWatcher is not watching any objects +field_92090_c,enchantmentsBookList,2,The list of enchantments applicable by the anvil from a book +field_92091_k,thorns,2, +field_92117_D,heldItemTooltips,0, +field_92118_B,overrideWidth,0, +field_92119_C,overrideHeight,0, +field_94051_e,hasCustomName,2, +field_94054_b,particleTextureIndexX,0, +field_94055_c,particleTextureIndexY,0, +field_94063_bt,_combatTracker,2, +field_94084_b,tntPlacedBy,2, +field_94102_c,entityName,2, +field_94106_a,minecartTNTFuse,2, +field_94109_b,pushZ,2, +field_94110_c,fuel,2, +field_94111_a,pushX,2, +field_94112_b,dropContentsWhenDead,2,"When set to true, the minecart will drop all items when setDead() is called. When false (such as when travelling dimensions) it preserves its contents." +field_94113_a,minecartContainerItems,2, +field_94141_F,destroyBlockIcons,0, +field_94150_f,metadata,0, +field_94151_a,itemForRender,0, +field_94187_f,holder,0, +field_94188_d,height,0, +field_94189_e,subSlots,0, +field_94190_b,originY,0, +field_94191_c,width,0, +field_94192_a,originX,0, +field_94201_d,height,0, +field_94202_e,rotated,0, +field_94204_c,width,0, +field_94205_a,scaleFactor,0, +field_94233_j,width,0,width of this icon in pixels +field_94234_k,height,0,height of this icon in pixels +field_94242_j,angleDelta,0,Speed and direction of compass rotation +field_94244_i,currentAngle,0,Current compass heading in radians +field_94249_f,missingImage,0, +field_94252_e,mapUploadedSprites,0, +field_94254_c,basePath,0, +field_94255_a,textureType,0,"0 = terrain.png, 1 = items.png" +field_94258_i,listAnimatedSprites,0, +field_94313_f,maxHeight,0, +field_94314_g,forcePowerOf2,0, +field_94315_d,currentHeight,0, +field_94316_e,maxWidth,0, +field_94317_b,stitchSlots,0, +field_94318_c,currentWidth,0, +field_94319_a,setStitchHolders,0, +field_94323_h,maxTileDimension,0,Max size (width or height) of a single tile +field_94535_f,dragMode,2,"The current drag mode (0 : evenly split, 1 : one item by slot, 2 : not used ?)" +field_94536_g,dragEvent,2,"The current drag event (0 : start, 1 : add slot : 2 : end)" +field_94537_h,dragSlots,2,The list of slots where the itemstack holds will be distributed +field_94554_b,fighter,2,The entity tracked. +field_94556_a,combatEntries,2,The CombatEntry objects that we've tracked so far. +field_94557_a,selectAnything,2, +field_94569_a,damageSrc,2, +field_94579_S,pendingTickListEntriesThisTick,2, +field_94593_a,theIcon,0, +field_94598_a,theIcon,0, +field_94600_b,iconArray,0, +field_94601_a,bowPullIconNameArray,2, +field_94603_a,EMPTY_SLOT_NAMES,2, +field_94604_cx,emptySlotIcon,0, +field_94605_cw,overlayIcon,0, +field_94606_cu,CLOTH_OVERLAY_NAMES,2, +field_96093_i,entityUniqueID,2, +field_96113_a,isBlocked,2,Whether this hopper minecart is being blocked by an activator rail. +field_96303_A,fancyStyling,2, +field_96304_B,controlString,2,The control string (section sign + formatting code) that can be inserted into client-side text to display subsequent text in this format. +field_96321_w,formattingCodeMapping,2,"Maps a formatting code (e.g., 'f') to its corresponding enum value (e.g., WHITE)." +field_96329_z,formattingCode,2,The formatting code that produces this format. +field_96330_y,formattingCodePattern,2,"Matches formatting codes that indicate that the client should treat the following text as bold, recolored, obfuscated, etc." +field_96331_x,nameMapping,2,"Maps a name (e.g., 'underline') to its corresponding enum value (e.g., UNDERLINE)." +field_96442_D,worldScoreboard,2, +field_96452_b,flipU,0, +field_96453_c,flipV,0, +field_96454_a,baseIcon,0, +field_96465_b,behaviourDefaultDispenseItem,2, +field_96507_a,theScoreboard,2, +field_96540_f,teamMemberships,2,Map of usernames to ScorePlayerTeam objects. +field_96541_d,objectiveDisplaySlots,2,"Index 0 is tab menu, 1 is sidebar, and 2 is below name" +field_96542_e,teams,2,Map of teamnames to ScorePlayerTeam instances +field_96543_b,scoreObjectiveCriterias,2, +field_96545_a,scoreObjectives,2,Map of objective names to ScoreObjective objects. +field_96555_a,scoreboardMCServer,2, +field_96566_b,selectInventories,2, +field_96602_b,dispenserMinecartBehavior,2, +field_96605_cw,dispenserBehavior,2, +field_96638_f,health,2, +field_96639_d,playerKillCount,2, +field_96640_e,totalKillCount,2, +field_96641_b,DUMMY,2, +field_96642_c,deathCount,2, +field_96643_a,INSTANCES,2, +field_96654_d,scorePlayerName,2, +field_96655_e,scorePoints,2, +field_96656_b,theScoreboard,2, +field_96657_c,theScoreObjective,2, +field_96658_a,scoreComparator,2,Used for sorting score by points +field_96671_f,colorSuffix,2, +field_96672_g,allowFriendlyFire,2, +field_96673_d,teamNameSPT,2, +field_96674_e,namePrefixSPT,2, +field_96676_c,membershipSet,2,A set of all team member usernames. +field_96677_a,theScoreboard,2, +field_96683_d,displayName,2, +field_96684_b,name,2, +field_96685_c,objectiveCriteria,2,The ScoreObjectiveCriteria for this objetive +field_96686_a,theScoreboard,2, +field_96691_E,chatScale,0, +field_96692_F,chatWidth,0, +field_96693_G,chatHeightUnfocused,0, +field_96694_H,chatHeightFocused,0, +field_98038_p,forceSpawn,2, +field_98040_a,mobSpawnerLogic,2,Mob spawner logic for this spawner minecart. +field_98044_b,transferTicker,2, +field_98151_a,theTexture,0, +field_98223_c,entityType,2, +field_98224_g,minecraftStartTimeMilis,2, +field_98282_f,randomEntity,2, +field_98283_g,minSpawnDelay,2, +field_98285_e,minecartToSpawn,2,List of minecart to spawn. +field_98286_b,spawnDelay,2,The delay to spawn. +field_98288_a,mobID,2, +field_98289_l,activatingRangeFromPlayer,2,The distance from which a player activates the spawner. +field_98290_m,spawnRange,2,The range coefficient for spawning entities around. +field_98291_j,cachedEntity,2,Cached instance of the entity to render inside the spawner. +field_98292_k,maxNearbyEntities,2, +field_98293_h,maxSpawnDelay,2, +field_98294_i,spawnCount,2, +field_98301_h,canSeeFriendlyInvisibles,2, +field_98303_au,AMBIENT_OCCLUSIONS,0, diff --git a/mcppatches/mappings/methods.csv b/mcppatches/mappings/methods.csv new file mode 100644 index 00000000..cd90cb6a --- /dev/null +++ b/mcppatches/mappings/methods.csv @@ -0,0 +1,4820 @@ +searge,name,side,desc +func_100011_g,getIsPotionDurationMax,0, +func_100012_b,setPotionDurationMax,0,Toggle the isPotionDurationMax field. +func_100015_a,isKeyDown,0,Returns whether the specified key binding is currently being pressed. +func_102007_a,canInsertItem,2,"Returns true if automation can insert the given item in the given slot from the given side. Args: Slot, item, side" +func_102008_b,canExtractItem,2,"Returns true if automation can extract the given item in the given slot from the given side. Args: Slot, item, side" +func_104002_bU,isNoDespawnRequired,2, +func_104055_i,setForceGamemode,1, +func_104056_am,getForceGamemode,2, +func_104112_b,saveExtraData,2,"Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unimplemented." +func_104140_m,saveChunkData,2,saves chunk data - currently only called during execution of the Save All command +func_110123_P,onChunkLoad,2, +func_110124_au,getUniqueID,2, +func_110125_a,setParticleIcon,0, +func_110128_b,onBroken,2,Called when this entity is broken. Entity parameter may be null. +func_110130_b,getKnotForBlock,2, +func_110131_b,removeFrameFromMap,2,Removes the dot representing this frame's position from the map when the item frame is broken. +func_110138_aP,getMaxHealth,2, +func_110139_bj,getAbsorptionAmount,2, +func_110140_aT,getAttributeMap,2, +func_110142_aN,getCombatTracker,2, +func_110143_aJ,getHealth,2, +func_110144_aD,getLastAttacker,2, +func_110145_l,dismountEntity,2,Moves the entity to a position out of the way of its mount. +func_110147_ax,applyEntityAttributes,2, +func_110148_a,getEntityAttribute,2, +func_110149_m,setAbsorptionAmount,2, +func_110159_bB,updateLeashedState,2,"Applies logic related to leashes, for example dragging the entity or breaking the leash." +func_110160_i,clearLeashed,2,Removes the leash from this entity. Second parameter tells whether to send a packet to surrounding players. +func_110161_a,onSpawnWithEgg,2, +func_110162_b,setLeashedToEntity,2,Sets the entity to be leashed to.\n \n@param entityIn The entity to be tethered to\n@param sendAttachNotification Whether to send an attaching notification packet to surrounding players. +func_110163_bv,enablePersistence,2,Enable the Entity persistence +func_110164_bC,allowLeashing,2, +func_110165_bF,recreateLeash,2, +func_110166_bE,getLeashedToEntity,2, +func_110167_bD,getLeashed,2, +func_110171_b,setHomeArea,2, +func_110172_bL,getHomePosition,2,Returns the chunk coordinate object of the home position. +func_110173_bK,isWithinHomeDistanceCurrentPosition,2, +func_110174_bM,getMaximumHomeDistance,2, +func_110175_bO,hasHome,2,Returns whether a home area is defined for this entity. +func_110176_b,isWithinHomeDistance,2, +func_110177_bN,detachHome,2, +func_110195_a,addGrowth,2,"""Adds the value of the parameter times 20 to the age of this entity. If the entity is an adult (if the entity's age is greater than 0), it will have no effect.""" +func_110198_t,increaseTemper,2, +func_110199_f,openGUI,2, +func_110200_cJ,canMate,2,"Return true if the horse entity ready to mate. (no rider, not riding, tame, adult, not steril...)" +func_110202_bQ,getHorseVariant,2, +func_110204_cc,isEatingHaystack,2, +func_110206_u,setJumpPower,2, +func_110207_m,setChested,2, +func_110208_b,setHorseWatchableBoolean,2, +func_110209_cd,isRearing,2, +func_110212_cp,getVariantTexturePaths,0, +func_110214_p,setHorseType,2, +func_110215_cj,getHorseJumpStrength,2, +func_110216_r,spawnHorseParticles,0,"""Spawns particles for the horse entity. par1 tells whether to spawn hearts. If it is false, it spawns smoke.""" +func_110217_cl,getAngrySoundName,2, +func_110218_cm,getMaxTemper,2, +func_110219_q,setRearing,2, +func_110220_cK,makeHorseRear,2, +func_110221_n,setHasReproduced,2, +func_110222_cv,isSterile,2,Return true if the horse entity is sterile (Undead || Mule) +func_110223_p,getRearingAmount,0, +func_110224_ci,dropChests,2, +func_110227_p,setEatingHaystack,2, +func_110228_bR,isAdultHorse,2, +func_110229_cs,canCarryChest,2,Return true if the horse entity can carry a chest. +func_110231_cz,makeHorseRearWithSound,2, +func_110233_w,getHorseWatchableBoolean,2, +func_110234_j,setHorseTamed,2, +func_110235_q,setHorseVariant,2, +func_110238_s,setTemper,2, +func_110240_a,dropItemsInChest,2, +func_110243_cf,getHasReproduced,2, +func_110244_cA,dropChestItems,2, +func_110246_bZ,isHorseJumping,2, +func_110247_cG,setHorseTexturePaths,0, +func_110248_bS,isTame,2, +func_110249_cI,openHorseMouth,2, +func_110250_a,getClosestHorse,2, +func_110251_o,setHorseSaddled,2, +func_110252_cg,getTemper,2, +func_110254_bY,getHorseSize,2, +func_110255_k,setHorseJumping,2, +func_110256_cu,isUndead,2,"Used to know if the horse can be leashed, if he can mate, or if we can interact with him" +func_110257_ck,isHorseSaddled,2, +func_110258_o,getGrassEatingAmount,0, +func_110259_cr,canWearArmor,2,Return true if the horse entity can wear an armor +func_110260_d,getHorseArmorIndex,2,"0 = iron, 1 = gold, 2 = diamond" +func_110261_ca,isChested,2, +func_110262_ch,prepareChunkForSpawn,2, +func_110263_g,setTamedBy,2, +func_110264_co,getHorseTexture,0, +func_110265_bP,getHorseType,2,"Returns the horse type. 0 = Normal, 1 = Donkey, 2 = Mule, 3 = Undead Horse, 4 = Skeleton Horse" +func_110297_a_,verifySellingItem,2,"Notifies the merchant of a possible merchantrecipe being fulfilled or not. Usually, this is just a sound byte being played depending if the suggested itemstack is not null." +func_110298_a,displayGUIHorse,2, +func_110303_q,getLocationCape,0, +func_110304_a,getDownloadImageSkin,0, +func_110306_p,getLocationSkin,0, +func_110311_f,getLocationSkin,0, +func_110317_t,isRidingHorse,0, +func_110318_g,sendHorseJump,0, +func_110319_bJ,getHorseJumpPower,0, +func_110322_i,sendHorseInteraction,0, +func_110326_a,setRecordPlaying,0, +func_110327_a,renderIcons,0, +func_110430_a,setEntityActionState,2, +func_110432_I,getSession,0, +func_110434_K,getTextureManager,0, +func_110435_P,addDefaultResourcePack,0, +func_110436_a,refreshResources,0, +func_110437_J,getProxy,0, +func_110438_M,getResourcePackRepository,0, +func_110441_Q,updateDisplayMode,0, +func_110442_L,getResourceManager,0, +func_110454_ao,getServerProxy,2, +func_110455_j,getOpPermissionLevel,2, +func_110462_b,getPackFormat,0, +func_110468_c,getFrameIndex,0, +func_110469_d,getFrameTime,0, +func_110470_b,frameHasTime,0, +func_110471_a,getFrameHeight,0, +func_110472_a,getFrameTimeSingle,0, +func_110473_c,getFrameCount,0, +func_110474_b,getFrameWidth,0, +func_110479_a,getTextureBlur,0, +func_110480_b,getTextureClamp,0, +func_110483_a,getSectionName,0,The name of this section type as it appears in JSON. +func_110492_a,parseAnimationFrame,0, +func_110495_a,hasNoTime,0, +func_110496_c,getFrameIndex,0, +func_110497_b,getFrameTime,0, +func_110503_a,parseMetadataSection,0, +func_110504_a,registerMetadataSectionType,0, +func_110505_a,getGson,0,Returns a Gson instance with type adapters registered for metadata sections. +func_110514_c,getResourcePack,0, +func_110515_d,getResourcePackName,0, +func_110516_a,updateResourcePack,0, +func_110517_b,closeResourcePack,0, +func_110518_a,bindTexturePackIcon,0, +func_110519_e,getTexturePackDescription,0, +func_110526_a,getMetadata,0, +func_110527_b,getInputStream,0, +func_110528_c,hasMetadata,0, +func_110536_a,getResource,0, +func_110537_b,getLocationMcmeta,0, +func_110538_a,addResourcePack,0, +func_110541_a,reloadResources,0, +func_110542_a,registerReloadListener,0, +func_110543_a,clearResources,0, +func_110544_b,notifyReloadListeners,0, +func_110545_a,reloadResourcePack,0, +func_110549_a,onResourceManagerReload,0, +func_110550_d,tick,0, +func_110551_a,loadTexture,0, +func_110552_b,getGlTextureId,0, +func_110564_a,updateDynamicTexture,0, +func_110565_c,getTextureData,0, +func_110569_e,initMissingImage,0, +func_110571_b,loadTextureAtlas,0, +func_110572_b,getAtlasSprite,0, +func_110573_f,registerIcons,0, +func_110577_a,bindTexture,0, +func_110578_a,getDynamicTextureLocation,0, +func_110579_a,loadTexture,0, +func_110580_a,loadTickableTexture,0, +func_110581_b,getTexture,0, +func_110586_a,getPackImage,0, +func_110587_b,getResourceDomains,0, +func_110589_b,resourceExists,0, +func_110590_a,getInputStream,0, +func_110591_a,getInputStreamByName,0, +func_110592_c,locationToName,0, +func_110593_b,hasResourceName,0, +func_110594_c,logNameNotLowercase,0, +func_110595_a,getRelativeName,0, +func_110596_a,readMetadata,0, +func_110599_c,getResourcePackZipFile,0, +func_110605_c,getResourceStream,0, +func_110609_b,getRepositoryEntriesAll,0, +func_110611_a,updateRepositoryEntriesAll,0, +func_110612_e,getDirResourcepacks,0, +func_110613_c,getRepositoryEntries,0, +func_110614_g,getResourcePackFiles,0, +func_110616_f,fixDirResourcepacks,0, +func_110623_a,getResourcePath,0, +func_110624_b,getResourceDomain,0, +func_110646_a,getTextWithoutFormattingCodes,0,"Returns a copy of the given string, with formatting codes stripped away." +func_110647_a,getOSType,0, +func_110661_a,parseDouble,2,"Parses a double from the given string. Throws if the string could not be parsed as a double, or if it's not between the given min and max values." +func_110662_c,parseBoolean,2,"Parses a boolean value from the given string. Throws if the string does not contain a boolean value. Accepted values are (case-sensitive): ""true"", ""false"", ""0"", ""1"".\n \n@param str accepted values are: true, false, 1, 0" +func_110664_a,parseDouble,2,"Parses a double from the given string. Throws if the string could not be parsed as a double, or if it's less than the given minimum value." +func_110665_a,clamp_double,2, +func_110666_a,clamp_coord,2, +func_110682_a,setBoxRotation,0,Sets the rotations for a ModelRenderer in the ModelHorse class. +func_110683_a,updateHorseRotation,0,Fixes and offsets a rotation in the ModelHorse class. +func_110738_j,isRidingHorse,0,"Checks if the player is riding a horse, used to chose the GUI to open" +func_110775_a,getEntityTexture,0,Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture. +func_110776_a,bindTexture,0, +func_110777_b,bindEntityTexture,0, +func_110813_b,canRenderName,0,Test if the entity name must be rendered +func_110934_a,addSprite,0, +func_110935_a,getCurrentWidth,0, +func_110936_b,getCurrentHeight,0, +func_110966_b,setIconWidth,0, +func_110967_i,getOriginY,0,"Returns the Y position of this icon on its texture sheet, in pixels." +func_110968_a,setFramesTextureData,0, +func_110969_c,setIconHeight,0, +func_110970_k,getFrameCount,0, +func_110971_a,initSprite,0, +func_110985_a,updateAnaglyph,0, +func_110986_a,readImageData,0, +func_110987_a,uploadTextureImage,0, +func_110988_a,uploadTexture,0, +func_110989_a,uploadTextureImageAllocate,0, +func_110990_a,copyToBuffer,0, +func_110991_a,allocateTexture,0, +func_110993_a,uploadTextureImageSubImpl,0, +func_110994_a,copyToBufferPos,0, +func_110995_a,uploadTextureImageSub,0, +func_110996_a,glGenTextures,0, +func_110997_a,setTextureClamped,0, +func_111108_a,getAttributeUnlocalizedName,2, +func_111109_a,clampValue,2, +func_111110_b,getDefaultValue,2, +func_111111_c,getShouldWatch,2, +func_111112_a,setShouldWatch,2, +func_111116_f,getDescription,2, +func_111117_a,setDescription,2, +func_111121_a,applyModifier,2, +func_111123_a,getAttribute,2,Get the Attribute this is an instance of +func_111124_b,removeModifier,2, +func_111125_b,getBaseValue,2, +func_111126_e,getAttributeValue,2, +func_111127_a,getModifier,2,"Returns attribute modifier, if any, by the given UUID" +func_111128_a,setBaseValue,2, +func_111129_g,computeValue,2, +func_111130_a,getModifiersByOperation,2, +func_111131_f,flagForUpdate,2, +func_111145_d,getWatchableObjectFloat,2, +func_111146_a,getAllAttributes,2, +func_111147_b,applyAttributeModifiers,2, +func_111148_a,removeAttributeModifiers,2, +func_111149_a,addAttributeInstance,2, +func_111150_b,registerAttribute,2,"Registers an attribute with this AttributeMap, returns a modifiable AttributeInstance associated with this map" +func_111151_a,getAttributeInstance,2, +func_111152_a,getAttributeInstanceByName,2, +func_111160_c,getWatchedAttributes,2, +func_111161_b,getAttributeInstanceSet,2, +func_111164_d,getAmount,2, +func_111165_e,isSaved,2,@see #isSaved +func_111166_b,getName,2, +func_111167_a,getID,2, +func_111168_a,setSaved,2,@see #isSaved +func_111169_c,getOperation,2, +func_111175_f,getTargetDistance,2, +func_111184_a,registerPotionAttributeModifier,2,Used by potions to register the attribute they modify. +func_111185_a,applyAttributesModifiersToEntity,2, +func_111187_a,removeAttributesModifiersFromEntity,2, +func_111190_b,sendMetadataToAllAssociatedPlayers,2,"Sends the entity metadata (DataWatcher) and attributes to all players tracking this entity, including the entity itself if a player." +func_111194_a,processChunk,2,This method currently only increases chunk inhabited time. Extension is possible in next versions +func_111196_a,increaseInhabitedTime,2,Increases chunk inhabited time every 8000 ticks +func_111205_h,getItemAttributeModifiers,2,"Gets a map of item attribute modifiers, used by ItemSword to increase hit damage." +func_111206_d,setTextureName,2, +func_111207_a,itemInteractionForEntity,2,"Returns true if the item can be used on the given entity, e.g. shears on sheep.\n \n@param stack the item stack of the item being used\n@param player the player who used the item\n@param target the target we hit with the item in hand" +func_111208_A,getIconString,0,Returns the string associated with this Item's Icon. +func_111225_m,getRelevantEnchantmentTypes,0,Returns the enchantment types relevant to this tab +func_111229_a,setRelevantEnchantmentTypes,2,Sets the enchantment types for populating this tab with enchanting books +func_111238_b,canBeHovered,0,"Actualy only call when we want to render the white square effect over the slots. Return always True, except for the armor slot of the Donkey/Mule (we can't interact with the Undead and Skeleton horses)" +func_111257_a,writeBaseAttributeMapToNBT,2,"Creates an NBTTagList from a BaseAttributeMap, including all its AttributeInstances" +func_111258_a,applyModifiersToAttributeInstance,2, +func_111259_a,readAttributeModifierFromNBT,2,Creates an AttributeModifier from an NBTTagCompound +func_111261_a,writeAttributeInstanceToNBT,2,"Creates an NBTTagCompound from an AttributeInstance, including its AttributeModifiers" +func_111262_a,writeAttributeModifierToNBT,2,Creates an NBTTagCompound from an AttributeModifier +func_111269_d,getPathSearchRange,2,Gets the maximum distance that the path finding will search in. +func_111270_a,union,2, +func_111271_a,getUnicodePageLocation,0, +func_111272_d,readFontTexture,0, +func_111282_a,interactWithEntity,2, +func_111283_C,getAttributeModifiers,2,Gets the attribute modifiers for this ItemStack.\nWill check for an NBT tag list containing modifiers for the stack. +func_111285_a,getUsername,0, +func_111286_b,getSessionID,0, +func_120011_ar,setGuiEnabled,1, +func_120016_a,createServerGui,1,Creates the server GUI and sets it visible for the user. +func_120018_d,getLogComponent,1, +func_120019_b,getStatsComponent,1,Generates new StatsComponent and returns it. +func_120020_c,getPlayerListComponent,1,Generates new PlayerListComponent and returns it. +func_130001_d,getCurrentMoonPhaseFactor,2,"gets the current fullness of the moon expressed as a float between 1.0 and 0.0, in steps of .25" +func_130002_c,interactFirst,2,First layer of player interaction +func_130010_a,getOriginX,0,"Returns the X position of this icon on its texture sheet, in pixels." +func_130011_c,setLastAttacker,2, +func_130014_f_,getEntityWorld,2, +func_130071_aq,getCurrentTimeMillis,2, +func_130072_d,getAnimationFrame,0, +func_130073_e,getFrameIndexSet,0, +func_130077_b,getPackName,0, +func_130086_a,getTextureType,0, +func_130087_a,getResourceLocation,0, +func_130088_a,loadTextureMap,0, +func_130098_m,hasAnimationMetadata,0, +func_130099_d,allocateFrameTextureData,0, +func_130102_n,resetSprite,0, +func_130103_l,clearFramesTextureData,0, +func_130105_g,getMinecraftStartTimeMillis,2,Returns the saved value of System#currentTimeMillis when the game started +func_135016_M,getLanguageManager,0, +func_135018_a,getLanguages,0, +func_135021_a,loadLocaleData,0, +func_135022_a,loadLocaleDataFiles,0,"par2 is a list of languages. For each language $L and domain $D, attempts to load the resource $D:lang/$L.lang" +func_135023_a,formatMessage,0,"Calls String.format(translateKey(key), params)" +func_135024_b,checkUnicode,0, +func_135025_a,isUnicode,0, +func_135026_c,translateKeyPrivate,0,"Returns the translation, or the key itself if the key could not be translated." +func_135028_a,loadLocaleData,0,par1 is a list of Resources +func_135034_a,getLanguageCode,0, +func_135035_b,isBidirectional,0, +func_135040_d,getLanguages,0, +func_135041_c,getCurrentLanguage,0, +func_135042_a,isCurrentLocaleUnicode,0, +func_135043_a,parseLanguageMetadata,0, +func_135044_b,isCurrentLanguageBidirectional,0, +func_135045_a,setCurrentLanguage,0, +func_135051_a,setLocale,0, +func_135052_a,format,0,"format(a, b) is equivalent to String.format(translate(a), b). Args: translationKey, params..." +func_135055_a,getResourceDomains,0, +func_135056_b,getAllResources,0, +func_135058_a,getPackMetadata,0, +func_135063_a,replaceWith,0,Replaces all the current instance's translations with the ones that are passed in. +func_135064_c,tryTranslateKey,2,Tries to look up a translation for the given key; spits back the key if no result was found. +func_140005_i,switchToRealms,0, +func_142008_O,shouldSetPosAfterLoading,2, +func_142012_a,isOnTeam,2,Returns true if the entity is on a specific team. +func_142013_aG,getLastAttackerTime,2, +func_142014_c,isOnSameTeam,2, +func_142015_aE,getRevengeTimer,2, +func_142020_c,setClientBrand,0, +func_142021_k,getClientBrand,0, +func_142049_d,removeAllModifiers,0, +func_142053_d,formatString,2, +func_142054_a,isSameTeam,2,Same as == +func_143004_u,markPlayerActive,2, +func_143006_e,setPlayerIdleTimeout,2, +func_143007_ar,getMaxPlayerIdleMinutes,2, +func_143011_b,readStructureFromNBT,2,(abstract) Helper method to read subclass data from NBT +func_143012_a,writeStructureToNBT,2,(abstract) Helper method to write subclass data to NBT +func_143016_a,registerVillagePieces,2, +func_143025_a,getStructureName,2, +func_143031_a,registerStructureComponent,2, +func_143034_b,registerStructure,2, +func_143045_a,registerScatteredFeaturePieces,2, +func_143046_a,registerStrongholdPieces,2, +func_143048_a,registerStructurePieces,2, +func_143049_a,registerNetherFortressPieces,2, +func_145747_a,addChatMessage,2,"Notifies this sender of some sort of information. This is for messages intended to display to the user. Used for typical output (like ""you asked for whether or not this game rule is set, so here's your answer""), warnings (like ""I fetched this block for you by ID, but I'd like you to know that every time you do this, I die a little inside""), and errors (like ""it's not called iron_pixacke, silly"")." +func_145748_c_,getFormattedCommandSenderName,2, +func_145749_h,getLastOutput,2,Returns the lastOutput. +func_145752_a,setCommand,2,Sets the command. +func_145753_i,getCustomName,2,Returns the customName of the command block. +func_145758_a,writeDataToNBT,2,Stores data to NBT format. +func_145759_b,readDataFromNBT,2,Reads NBT formatting and stored data into variables. +func_145760_g,getSuccessCount,2,returns the successCount int. +func_145769_d,setEntityId,2, +func_145770_h,isInRangeToRender3d,0, +func_145771_j,pushOutOfBlocks,2, +func_145772_a,getExplosionResistance,2,Called for explosions caused by Entities instead of the method on Block. Default forwards to Block. +func_145773_az,doesEntityNotTriggerPressurePlate,2,Return whether this entity should NOT trigger a pressure plate or a tripwire. +func_145775_I,doBlockCollisions,2, +func_145776_H,getSwimSound,2, +func_145777_O,getSplashSound,2, +func_145778_a,dropItemWithOffset,2, +func_145779_a,dropItem,2, +func_145780_a,playStepSound,2, +func_145782_y,getEntityId,2, +func_145797_a,setOwner,2, +func_145798_i,getOwner,2, +func_145799_b,setThrower,2, +func_145800_j,getThrower,2, +func_145805_f,getBlock,2, +func_145806_a,setHurtEntities,2, +func_145807_e,getWorldObj,0, +func_145817_o,getDefaultDisplayTile,2, +func_145818_k_,isCustomInventoryName,2,Returns if the inventory is named +func_145820_n,getDisplayTile,2, +func_145825_b,getInventoryName,2,Returns the name of the inventory +func_145826_a,addMapping,2,Adds a new two-way mapping between the class and its string name in both hashmaps. +func_145827_c,createAndLoadEntity,2,Creates a new entity and loads its data from the specified NBT. +func_145828_a,addInfoToCrashReport,2, +func_145829_t,validate,2,validates a tile entity +func_145830_o,hasWorldObj,2,Returns true if the worldObj isn't null. +func_145831_w,getWorld,2,Returns the worldObj for this tileEntity. +func_145832_p,getBlockMetadata,2, +func_145833_n,getMaxRenderDistanceSquared,0, +func_145834_a,setWorldObj,2,Sets the worldObj for this tileEntity. +func_145835_a,getDistanceSq,0,Returns the square of the distance between this entity and the passed in coordinates. +func_145836_u,updateContainingBlockInfo,2, +func_145837_r,isInvalid,2, +func_145838_q,getBlockType,2,Gets the block type at the location of this entity (client-only). +func_145839_a,readFromNBT,2, +func_145841_b,writeToNBT,2, +func_145842_c,receiveClientEvent,2, +func_145843_s,invalidate,2,invalidates a tile entity +func_145844_m,getDescriptionPacket,2,Overriden in a sign to provide the text. +func_145845_h,updateEntity,2, +func_145861_a,getStoredBlockID,2, +func_145864_c,getPistonOrientation,2, +func_145866_f,clearPistonTileEntity,2,"removes a piston's tile entity (and if the piston is moving, stops it)" +func_145867_d,shouldPistonHeadBeRendered,0, +func_145868_b,isExtending,2,Returns true if a piston is extending +func_145877_a,changePitch,2,change pitch by -> (currentPitch + 1) % 25 +func_145878_a,triggerNote,2,plays the stored note +func_145888_j,isOnTransferCooldown,2, +func_145896_c,setTransferCooldown,2, +func_145903_a,setSkullRotation,2, +func_145904_a,getSkullType,2, +func_145906_b,getSkullRotation,0, +func_145913_a,setEditable,0,Sets the sign's isEditable flag to the specified parameter. +func_145914_a,getIsEditable,2, +func_145934_k,canBrew,2, +func_145935_i,getBrewTime,2, +func_145938_d,setBrewTime,0, +func_145939_j,getFilledSlots,2,Returns an integer with each bit specifying whether that slot of the stand contains a potion +func_145940_l,brewPotions,2, +func_145948_k,canSmelt,2,"Returns true if the furnace can smelt an item, i.e. has a source item, destination stack isn't full, etc." +func_145949_j,smeltItem,2,Turn one item from the furnace source stack into the appropriate smelted item in the furnace result stack +func_145950_i,isBurning,2,Furnace isBurning +func_145951_a,setCustomInventoryName,2, +func_145952_a,getItemBurnTime,2,"Returns the number of ticks that the supplied fuel item will keep the furnace burning, or 0 if the item isn't fuel" +func_145953_d,getCookProgressScaled,0,Returns an integer between 0 and the passed value representing how close the current item is to being completely cooked +func_145954_b,isItemFuel,2, +func_145955_e,getBurnTimeRemainingScaled,0,"Returns an integer between 0 and the passed value representing how much burn time is left on the current fuel item, where 0 means that the item is exhausted and the passed value means that the item is fresh" +func_145965_a,getFlowerPotItem,2, +func_145966_b,getFlowerPotData,2, +func_145976_a,setCustomName,2, +func_145977_a,isSameTypeChestAt,2,"Test if the block is a chest, with the same type (normal, trapped, ...)" +func_145979_i,checkForAdjacentChests,2,Performs the check for adjacent chests to determine if this chest is double or not. +func_145980_j,getChestType,2, +func_145995_a,setOutputSignal,2, +func_145996_a,getOutputSignal,2, +func_145998_l,getLevels,2,Return the levels of this beacon's pyramid. +func_146001_d,setPrimaryEffect,2, +func_146002_i,shouldBeamRender,0, +func_146004_e,setSecondaryEffect,2, +func_146006_k,getSecondaryEffect,2,Return the secondary potion effect given by this beacon. +func_146007_j,getPrimaryEffect,2,Return the primary potion effect given by this beacon. +func_146023_a,getStrVsBlock,2, +func_146024_c,getInventorySlotContainItemAndDamage,0, +func_146026_a,consumeInventoryItem,2,"removed one item of specified Item from inventory (if it is in a stack, the stack size will reduce with 1)" +func_146027_a,clearInventory,2,"Removes all items from player inventory, including armor" +func_146028_b,hasItem,2,Checks if a specified Item is inside the inventory +func_146029_c,getInventorySlotContainItem,2, +func_146030_a,setCurrentItem,0, +func_146031_a,setChestTileEntity,2, +func_146034_e,handleHookRetraction,2, +func_146035_c,handleHookCasting,2, +func_146068_u,getDropItem,2, +func_146080_bZ,getCarriedBlock,2,Gets the block carried by this Enderman +func_146081_a,setCarriedBlock,2,Sets the block carried by this Enderman +func_146082_f,setInLove,2, +func_146086_d,setHorseArmorStack,2,Set horse armor stack (for example: new ItemStack(Items.iron_horse_armor)) +func_146094_a,getUUID,2,Gets a players UUID given their GameProfie +func_146096_a,getBreakSpeed,2,Returns how strong the player is against the specified block at this moment +func_146099_a,canHarvestBlock,2,Checks if the player has the ability to harvest a block (checks current inventory item for a tool if necessary) +func_146100_a,displayGUIEditSign,2,Displays the GUI for editing a sign. Args: tileEntitySign +func_146103_bH,getGameProfile,2,Returns the GameProfile for this player +func_146105_b,addChatComponentMessage,2, +func_146107_m,getStatFileWriter,0, +func_146110_a,drawModalRectWithCustomSizedTexture,0,"Draws a textured rectangle at z = 0. Args: x, y, u, v, width, height, textureWidth, textureHeight" +func_146111_b,drawButtonForegroundLayer,0, +func_146112_a,drawButton,0,Draws this button to the screen. +func_146113_a,playPressSound,0, +func_146114_a,getHoverState,0,"Returns 0 if the button is disabled, 1 if the mouse is NOT hovering over this button and 2 if it IS hovering over this button." +func_146115_a,isMouseOver,0,Whether the mouse cursor is currently over the button. +func_146116_c,mousePressed,0,Returns true if the mouse has been pressed on this control. Equivalent of MouseListener.mousePressed(MouseEvent e). +func_146117_b,getButtonWidth,0, +func_146118_a,mouseReleased,0,Fired when the mouse button is released. Equivalent of MouseListener.mouseReleased(MouseEvent e). +func_146119_b,mouseDragged,0,Fired when the mouse button is dragged. Equivalent of MouseListener.mouseDragged(MouseEvent e). +func_146136_c,returnEnumOptions,0, +func_146158_b,getChatGUI,0,"returns a pointer to the persistant Chat GUI, containing all previous chat messages and such" +func_146159_a,drawLabel,0, +func_146160_b,drawLabelBackground,0, +func_146175_b,deleteFromCursor,0,"delete the selected text, otherwsie deletes characters from either side of the cursor. params: delete num" +func_146176_q,getVisible,0,returns true if this textbox is visible +func_146177_a,deleteWords,0,Deletes the specified number of words starting at the cursor position. Negative numbers will delete words left of the cursor. +func_146178_a,updateCursorCounter,0,Increments the cursor counter +func_146179_b,getText,0,Returns the contents of the textbox +func_146180_a,setText,0,Sets the text of the textbox +func_146181_i,getEnableBackgroundDrawing,0,get enable drawing background and outline +func_146182_d,moveCursorBy,0,Moves the text cursor by a specified number of characters and clears the selection +func_146183_a,getNthWordFromPos,0,"gets the position of the nth word. N may be negative, then it looks backwards. params: N, position" +func_146184_c,setEnabled,0, +func_146185_a,setEnableBackgroundDrawing,0,enable drawing background and outline +func_146186_n,getSelectionEnd,0,"the side of the selection that is not the cursor, may be the same as the cursor" +func_146187_c,getNthWordFromCursor,0,"see @getNthNextWordFromPos() params: N, position" +func_146188_c,drawCursorVertical,0,draws the vertical line cursor in the textbox +func_146189_e,setVisible,0,Sets whether or not this textbox is visible +func_146190_e,setCursorPosition,0,sets the position of the cursor to the provided index +func_146191_b,writeText,0,"replaces selected text, or inserts text at the position on the cursor" +func_146192_a,mouseClicked,0,"Args: x, y, buttonClicked" +func_146193_g,setTextColor,0,Sets the text colour for this textbox (disabled text will not use this colour) +func_146194_f,drawTextBox,0,Draws the textbox +func_146195_b,setFocused,0,Sets focus to this gui element +func_146196_d,setCursorPositionZero,0,sets the cursors position to the beginning +func_146198_h,getCursorPosition,0,returns the current position of the cursor +func_146199_i,setSelectionPos,0,Sets the position of the selection anchor (i.e. position the selection was started at) +func_146200_o,getWidth,0,returns the width of the textbox depending on if background drawing is enabled +func_146201_a,textboxKeyTyped,0,Call this method from your GuiScreen to process the keys into the textbox +func_146202_e,setCursorPositionEnd,0,sets the cursors position to after the text +func_146203_f,setMaxStringLength,0, +func_146204_h,setDisabledTextColour,0, +func_146205_d,setCanLoseFocus,0,if true the textbox can lose focus by clicking elsewhere on the screen +func_146206_l,isFocused,0,Getter for the focused field +func_146207_c,getSelectedText,0,returns the text between the cursor and selectionEnd +func_146208_g,getMaxStringLength,0,returns the maximum number of character that can be contained in this textbox +func_146227_a,printChatMessage,0, +func_146228_f,getChatWidth,0, +func_146229_b,scroll,0,Scrolls the chat by the given number of lines. +func_146230_a,drawChat,0, +func_146231_a,clearChatMessages,0,Clears the chat. +func_146232_i,getLineCount,0, +func_146233_a,calculateChatboxWidth,0, +func_146234_a,printChatMessageWithOptionalDeletion,0,"prints the ChatComponent to Chat. If the ID is not 0, deletes an existing Chat Line of that ID from the GUI" +func_146235_b,formatColors,0, +func_146236_a,getChatComponent,0,Gets the chat component under the mouse +func_146237_a,setChatLine,0, +func_146238_c,getSentMessages,0,Gets the list of messages previously sent through the chat GUI +func_146239_a,addToSentMessages,0,"Adds this string to the list of sent messages, for recall using the up/down arrow keys" +func_146240_d,resetScroll,0,"Resets the chat scroll (executed when the GUI is closed, among others)" +func_146241_e,getChatOpen,0,Returns true if the chat GUI is open +func_146242_c,deleteChatLine,0,finds and deletes a Chat line by ID +func_146243_b,calculateChatboxHeight,0, +func_146244_h,getChatScale,0,Returns the chatscale from mc.gameSettings.chatScale +func_146245_b,refreshChat,0, +func_146246_g,getChatHeight,0, +func_146254_a,updateAchievementWindow,0, +func_146255_b,displayUnformattedAchievement,0, +func_146256_a,displayAchievement,0, +func_146257_b,clearAchievements,0, +func_146258_c,updateAchievementWindowScale,0, +func_146269_k,handleInput,0,Delegates mouse and keyboard input. +func_146270_b,drawWorldBackground,0, +func_146271_m,isCtrlKeyDown,0,Returns true if either windows ctrl key is down or if either mac meta key is down +func_146272_n,isShiftKeyDown,0,Returns true if either shift key is down +func_146273_a,mouseClickMove,0,"Called when a mouse button is pressed and the mouse is moved around. Parameters are : mouseX, mouseY, lastButtonClicked & timeSinceMouseClick." +func_146274_d,handleMouseInput,0,Handles mouse input. +func_146275_d,setClipboardString,0,Stores the given string in the system clipboard +func_146276_q_,drawDefaultBackground,0,Draws either a gradient over the background screen (when it exists) or a flat gradient over background.png +func_146277_j,getClipboardString,0,Returns a string stored in the system clipboard. +func_146278_c,drawBackground,0,Draws the background (i is always 0 as of 1.2.2)\n \n@param tint Always 0 as of Minecraft 1.2.2 +func_146279_a,drawCreativeTabHoveringText,0,"Draws the text when mouse is over creative inventory tab. Params: current creative tab to be checked, current mouse x position, current mouse y position." +func_146280_a,setWorldAndResolution,0,Causes the screen to lay out its subcomponents again. This is the equivalent of the Java call Container.validate() +func_146281_b,onGuiClosed,0,Called when the screen is unloaded. Used to disable keyboard repeat events +func_146282_l,handleKeyboardInput,0,Handles keyboard input. +func_146283_a,drawHoveringText,0, +func_146284_a,actionPerformed,0, +func_146285_a,renderToolTip,0, +func_146286_b,mouseReleased,0,"Called when a mouse button is released. Args : mouseX, mouseY, releaseButton\n \n@param state Will be negative to indicate mouse move and will be either 0 or 1 to indicate mouse up." +func_146350_a,setButtonDelay,0,Sets the number of ticks to wait before enabling the buttons. +func_146358_g,disableSecurityWarning,0, +func_146359_e,copyLinkToClipboard,0,Copies the link to the system clipboard. +func_146367_a,connect,0, +func_146402_a,getSentHistory,0,"input is relative and is applied directly to the sentHistoryCursor so -1 is the previous message, 1 is the next message from the current cursor position" +func_146403_a,submitChatMessage,0, +func_146404_p_,autocompletePlayerNames,0, +func_146405_a,sendAutocompleteRequest,0, +func_146406_a,onAutocompleteResponse,0, +func_146407_a,openLink,0, +func_146418_g,wakeFromSleep,0, +func_146456_p,pageGetCurrent,0,Returns the entire text of the current page as determined by currPage +func_146457_a,pageSetCurrent,0,Sets the text of the current page as determined by currPage +func_146459_b,pageInsertIntoCurrent,0,"Processes any text getting inserted into the current page, enforcing the page size limit" +func_146460_c,keyTypedInTitle,0,Processes keystrokes when editing the title of a book +func_146461_i,addNewPage,0, +func_146462_a,sendBookToServer,0, +func_146463_b,keyTypedInBook,0,Processes keystrokes when editing the text of a book +func_146464_h,updateButtons,0, +func_146504_a,getSoundVolume,0, +func_146509_g,doneLoading,0, +func_146521_a,drawStatsScreen,0, +func_146527_c,drawSprite,0,Draws a sprite from assets/textures/gui/container/stats_icons.png +func_146531_b,drawButtonBackground,0,Draws a gray box that serves as a button background. +func_146541_h,createButtons,0, +func_146552_b,drawAchievementScreen,0, +func_146553_h,drawTitle,0, +func_146574_g,sendRespawnPacket,0, +func_146575_b,drawWinGameScreen,0, +func_146586_a,setDoneWorking,0, +func_146789_i,getOldServerPinger,0, +func_146790_a,selectServer,0, +func_146791_a,connectToServer,0, +func_146792_q,refreshServerList,0, +func_146794_g,createButtons,0, +func_146795_p,getServerList,0, +func_146796_h,connectToSelected,0, +func_146961_a,hasResourcePackEntry,0, +func_146975_c,getSlotAtPosition,0,Returns the slot at the given coordinates or null if there is none. +func_146976_a,drawGuiContainerBackgroundLayer,0,"Args : renderPartialTicks, mouseX, mouseY" +func_146977_a,drawSlot,0, +func_146978_c,isPointInRegion,0,"Test if the 2D point is in a rectangle (relative to the GUI). Args : rectX, rectY, rectWidth, rectHeight, pointX, pointY" +func_146979_b,drawGuiContainerForegroundLayer,0,"Draw the foreground layer for the GuiContainer (everything in front of the items). Args : mouseX, mouseY" +func_146980_g,updateDragSplitting,0, +func_146981_a,isMouseOverSlot,0,"Returns if the passed mouse position is over the specified slot. Args : slot, mouseX, mouseY" +func_146982_a,drawItemStack,0,"Render an ItemStack. Args : stack, x, y, format\n \n@param altText Should be null to display item stack size count, but can be set to show custom text where the stack size counter would be." +func_146983_a,checkHotbarKeys,0,"This function is what controls the hotbar shortcut check when you press a number key when hovering a stack. Args : keyCode, Returns true if a Hotbar key is pressed, else false" +func_146984_a,handleMouseClick,0,"Called when the mouse is clicked over a slot or outside the gui.\n \n@param clickType Types: 0 for basic click, 1 for shift-click, 2 for hotbar, 3 for pickBlock, 4 for drop, 5 for item distribution drag, 6 for double click" +func_147035_g,getMerchant,0, +func_147044_g,drawActivePotionEffects,0,Display the potion effects list +func_147046_a,drawEntityOnScreen,0,"Draws the entity to the screen. Args: xPos, yPos, scale, mouseX, mouseY, entityLiving" +func_147050_b,setCurrentCreativeTab,0, +func_147052_b,renderCreativeInventoryHoveringText,0,"Renders the creative inventory hovering text if mouse is over it. Returns true if did render or false otherwise. Params: current creative tab to be checked, current mouse x position, current mouse y position." +func_147053_i,updateCreativeSearch,0, +func_147055_p,needsScrollBars,0,returns (if you are not on the inventoryTab) and (the flag isn't set) and (you have more than 1 page of items) +func_147090_g,renameItem,0, +func_147095_a,requestTexturePackLoad,2,on receiving this message the client (if permission is given) will download the requested textures +func_147099_x,getStatFile,2,Gets the stats file for reading achievements +func_147104_D,getCurrentServerData,0, +func_147106_B,scheduleResourcesRefresh,0, +func_147107_h,isFramerateLimitBelowMax,0, +func_147108_a,displayGuiScreen,0,Sets the argument GuiScreen as the main (topmost visible) screen. +func_147109_W,getAmbientMusicType,0, +func_147110_a,getFramebuffer,0, +func_147111_S,isJava64bit,0, +func_147112_ai,middleClickMouse,0,Called when user clicked he's mouse middle button (pick block) +func_147113_T,isGamePaused,0, +func_147114_u,getNetHandler,0, +func_147115_a,sendClickBlockToController,0, +func_147116_af,clickMouse,0, +func_147117_R,getTextureMapBlocks,0, +func_147118_V,getSoundHandler,0, +func_147119_ah,updateFramebufferSize,0, +func_147120_f,resetSize,0,Called to ensure everything gets drawn right when window size is changed +func_147121_ag,rightClickMouse,0,Called when user clicked he's mouse right button (place) +func_147122_X,isJvm64bit,0, +func_147130_as,getMinecraftSessionService,2, +func_147132_au,refreshStatusNextTick,2, +func_147133_T,getTexturePack,2, +func_147134_at,getServerStatusResponse,2, +func_147135_j,getDifficulty,2,Get the server's difficulty +func_147136_ar,isAnnouncingPlayerAchievements,2, +func_147137_ag,getNetworkSystem,2, +func_147138_a,addFaviconToStatusResponse,2, +func_147139_a,setDifficultyForAllWorlds,2, +func_147149_a,saveToFile,2,Saves this CrashReport to the given file and returns a value indicating whether we were successful at doing so. +func_147153_a,addBlockInfo,2, +func_147155_a,getCategoryName,0, +func_147156_b,getCategoryId,0, +func_147176_a,getChatComponentFromNthArg,2, +func_147177_a,joinNiceString,2,"Creates a linguistic series joining the input chat components. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark""" +func_147178_a,getChatComponentFromNthArg,2, +func_147179_f,getItemByText,2,"Gets the Item specified by the given text string. First checks the item registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the item wasn't found. Returns the item if it was found." +func_147180_g,getBlockByText,2,"Gets the Block specified by the given text string. First checks the block registry, then tries by parsing the string as an integer ID (deprecated). Warns the sender if we matched by parsing the ID. Throws if the block wasn't found. Returns the block if it was found." +func_147185_d,addTeam,2, +func_147186_g,listTeams,2, +func_147187_n,resetPlayers,2, +func_147188_j,emptyTeam,2, +func_147190_h,joinTeam,2, +func_147191_h,removeObjective,2, +func_147192_d,getScoreboard,2, +func_147193_c,addObjective,2, +func_147194_f,removeTeam,2, +func_147195_l,listPlayers,2, +func_147196_d,listObjectives,2, +func_147197_m,setPlayer,2, +func_147198_k,setObjectiveDisplay,2, +func_147199_i,leaveTeam,2, +func_147200_e,setTeamOption,2, +func_147215_a,addBlockDestroyEffects,0, +func_147223_a,pingPendingNetworks,0, +func_147224_a,ping,0, +func_147225_b,tryCompatibilityPing,0, +func_147226_b,clearPendingNetworks,0, +func_147231_a,onDisconnect,2,"Invoked when disconnecting, the parameter is a ChatComponent describing the reason for termination" +func_147232_a,onConnectionStateTransition,2,"Allows validation of the connection state transition. Parameters: from, to (connection state). Typically throws IllegalStateException or UnsupportedOperationException if validation fails" +func_147233_a,onNetworkTick,2,For scheduled network tasks. Used in NetHandlerPlayServer to send keep-alive packets and in NetHandlerLoginServer for a login-timeout +func_147234_a,handleBlockChange,2,Updates the block and metadata and generates a blockupdate (and notify the clients) +func_147235_a,handleSpawnObject,2,Spawns an instance of the objecttype indicated by the packet and sets its position and momentum +func_147236_a,handleEntityStatus,2,"Invokes the entities' handleUpdateHealth method which is implemented in LivingBase (hurt/death), MinecartMobSpawner (spawn delay), FireworkRocket & MinecartTNT (explosion), IronGolem (throwing,...), Witch (spawn particles), Zombie (villager transformation), Animal (breeding mode particles), Horse (breeding/smoke particles), Sheep (...), Tameable (...), Villager (particles for breeding mode, angry and happy), Wolf (...)" +func_147237_a,handleSpawnPlayer,2,"Handles the creation of a nearby player entity, sets the position and held item" +func_147238_a,handleDestroyEntities,2,"Locally eliminates the entities. Invoked by the server when the items are in fact destroyed, or the player is no longer registered as required to monitor them. The latter happens when distance between the player and item increases beyond a certain treshold (typically the viewing distance)" +func_147239_a,handleConfirmTransaction,2,Verifies that the server and client are synchronized with respect to the inventory/container opened by the player and confirms if it is the case. +func_147240_a,handleCustomPayload,2,"Handles packets that have room for a channel specification. Vanilla implemented channels are ""MC|TrList"" to acquire a MerchantRecipeList trades for a villager merchant, ""MC|Brand"" which sets the server brand? on the player instance and finally ""MC|RPack"" which the server uses to communicate the identifier of the default server resourcepack for the client to load." +func_147241_a,handleWindowItems,2,Handles the placement of a specified ItemStack in a specified container/inventory slot +func_147242_a,handleEntityEquipment,2, +func_147243_a,handleEntityAttach,2, +func_147244_a,handleEntityVelocity,2,Sets the velocity of the specified entity to the specified value +func_147245_a,handleWindowProperty,2,Sets the progressbar of the opened window to the specified value +func_147246_a,handleCollectItem,2, +func_147247_a,handleTeams,2,"Updates a team managed by the scoreboard: Create/Remove the team registration, Register/Remove the player-team-memberships, Set team displayname/prefix/suffix and/or whether friendly fire is enabled" +func_147248_a,handleUpdateSign,2,Updates a specified sign with the specified text lines +func_147249_a,handleUpdateHealth,2, +func_147250_a,handleUpdateScore,2,Either updates the score with a specified value or removes the score for an objective +func_147251_a,handleChat,2,Prints a chatmessage in the chat GUI +func_147252_a,handleChangeGameState,2, +func_147253_a,handleDisconnect,2,Closes the network channel +func_147254_a,handleDisplayScoreboard,2,"Removes or sets the ScoreObjective to be displayed at a particular scoreboard position (list, sidebar, below name)" +func_147255_a,handleSoundEffect,2, +func_147256_a,handlePlayerListItem,2, +func_147257_a,handleHeldItemChange,2,Updates which hotbar slot of the player is currently selected +func_147258_a,handlePlayerPosLook,2,"Handles changes in player positioning and rotation such as when travelling to a new dimension, (re)spawning, mounting horses etc. Seems to immediately reply to the server with the clients post-processing perspective on the player positioning" +func_147259_a,handleEntityMovement,2,"Updates the specified entity's position by the specified relative moment and absolute rotation. Note that subclassing of the packet allows for the specification of a subset of this data (e.g. only rel. position, abs. rotation or both)." +func_147260_a,handleEntityEffect,2, +func_147261_a,handleBlockAction,2,"Triggers Block.onBlockEventReceived, which is implemented in BlockPistonBase for extension/retraction, BlockNote for setting the instrument (including audiovisual feedback) and in BlockContainer to set the number of players accessing a (Ender)Chest" +func_147262_a,handleRemoveEntityEffect,2, +func_147263_a,handleChunkData,2,"Updates the specified chunk with the supplied data, marks it for re-rendering and lighting recalculation" +func_147264_a,handleMaps,2,Updates the worlds MapStorage with the specified MapData for the specified map-identifier and invokes a MapItemRenderer for it +func_147265_a,handleOpenWindow,2,"Displays a GUI by ID. In order starting from id 0: Chest, Workbench, Furnace, Dispenser, Enchanting table, Brewing stand, Villager merchant, Beacon, Anvil, Hopper, Dropper, Horse" +func_147266_a,handleSetSlot,2,Handles pickin up an ItemStack or dropping one in your inventory or an open (non-creative) container +func_147267_a,handleEntityHeadLook,2,"Updates the direction in which the specified entity is looking, normally this head rotation is independent of the rotation of the entity itself" +func_147268_a,handleSignEditorOpen,2,Creates a sign in the specified location if it didn't exist and opens the GUI to edit its text +func_147269_a,handleMapChunkBulk,2, +func_147270_a,handlePlayerAbilities,2, +func_147271_a,handleSpawnPosition,2, +func_147272_a,handleKeepAlive,2, +func_147273_a,handleUpdateTileEntity,2,"Updates the NBTTagCompound metadata of instances of the following entitytypes: Mob spawners, command blocks, beacons, skulls, flowerpot" +func_147274_a,handleTabComplete,2,Displays the available command-completion options the server knows of +func_147275_a,handleEntityTeleport,2,Updates an entity's position and rotation as specified by the packet +func_147276_a,handleCloseWindow,2,Resets the ItemStack held in hand and closes the window that is opened +func_147277_a,handleEffect,2, +func_147278_a,handleUseBed,2,"Retrieves the player identified by the packet, puts him to sleep if possible (and flags whether all players are asleep)" +func_147279_a,handleAnimation,2,"Renders a specified animation: Waking up a player, a living entity swinging its currently held item, being hurt or receiving a critical hit by normal or magical means" +func_147280_a,handleRespawn,2, +func_147281_a,handleSpawnMob,2,"Spawns the mob entity at the specified location, with the specified rotation, momentum and type. Updates the entities Datawatchers with the entity metadata specified in the packet" +func_147282_a,handleJoinGame,2,"Registers some server properties (gametype,hardcore-mode,terraintype,difficulty,player limit), creates a new WorldClient and sets the player initial dimension" +func_147283_a,handleExplosion,2,"Initiates a new explosion (sound, particles, drop spawn) for the affected blocks indicated by the packet." +func_147284_a,handleEntityMetadata,2,Invoked when the server registers new proximate objects in your watchlist or when objects in your watchlist have changed -> Registers any changes locally +func_147285_a,handleTimeUpdate,2, +func_147286_a,handleSpawnExperienceOrb,2,Spawns an experience orb and sets its value (amount of XP) +func_147287_a,handleMultiBlockChange,2,"Received from the servers PlayerManager if between 1 and 64 blocks in a chunk are changed. If only one block requires an update, the server sends S23PacketBlockChange and if 64 or more blocks are changed, the server sends S21PacketChunkData" +func_147288_a,handleSpawnPainting,2,Handles the spawning of a painting object +func_147289_a,handleParticles,2,Spawns a specified number of particles at the specified location with a randomized displacement according to specified bounds +func_147290_a,handleEntityProperties,2,"Updates en entity's attributes and their respective modifiers, which are used for speed bonusses (player sprinting, animals fleeing, baby speed), weapon/tool attackDamage, hostiles followRange randomization, zombie maxHealth and knockback resistance as well as reinforcement spawning chance." +func_147291_a,handleScoreboardObjective,2,"May create a scoreboard objective, remove an objective from the scoreboard or update an objectives' displayname" +func_147292_a,handleSpawnGlobalEntity,2,Handles globally visible entities. Used in vanilla for lightning bolts +func_147293_a,handleStatistics,2,Updates the players statistics or achievements +func_147294_a,handleBlockBreakAnim,2,Updates all registered IWorldAccess instances with destroyBlockInWorldPartially +func_147295_a,handleSetExperience,2, +func_147296_c,cleanup,0,Clears the WorldClient instance associated with this NetHandlerPlayClient +func_147297_a,addToSendQueue,0, +func_147298_b,getNetworkManager,0,Returns this the NetworkManager instance registered with this NetworkHandlerPlayClient +func_147311_a,processPing,2, +func_147312_a,processServerQuery,2, +func_147315_a,processEncryptionResponse,2, +func_147316_a,processLoginStart,2, +func_147322_a,closeConnection,2, +func_147338_a,processEnchantItem,2,"Enchants the item identified by the packet given some convoluted conditions (matching window, which should/shouldn't be in use?)" +func_147339_a,processConfirmTransaction,2,Received in response to the server requesting to confirm that the client-side open container matches the servers' after a mismatched container-slot manipulation. It will unlock the player's ability to manipulate the container contents +func_147340_a,processUseEntity,2,"Processes interactions ((un)leashing, opening command block GUI) and attacks on an entity with players currently equipped item" +func_147341_a,processTabComplete,2,Retrieves possible tab completions for the requested command string and sends them to the client +func_147342_a,processClientStatus,2,"Processes the client status updates: respawn attempt from player, opening statistics or achievements, or acquiring 'open inventory' achievement" +func_147343_a,processUpdateSign,2, +func_147344_a,processCreativeInventoryAction,2,Update the server with an ItemStack in a slot. +func_147345_a,processPlayerDigging,2,"Processes the player initiating/stopping digging on a particular spot, as well as a player dropping items?. (0: initiated, 1: reinitiated, 2? , 3-4 drop item (respectively without or with player control), 5: stopped; x,y,z, side clicked on;)" +func_147346_a,processPlayerBlockPlacement,2,"Processes block placement and block activation (anvil, furnace, etc.)" +func_147347_a,processPlayer,2,Processes clients perspective on player positioning and/or orientation +func_147348_a,processPlayerAbilities,2,Processes a player starting/stopping flying +func_147349_a,processVanilla250Packet,2,Synchronizes serverside and clientside book contents and signing +func_147350_a,processAnimation,2,Processes the player swinging its held item +func_147351_a,processClickWindow,2,Executes a container/inventory slot manipulation as indicated by the packet. Sends the serverside result if they didn't match the indicated result and prevents further manipulation by the player until he confirms that it has the same open container/inventory +func_147352_a,processClientSettings,2,"Updates serverside copy of client settings: language, render distance, chat visibility, chat colours, difficulty, and whether to show the cape" +func_147353_a,processKeepAlive,2,Updates a players' ping statistics +func_147354_a,processChatMessage,2,Process chat messages (broadcast back to clients) and commands (executes) +func_147355_a,processHeldItemChange,2,Updates which quickbar slot is selected +func_147356_a,processCloseWindow,2,Processes the client closing windows (container) +func_147357_a,processEntityAction,2,"Processes a range of action-types: sneaking, sprinting, waking from sleep, opening the inventory or setting jump height of the horse the player is riding" +func_147358_a,processInput,2,"Processes player movement input. Includes walking, strafing, jumping, sneaking; excludes riding and toggling flying/sprinting" +func_147359_a,sendPacket,2, +func_147360_c,kickPlayerFromServer,2,Kick a player from the server with a reason +func_147361_d,handleSlashCommand,2,Handle commands that start with a / +func_147362_b,getNetworkManager,2, +func_147363_d,currentTimeMillis,2, +func_147364_a,setPlayerLocation,2, +func_147383_a,processHandshake,2,"There are two recognized intentions for initiating a handshake: logging in and acquiring server status. The NetworkManager's protocol will be reconfigured according to the specified intention, although a login-intention must pass a versioncheck or receive a disconnect otherwise" +func_147388_a,handleDisconnect,2, +func_147389_a,handleEncryptionRequest,2, +func_147390_a,handleLoginSuccess,2, +func_147397_a,handleServerInfo,2, +func_147398_a,handlePong,2, +func_147407_a,setBase64EncodedIconData,0, +func_147409_e,getBase64EncodedIconData,0,"Returns the base-64 encoded representation of the server's icon, or null if not available" +func_147416_a,findClosestStructure,2, +func_147422_a,replaceBlocksForBiome,2, +func_147437_c,isAirBlock,2,Returns true if the block at the specified coordinates is empty +func_147438_o,getTileEntity,2, +func_147439_a,getBlock,2, +func_147440_b,findClosestStructure,2,Returns the location of the closest structure of the specified type. If not found returns null. +func_147441_b,notifyBlocksOfNeighborChange,2, +func_147442_i,setThunderStrength,0,Sets the strength of the thunder. +func_147443_d,destroyBlockInWorldPartially,2,Starts (or continues) destroying a block with given ID at the given coordinates for the given partially destroyed value. +func_147444_c,notifyBlockChange,2,"The block type change and need to notify other systems Args: x, y, z, blockID" +func_147445_c,isBlockNormalCubeDefault,2,"Checks if the block is a solid, normal cube. If the chunk does not exist, or is not loaded, it returns the boolean parameter" +func_147447_a,rayTraceBlocks,2,"Performs a raycast against all blocks in the world. Args : Vec1, Vec2, stopOnLiquid, ignoreBlockWithoutBoundingBox, returnLastUncollidableBlock" +func_147449_b,setBlock,2,Sets a block by a coordinate +func_147451_t,updateAllLightTypes,2, +func_147452_c,addBlockEvent,2,"Adds a block event with the given Args to the blockEventCache. During the next tick(), the block specified will have its onBlockEvent handler called with the given parameters. Args: X,Y,Z, Block, EventID, EventParameter" +func_147453_f,updateNeighborsAboutBlockChange,2, +func_147454_a,scheduleBlockUpdateWithPriority,2, +func_147455_a,setTileEntity,2, +func_147457_a,markTileEntityForRemoval,2,Adds the specified TileEntity to the pending removal list. +func_147458_c,markBlockRangeForRenderUpdate,2, +func_147459_d,notifyBlocksOfNeighborChange,2, +func_147460_e,notifyBlockOfNeighborChange,2,"Notifies a block that one of its neighbor change to the specified type Args: x, y, z, block" +func_147462_b,getTensionFactorForBlock,2,"returns a float value that can be used to determine how likely something is to go awry in the area. It increases based on how long the player is within the vicinity, the lunar phase, and game difficulty. The value can be up to 1.5 on the highest difficulty, 1.0 otherwise." +func_147463_c,updateLightByType,2, +func_147464_a,scheduleBlockUpdate,2,Used to schedule a call to the updateTick method on the specified block. +func_147465_d,setBlock,2,"Sets the block ID and metadata at a given location. Args: X, Y, Z, new block ID, new metadata, flags. Flag 1 will cause a block update. Flag 2 will send the change to clients (you almost always want this). Flag 4 prevents the block from being re-rendered, if this is a client world. Flags can be added together." +func_147466_a,doesBlockHaveSolidTopSurface,2,Returns true if the block at the given coordinate has a solid (buildable) top surface. +func_147468_f,setBlockToAir,2, +func_147469_q,isBlockFullCube,2, +func_147471_g,markBlockForUpdate,2, +func_147472_a,canPlaceEntityOnSide,2,Returns true if the given Entity can be placed on the given side of the given block position. +func_147474_b,getTopBlock,2, +func_147475_p,removeTileEntity,2, +func_147476_b,markTileEntityChunkModified,2,"Args: X, Y, Z, tile entity Marks the chunk the tile entity is in as modified. This is essential as chunks that are not marked as modified may be rolled back when exiting the game." +func_147477_a,isBlockTickScheduledThisTick,2,"Returns true if the given block will receive a scheduled tick in this tick. Args: X, Y, Z, Block" +func_147478_e,canSnowAt,2, +func_147479_m,markBlockForRenderUpdate,2,"On the client, re-renders this block. On the server, does nothing. Used for lighting updates." +func_147480_a,breakBlock,2,"Breaks the block at the given location. Args: x, y, z, dropBlock.\n \n@param x The X co-ordinate for the block\n@param y The Y co-ordinate for the block\n@param z The Z co-ordinate for the block\n@param dropBlock If the block should be dropped in-world" +func_147493_a,createPlayer,0, +func_147496_a,onWorldChange,0, +func_147499_a,bindTexture,0, +func_147500_a,renderTileEntityAt,0, +func_147542_a,cacheActiveRenderInfo,0, +func_147544_a,renderTileEntity,0,Render this TileEntity at its current position from the player +func_147545_a,hasSpecialRenderer,0,"Returns true if this TileEntity instance has a TileEntitySpecialRenderer associated with it, false otherwise." +func_147546_a,getSpecialRendererByClass,0, +func_147547_b,getSpecialRenderer,0, +func_147548_a,getFontRenderer,0, +func_147549_a,renderTileEntityAt,0,Render this TileEntity at a given set of coordinates +func_147564_a,getVertexState,0, +func_147565_a,setVertexState,0, +func_147570_f,getHasNormals,0, +func_147571_e,getHasBrightness,0, +func_147572_a,getRawBuffer,0, +func_147573_d,getHasTexture,0, +func_147574_g,getHasColor,0, +func_147575_c,getVertexCount,0, +func_147576_b,getRawBufferIndex,0, +func_147584_b,onStaticEntitiesChanged,2, +func_147585_a,markBlockRangeForRenderUpdate,2,"On the client, re-renders all blocks in this range, inclusive. On the server, does nothing. Args: min x, min y, min z, max x, max y, max z" +func_147586_a,markBlockForUpdate,2,"On the client, re-renders the block. On the server, sends the block to the client (which will re-render it), including the tile entity description packet if applicable. Args: x, y, z" +func_147587_b,destroyBlockPartially,2,Starts (or continues) destroying a block with given ID at the given coordinates for the given partially destroyed value +func_147588_b,markBlockForRenderUpdate,2,"On the client, re-renders this block. On the server, does nothing. Used for lighting updates." +func_147589_a,renderEntities,0,"Renders all entities within range and within the frustrum. Args: pos, frustrum, partialTickTime" +func_147590_a,drawOutlinedBoundingBox,0,Draws lines for the edges of the bounding box. +func_147591_f,rebuildDisplayListEntities,0, +func_147604_a,setFramebufferColor,0, +func_147605_b,createFramebuffer,0, +func_147606_d,unbindFramebufferTexture,0, +func_147607_a,setFramebufferFilter,0, +func_147608_a,deleteFramebuffer,0, +func_147609_e,unbindFramebuffer,0, +func_147610_a,bindFramebuffer,0, +func_147611_b,checkFramebufferComplete,0, +func_147612_c,bindFramebufferTexture,0, +func_147613_a,createBindFramebuffer,0, +func_147614_f,framebufferClear,0, +func_147615_c,framebufferRender,0, +func_147631_c,deleteGlTexture,0, +func_147632_b,setAnisotropicFiltering,0, +func_147633_a,setMipmapLevels,0, +func_147634_a,completeResourceLocation,0, +func_147640_e,checkTextureUploaded,0, +func_147641_a,setBufferedImage,0, +func_147645_c,deleteTexture,0, +func_147647_b,bidiReorder,0,Apply Unicode Bidirectional Algorithm to string and return a new possibly reordered string for visual rendering. +func_147649_g,getXPosF,0, +func_147650_b,getSoundLocation,0, +func_147651_i,getZPosF,0, +func_147652_d,getRepeatDelay,0, +func_147653_e,getVolume,0, +func_147654_h,getYPosF,0, +func_147655_f,getPitch,0, +func_147656_j,getAttenuationType,0, +func_147657_c,canRepeat,0, +func_147667_k,isDonePlaying,0, +func_147673_a,createPositionedSoundRecord,0, +func_147674_a,createPositionedSoundRecord,0, +func_147675_a,createRecordSoundAtPosition,0, +func_147680_a,getSound,0, +func_147681_a,playDelayedSound,0,Plays the sound in n ticks +func_147682_a,playSound,0,Play a sound +func_147683_b,stopSound,0, +func_147684_a,setSoundLevel,0, +func_147685_d,unloadSounds,0, +func_147686_a,getRandomSoundFromCategories,0,Returns a random sound from one or more categories +func_147687_e,resumeSounds,0, +func_147689_b,pauseSounds,0, +func_147690_c,stopSounds,0, +func_147691_a,setListener,0, +func_147692_c,isSoundPlaying,0, +func_147693_a,loadSoundResource,0, +func_147701_i,getMapItemRenderer,0, +func_147702_a,isShaderActive,0, +func_147703_b,deactivateShader,0, +func_147704_a,updateShaderGroupSize,0, +func_147705_c,activateNextShader,0, +func_147706_e,getShaderGroup,0, +func_147715_a,renderChest,0,"Renders a chest at 0,0,0 - used for item rendering" +func_147721_p,renderBlockLiquid,0,Renders a block based on the BlockLiquid class at the given coordinates +func_147722_a,renderBlockStairs,0,Renders a stair block at the given coordinates +func_147723_f,renderBlockTripWireSource,0,Renders a trip wire source block at the given coordinates +func_147724_m,renderBlockStem,0, +func_147725_a,renderBlockAnvil,0,Renders anvil +func_147726_j,renderBlockVine,0, +func_147727_a,mixAoBrightness,0, +func_147728_a,renderBlockAnvilOrient,0,Renders anvil block with orientation +func_147729_a,getLiquidHeight,0, +func_147730_a,renderBlockStemSmall,0, +func_147731_b,renderPistonBase,0,renders a block as a piston base +func_147732_a,renderBlockRedstoneDiodeMetadata,0, +func_147733_k,renderBlockStainedGlassPane,0, +func_147734_d,renderFaceZPos,0,"Renders the given texture to the south (z-positive) face of the block. Args: block, x, y, z, texture" +func_147735_a,renderBlockFence,0, +func_147736_d,renderStandardBlockWithColorMultiplier,0,"Renders a standard cube block at the given coordinates, with a given color ratio. Args: block, x, y, z, r, g, b" +func_147737_a,renderBlockAnvilRotate,0,Renders anvil block with rotation +func_147738_c,renderPistonRodEW,0,Render piston rod east/west +func_147739_a,renderItemIn3d,0,Checks to see if the item's render type indicates that it should be rendered as a regular block or not. +func_147740_a,renderBlockStemBig,0, +func_147741_a,renderBlockBrewingStand,0,Render BlockBrewingStand +func_147742_r,renderBlockLog,0, +func_147743_a,renderBlockEndPortalFrame,0,Render BlockEndPortalFrame +func_147744_b,hasOverrideBlockTexture,0, +func_147745_b,getBlockIcon,0, +func_147746_l,renderCrossedSquares,0,"Renders any block requiring crossed squares such as reeds, flowers, and mushrooms" +func_147747_a,renderTorchAtAngle,0,"Renders a torch at the given coordinates, with the base slanting at the given delta" +func_147748_a,renderBlockRedstoneDiode,0, +func_147749_a,renderBlockSandFalling,0, +func_147750_a,renderPistonExtensionAllFaces,0,Render all faces of the piston extension +func_147751_a,renderStandardBlockWithAmbientOcclusion,0, +func_147752_a,renderBlockFlowerpot,0,Renders flower pot +func_147753_b,setRenderAllFaces,0, +func_147754_e,renderBlockCactusImpl,0,Render block cactus implementation +func_147755_t,renderBlockCactus,0, +func_147756_g,renderBlockTripWire,0,Renders a trip wire block at the given coordinates +func_147757_a,setOverrideBlockTexture,0,Sets overrideBlockTexture +func_147758_b,getIconSafe,0, +func_147759_a,renderBlockRepeater,0,render a redstone repeater at the given coordinates +func_147760_u,renderBlockDoor,0, +func_147761_c,renderFaceZNeg,0,"Renders the given texture to the north (z-negative) face of the block. Args: block, x, y, z, texture" +func_147762_c,unlockBlockBounds,0,Unlocks the visual bounding box so that RenderBlocks can change it again. +func_147763_a,renderPistonRodUD,0,Render piston rod up/down +func_147764_f,renderFaceXPos,0,"Renders the given texture to the east (x-positive) face of the block. Args: block, x, y, z, texture" +func_147765_a,drawCrossedSquares,0,Utility function to draw crossed swuares +func_147766_a,renderBlockMinecartTrack,0, +func_147767_a,renderBlockPane,0, +func_147768_a,renderFaceYNeg,0,"Renders the given texture to the bottom face of the block. Args: block, x, y, z, texture" +func_147769_a,renderBlockAllFaces,0,Render all faces of a block +func_147770_b,overrideBlockBounds,0,"Like setRenderBounds, but locks the values so that RenderBlocks won't change them. If you use this, you must call unlockBlockBounds after you finish rendering!" +func_147771_a,clearOverrideBlockTexture,0,Clear override block texture +func_147772_a,renderBlockCocoa,0, +func_147773_v,renderBlockBed,0,render a bed at the given coordinates +func_147774_a,renderBlockDoublePlant,0, +func_147775_a,setRenderBoundsFromBlock,0,"Like setRenderBounds, but automatically pulling the bounds from the given Block." +func_147776_a,renderBlockFenceGate,0, +func_147777_a,getBlockIconFromSide,0, +func_147778_a,getAoBrightness,0,Get ambient occlusion brightness +func_147779_s,renderBlockQuartz,0, +func_147780_a,renderBlockAnvilMetadata,0,Renders anvil block with metadata +func_147781_a,renderBlockRedstoneComparator,0, +func_147782_a,setRenderBounds,0, +func_147783_o,renderBlockLilyPad,0, +func_147784_q,renderStandardBlock,0,Renders a standard cube block at the given coordinates\n \n@param blockType the type of block that is rendered\n@param blockX x-coordinate of the block\n@param blockY y-coordinate of the block\n@param blockZ z-coordinate of the block +func_147785_a,renderBlockCauldron,0,Render block cauldron +func_147786_a,setRenderFromInside,0, +func_147787_a,getBlockIconFromSideAndMetadata,0, +func_147788_h,renderBlockRedstoneWire,0,Renders a redstone wire block at the given coordinates +func_147789_b,renderPistonRodSN,0,Render piston rod south/north +func_147790_e,renderBlockLever,0,Renders a lever block at the given coordinates +func_147791_c,renderBlockTorch,0,Renders a torch block at the given coordinates +func_147792_a,renderBlockUsingTexture,0,Renders a block using the given texture instead of the block's own default texture +func_147793_a,getBlockIcon,0, +func_147794_i,renderBlockLadder,0, +func_147795_a,renderBlockCropsImpl,0,Render block crops implementation +func_147796_n,renderBlockCrops,0, +func_147797_a,renderBlockBeacon,0, +func_147798_e,renderFaceXNeg,0,"Renders the given texture to the west (x-negative) face of the block. Args: block, x, y, z, texture" +func_147799_a,renderBlockHopperMetadata,0, +func_147800_a,renderBlockAsItem,0,"Is called to render the image of a block on an inventory, as a held item, or as a an item on the ground" +func_147801_a,renderBlockFire,0,Renders a fire block at the given coordinates +func_147802_a,renderBlockDragonEgg,0, +func_147803_a,renderBlockHopper,0, +func_147804_d,renderPistonBaseAllFaces,0,Render all faces of the piston base +func_147805_b,renderBlockByRenderType,0,Renders the block at the given coordinates using the block's rendering type +func_147806_b,renderFaceYPos,0,"Renders the given texture to the top face of the block. Args: block, x, y, z, texture" +func_147807_a,renderBlockWall,0, +func_147808_b,renderStandardBlockWithAmbientOcclusionPartial,0,"Renders non-full-cube block with ambient occusion. Args: block, x, y, z, red, green, blue (lighting)" +func_147809_c,renderPistonExtension,0,renders the pushing part of a piston +func_147889_b,updateRendererSort,0, +func_147890_b,preRenderBlocks,0, +func_147891_a,postRenderBlocks,0, +func_147892_a,updateRenderer,0,Will update this chunk renderer +func_147905_a,isStaticEntity,0, +func_147906_a,renderLivingLabel,0,Renders an entity's name above its head +func_147936_a,renderEntityStatic,0, +func_147937_a,renderEntitySimple,0, +func_147938_a,cacheActiveRenderInfo,0, +func_147939_a,doRenderEntity,0, +func_147940_a,renderEntityWithPosYaw,0, +func_147942_a,deleteTexture,0, +func_147946_a,allocateTextureImpl,0, +func_147947_a,uploadTextureSub,0, +func_147948_a,prepareAnisotropicData,0, +func_147949_a,generateMipmapData,0, +func_147951_b,setTextureBlurred,0, +func_147955_a,uploadTextureMipmap,0, +func_147960_a,prepareAnisotropicFiltering,0, +func_147961_a,fixTransparentPixels,0, +func_147962_a,getFrameTextureData,0, +func_147963_d,generateMipmaps,0, +func_147964_a,loadSprite,0, +func_147965_a,getFrameTextureData,0, +func_147969_b,getMipmapDimension,0, +func_147984_b,getShaderUniformOrDefault,0,"gets a shader uniform for the name given. if not found, returns a default not-null value" +func_147985_d,markDirty,0, +func_147986_h,getProgram,0, +func_147987_b,parseUniform,0, +func_147988_a,deleteShader,0, +func_147989_e,getVertexShaderLoader,0, +func_147990_i,setupUniforms,0,goes through the parsed uniforms and samplers and connects them to their GL counterparts. +func_147991_a,getShaderUniform,0,gets a shader uniform for the name given. null if not found. +func_147992_a,addSamplerTexture,0,"adds a shader sampler texture. if it already exists, replaces it." +func_147993_b,endShader,0, +func_147994_f,getFragmentShaderLoader,0, +func_147995_c,useShader,0, +func_147996_a,parseSampler,0, +func_148017_a,getFramebuffer,0, +func_148018_a,loadShaderGroup,0, +func_148020_a,addFramebuffer,0, +func_148021_a,deleteShaderGroup,0, +func_148022_b,getShaderGroupName,0, +func_148023_a,addShader,0, +func_148024_c,resetProjectionMatrix,0, +func_148026_a,createBindFramebuffers,0, +func_148027_a,initTarget,0, +func_148028_c,initUniform,0, +func_148040_d,preLoadShader,0, +func_148041_a,addAuxFramebuffer,0, +func_148042_a,loadShader,0, +func_148043_c,getShaderManager,0, +func_148044_b,deleteShader,0, +func_148045_a,setProjectionMatrix,0, +func_148054_b,deleteShader,0, +func_148055_a,getShaderFilename,0, +func_148056_a,attachShader,0, +func_148057_a,loadShader,0, +func_148062_a,getShaderName,0, +func_148063_b,getShaderExtension,0, +func_148064_d,getLoadedShaders,0,gets a map of loaded shaders for the ShaderType. +func_148065_c,getShaderMode,0, +func_148074_b,getStaticShaderLinkHelper,0, +func_148075_b,linkProgram,0, +func_148076_a,setNewStaticShaderLinkHelper,0, +func_148077_a,deleteShader,0, +func_148078_c,createProgram,0, +func_148081_a,set,0, +func_148082_k,uploadFloatMatrix,0, +func_148083_a,set,0, +func_148084_b,setUniformLocation,0, +func_148085_a,parseType,0, +func_148086_a,getShaderName,0, +func_148087_a,set,0, +func_148088_a,set,0, +func_148089_j,uploadFloat,0, +func_148090_a,set,0, +func_148091_i,uploadInt,0, +func_148093_b,upload,0, +func_148094_a,set,0, +func_148095_a,set,0, +func_148096_h,markDirty,0, +func_148097_a,set,0, +func_148120_b,drawSelectionBox,0,Draws the selection box around the selected slot element. +func_148121_k,bindAmountScrolled,0,Stop the thing from scrolling out of bounds +func_148122_a,setDimensions,0, +func_148123_a,drawBackground,0, +func_148124_c,getSlotIndexFromScreenCoords,0, +func_148125_i,getEnabled,0, +func_148126_a,drawSlot,0, +func_148127_b,getSize,0, +func_148128_a,drawScreen,0, +func_148129_a,drawListHeader,0,Handles drawing a list's header row. +func_148130_a,setShowSelectionBox,0, +func_148131_a,isSelected,0,Returns true if the element passed in is currently selected +func_148133_a,setHasListHeader,0,"Sets hasListHeader and headerHeight. Params: hasListHeader, headerHeight. If hasListHeader is false headerHeight is set to 0." +func_148134_d,registerScrollButtons,0,Registers the IDs that can be used for the scrollbar's up/down buttons. +func_148136_c,overlayBackground,0,Overlays the background to hide scrolled items +func_148137_d,getScrollBarX,0, +func_148138_e,getContentHeight,0,Return the height of the content being scrolled +func_148139_c,getListWidth,0,Gets the width of the list +func_148140_g,setSlotXBoundsFromLeft,0,"Sets the left and right bounds of the slot. Param is the left bound, right is calculated as left + width." +func_148141_e,isMouseYWithinSlotBounds,0, +func_148143_b,setEnabled,0, +func_148144_a,elementClicked,0,"The element in the slot that was clicked, boolean for whether it was double clicked or not" +func_148145_f,scrollBy,0,"Scrolls the slot by the given amount. A positive value scrolls down, and a negative value scrolls up." +func_148146_j,getSlotHeight,0, +func_148147_a,actionPerformed,0, +func_148148_g,getAmountScrolled,0,Returns the amountScrolled field as an integer. +func_148180_b,getListEntry,0,Gets the IGuiListEntry object for the given index +func_148201_l,getList,0, +func_148202_k,getListHeader,0, +func_148254_d,getToken,0, +func_148255_b,getPlayerID,0, +func_148256_e,getProfile,0, +func_148259_a,saveScreenshot,0,"Saves a screenshot in the game directory with the given file name (or null to generate a time-stamped name). Args: gameDirectory, fileName, requestedWidthInPixels, requestedHeightInPixels, frameBuffer" +func_148260_a,saveScreenshot,0,"Saves a screenshot in the game directory with a time-stamped filename. Args: gameDirectory, requestedWidthInPixels, requestedHeightInPixels, frameBuffer" +func_148262_d,denormalizeValue,0, +func_148263_a,setValueMax,0, +func_148264_f,snapToStep,0, +func_148266_c,normalizeValue,0, +func_148267_f,getValueMax,0, +func_148268_e,snapToStepClamp,0, +func_148277_b,mouseReleased,0,"Fired when the mouse button is released. Arguments: index, x, y, mouseEvent, relativeX, relativeY" +func_148278_a,mousePressed,0,Returns true if the mouse has been pressed on this control. +func_148279_a,drawEntry,0, +func_148289_a,getLanServer,0, +func_148296_a,getServerData,0, +func_148297_b,prepareServerIcon,0, +func_148329_a,scrollTo,0,Updates the gui slots ItemStack's based on scroll position. +func_148334_a,generateNewRandomName,0,Randomly generates a new name built up of 3 or 4 randomly selected words. +func_148335_a,reseedRandomGenerator,0,Resets the underlying random number generator using a given seed. +func_148522_a,onDownloadComplete,0, +func_148526_a,obtainResourcePack,0, +func_148530_e,getResourcePackInstance,0,Getter for the IResourcePack instance associated with this ResourcePackRepository +func_148535_c,getListMipmaps,0, +func_148537_a,sendPacketToAllPlayersInDimension,2, +func_148539_a,sendChatMsg,2,Sends the given string to every player as chat message. +func_148540_a,sendPacketToAllPlayers,2, +func_148541_a,sendToAllNear,2,"params: x,y,z,r,dimension. The packet is sent to all players within r radius of x,y,z (r^2>x^2+y^2+z^2)" +func_148542_a,allowUserToConnect,2,"checks ban-lists, then white-lists, then space for the server. Returns null on success, or an error message" +func_148543_a,sendToAllNearExcept,2,"params: srcPlayer,x,y,z,r,dimension. The packet is not sent to the srcPlayer, but all other players within the search radius" +func_148544_a,sendChatMsgImpl,2, +func_148545_a,createPlayerForUser,2,also checks for multiple logins across servers +func_148552_f,isStreaming,0, +func_148553_a,setSoundEntryVolume,0, +func_148554_a,setSoundEntryWeight,0, +func_148555_d,getSoundEntryWeight,0, +func_148556_a,getSoundEntryName,0, +func_148557_a,setStreaming,0, +func_148558_b,getSoundEntryVolume,0, +func_148559_b,setSoundEntryPitch,0, +func_148560_c,getSoundEntryPitch,0, +func_148561_a,setSoundEntryName,0, +func_148562_a,setSoundEntryType,0, +func_148563_e,getSoundEntryType,0, +func_148570_a,getSoundList,0, +func_148571_a,setSoundCategory,0, +func_148572_a,setReplaceExisting,0, +func_148573_c,getSoundCategory,0, +func_148574_b,canReplaceExisting,0, +func_148580_a,getType,0, +func_148586_a,getTypeInt,0, +func_148594_a,getNormalizedVolume,0,"Normalizes volume level from parameters. Range [0.0, 1.0]" +func_148595_a,getSoundCategoryVolume,0,"Returns the sound level (between 0.0 and 1.0) for a category, but 1.0 for the master sound category" +func_148596_a,reloadSoundSystem,0, +func_148597_a,isSoundPlaying,0,Returns true if the sound is playing or still within time +func_148599_a,playDelayedSound,0,Adds a sound to play in n tick +func_148601_a,setSoundCategoryVolume,0,Adjusts volume for currently playing sounds in this category +func_148602_b,stopSound,0, +func_148604_f,resumeAllSounds,0,Resumes playing all currently playing sounds (after pauseAllSounds) +func_148605_d,updateAllSounds,0, +func_148606_a,getNormalizedPitch,0,"Normalizes pitch from parameters and clamps to [0.5, 2.0]" +func_148608_i,loadSoundSystem,0,"Tries to add the paulscode library and the relevant codecs. If it fails, the master volume will be set to zero." +func_148610_e,pauseAllSounds,0,Pauses all currently playing sounds +func_148611_c,playSound,0, +func_148612_a,getURLForSoundResource,0, +func_148613_b,unloadSoundSystem,0,Cleans up the Sound System +func_148614_c,stopAllSounds,0,Stops all currently playing sounds +func_148615_a,setListener,0,Sets the listener of sounds +func_148633_c,getMaxDelay,0,Returns the maximum delay between playing music of this type. +func_148634_b,getMinDelay,0,Returns the minimum delay between playing music of this type. +func_148635_a,getMusicTickerLocation,0, +func_148647_b,setVolume,0, +func_148648_d,isStreamingSound,0, +func_148649_c,getVolume,0, +func_148650_b,getPitch,0, +func_148651_a,setPitch,0, +func_148652_a,getSoundPoolEntryLocation,0, +func_148727_a,addSoundToEventPool,0, +func_148728_d,getSoundCategory,0, +func_148729_c,getSoundEventLocation,0, +func_148740_a,createUnderlyingMap,2,Creates the Map we will use to map keys to their registered values. +func_148741_d,containsKey,2,Does this registry contain an entry for the given key? +func_148742_b,getKeys,2,Gets all the keys recognized by this registry. +func_148750_c,getNameForObject,2,Gets the name we use to identify the given object. +func_148753_b,containsId,2,Gets a value indicating whether this registry contains an object that can be identified by the given integer value +func_148754_a,getObjectById,2,Gets the object identified by the given ID. +func_148755_c,ensureNamespaced,2,"Ensures that the given name is indicated by a colon-delimited namespace, prepending ""minecraft:"" if it is not already." +func_148756_a,addObject,2,"Adds a new object to this registry, keyed by both the given integer ID and the given string." +func_148757_b,getIDForObject,2,Gets the integer ID we use to identify the given object. +func_148762_a,registerSound,0, +func_148763_c,clearMap,0,Reset the underlying sound map (Called on resource manager reload) +func_148821_a,glBlendFunc,0, +func_148822_b,isFramebufferEnabled,0, +func_148833_a,processPacket,2,Passes this Packet on to the NetHandler for processing. +func_148834_a,readBlob,2,"Will read a byte array from the supplied ByteBuf, the first short encountered will be interpreted as the size of the byte array to read in" +func_148835_b,serialize,2,Returns a string formatted as comma separated [field]=[value] values. Used by Minecraft for logging purposes. +func_148836_a,hasPriority,2,"If true, the network manager will process the packet immediately when received, otherwise it will queue it for processing. Currently true for: Disconnect, LoginSuccess, KeepAlive, ServerQuery/Info, Ping/Pong" +func_148837_a,readPacketData,2,Reads the raw packet data from the data stream. +func_148838_a,writeBlob,2,Will write a byte array to supplied ByteBuf as a separately defined structure by prefixing the byte array with its length +func_148839_a,generatePacket,2,"Returns a packet instance, given the params: BiMap and (int) id" +func_148840_b,writePacketData,2,Writes the raw packet data to the data stream. +func_148853_f,getTileEntityType,0, +func_148854_e,getZ,0, +func_148855_d,getY,0, +func_148856_c,getX,0, +func_148857_g,getNbtCompound,0, +func_148864_h,getData2,0,pitch data for noteblocks +func_148865_f,getZ,0, +func_148866_e,getY,0, +func_148867_d,getX,0, +func_148868_c,getBlockType,0, +func_148869_g,getData1,0,instrument data for noteblocks +func_148916_d,isChat,2, +func_149089_e,getZ,0, +func_149090_d,getY,0, +func_149091_a,getPlayer,0, +func_149092_c,getX,0, +func_149101_g,getFlySpeed,2, +func_149102_b,setFlying,2, +func_149103_f,isCreativeMode,2, +func_149104_a,setFlySpeed,2, +func_149105_e,isAllowFlying,2, +func_149106_d,isFlying,2, +func_149107_h,getWalkSpeed,2, +func_149108_a,setInvulnerable,2, +func_149109_c,setAllowFlying,2, +func_149110_b,setWalkSpeed,2, +func_149111_d,setCreativeMode,2, +func_149112_c,isInvulnerable,2, +func_149187_d,getData,0, +func_149188_c,getMapId,0, +func_149239_h,getPosZ,0, +func_149240_f,getPosX,0, +func_149241_e,getSoundData,0, +func_149242_d,getSoundType,0, +func_149243_g,getPosY,0, +func_149244_c,isSoundServerwide,0, +func_149289_c,getClientTime,2, +func_149304_c,getProfile,2, +func_149330_d,getFoodLevel,0, +func_149331_e,getSaturationLevel,0, +func_149332_c,getHealth,0, +func_149419_c,getMessage,2, +func_149421_d,getType,2, +func_149435_c,getStatus,2, +func_149439_c,getMessage,2, +func_149460_c,getKey,2, +func_149462_g,getYaw,2, +func_149463_k,getRotating,2, +func_149464_c,getPositionX,2, +func_149467_d,getPositionY,2, +func_149470_h,getPitch,2, +func_149471_f,getStance,2, +func_149472_e,getPositionZ,2, +func_149482_g,getFlySpeed,2, +func_149483_b,setFlying,2, +func_149484_f,isCreativeMode,2, +func_149485_a,setFlySpeed,2, +func_149486_e,isAllowFlying,2, +func_149488_d,isFlying,2, +func_149489_h,getWalkSpeed,2, +func_149490_a,setInvulnerable,2, +func_149491_c,setAllowFlying,2, +func_149492_b,setWalkSpeed,2, +func_149493_d,setCreativeMode,2, +func_149494_c,isInvulnerable,2, +func_149501_f,getDiggingBlockFace,2, +func_149502_e,getDiggedBlockZ,2,Returns Z coordinate of the block that was digged. +func_149503_d,getDiggedBlockY,2,Returns Y coordinate of the block that was digged. +func_149505_c,getDiggedBlockX,2,Returns X coordinate of the block that was digged. +func_149506_g,getDiggedBlockStatus,2,"Status of the digging (started, ongoing, broken)." +func_149518_g,getDifficulty,2, +func_149519_h,isShowCape,2, +func_149520_f,isColorsEnabled,2, +func_149521_d,getView,2, +func_149523_e,getChatVisibility,2, +func_149524_c,getLang,2, +func_149532_c,getId,2, +func_149533_d,getUid,2, +func_149537_d,getButton,2, +func_149539_c,getId,2, +func_149542_h,getMode,2, +func_149543_e,getUsedButton,2, +func_149544_d,getSlotId,2, +func_149546_g,getClickedItem,2, +func_149547_f,getActionNumber,2, +func_149548_c,getWindowId,2, +func_149558_e,getData,2, +func_149559_c,getChannel,2, +func_149564_a,getEntityFromWorld,2, +func_149565_c,getAction,2, +func_149568_f,getPlacedBlockDirection,2, +func_149569_i,getPlacedBlockOffsetY,2,Returns the offset from yPosition where the actual click took place. +func_149570_e,getPlacedBlockZ,2, +func_149571_d,getPlacedBlockY,2, +func_149573_h,getPlacedBlockOffsetX,2,Returns the offset from xPosition where the actual click took place. +func_149574_g,getStack,2, +func_149575_j,getPlacedBlockOffsetZ,2,Returns the offset from zPosition where the actual click took place. +func_149576_c,getPlacedBlockX,2, +func_149585_e,getZ,2, +func_149586_d,getY,2, +func_149588_c,getX,2, +func_149589_f,getLines,2, +func_149594_c,getRequestedState,2, +func_149595_d,getProtocolVersion,2, +func_149614_c,getSlotId,2, +func_149616_d,getForwardSpeed,2, +func_149617_f,isSneaking,2, +func_149618_e,isJumping,2, +func_149620_c,getStrafeSpeed,2, +func_149625_d,getStack,2, +func_149627_c,getSlotId,2, +func_149633_g,getSelectedBoundingBoxFromPool,0,Returns the bounding box of the wired rectangular prism to render. +func_149634_a,getBlockFromItem,2, +func_149635_D,getBlockColor,0, +func_149636_a,harvestBlock,2, +func_149637_q,isBlockNormalCube,0,Indicate if a material is a normal solid opaque cube +func_149638_a,getExplosionResistance,2,Returns how much this block can resist explosions from the passed in entity. +func_149639_l,fillWithRain,2,currently only used by BlockCauldron to incrament meta-data during rain +func_149640_a,modifyEntityVelocity,2, +func_149641_N,getTextureName,0, +func_149642_a,dropBlockAsItem,2,Spawns EntityItem in the world for the given ItemStack if the world is not remote. +func_149643_k,getDamageValue,2,Get the block's damage value (for use with pick block). +func_149644_j,createStackedBlock,2,Returns an item stack containing a single instance of the current block type. 'i' is the block's subtype/damage and is ignored for blocks which do not support subtypes. Blocks which cannot be harvested should return null. +func_149645_b,getRenderType,2,The type of render function that is called for this block +func_149646_a,shouldSideBeRendered,0,"Returns true if the given side of this block type should be rendered, if the adjacent block is at the given coordinates. Args: blockAccess, x, y, z, side" +func_149647_a,setCreativeTab,2, +func_149648_K,isFlowerPot,0,Returns true only if block is flowerPot +func_149649_H,disableStats,2, +func_149650_a,getItemDropped,2, +func_149651_a,registerIcons,0, +func_149652_G,getEnableStats,2,Return the state of blocks statistics flags - if the block is counted for mined and placed. +func_149653_t,getTickRandomly,2,Returns whether or not this block is of a type that needs random ticking. Called for ref-counting purposes by ExtendedBlockStorage in order to broadly cull a chunk from the random chunk update list for efficiency's sake. +func_149654_a,isVecInsideYZBounds,2,Checks if a vector is within the Y and Z bounds of the block. +func_149655_b,isPassable,2, +func_149656_h,getMobilityFlag,2, +func_149657_c,dropXpOnBlockBreak,2, +func_149658_d,setTextureName,2, +func_149659_a,canDropFromExplosion,2,Return whether this block can drop from an explosion. +func_149660_a,onBlockPlaced,2, +func_149661_c,isVecInsideXYBounds,2,Checks if a vector is within the X and Y bounds of the block. +func_149662_c,isOpaqueCube,2, +func_149663_c,setUnlocalizedName,2, +func_149664_b,onBlockDestroyedByPlayer,2, +func_149665_z,getBlockBoundsMinY,2,returns the block bounderies minY value +func_149666_a,getSubBlocks,0,"returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)" +func_149667_c,isAssociatedBlock,2, +func_149668_a,getCollisionBoundingBoxFromPool,2,Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been cleared to be reused) +func_149669_A,getBlockBoundsMaxY,2,returns the block bounderies maxY value +func_149670_a,onEntityCollidedWithBlock,2, +func_149671_p,registerBlocks,2, +func_149672_a,setStepSound,2,Sets the footstep sound for the block. Returns the object for convenience in constructing. +func_149673_e,getIcon,0, +func_149674_a,updateTick,2,Ticks the block if it's been scheduled +func_149675_a,setTickRandomly,2,Sets whether this block type will receive random update ticks +func_149676_a,setBlockBounds,2, +func_149677_c,getMixedBrightnessForBlock,0,"How bright to render this block based on the light its receiving. Args: iBlockAccess, x, y, z" +func_149678_a,canStopRayTrace,2,"Returns whether the raytracing must ignore this block. Args : metadata, stopOnLiquid" +func_149679_a,quantityDroppedWithBonus,2,Returns the usual quantity dropped by the block plus a bonus of 1 to 'i' (inclusive). +func_149680_a,isEqualTo,2, +func_149681_a,onBlockHarvested,2,Called when the block is attempted to be harvested +func_149682_b,getIdFromBlock,2, +func_149683_g,setBlockBoundsForItemRender,2,Sets the block's bounds for rendering it as an item +func_149684_b,getBlockFromName,2, +func_149685_I,getAmbientOcclusionLightValue,0,Returns the default ambient occlusion value based on block opacity +func_149686_d,renderAsNormalBlock,2, +func_149687_b,isVecInsideXZBounds,2,Checks if a vector is within the X and Z bounds of the block. +func_149688_o,getMaterial,2,Get a material of block +func_149689_a,onBlockPlacedBy,2,Called when the block is placed in the world. +func_149690_a,dropBlockAsItemWithChance,2,Drops the block items with a specified chance of dropping the specified items +func_149691_a,getIcon,0,"Gets the block's texture. Args: side, meta" +func_149692_a,damageDropped,2,Determines the damage on the item the block drops. Used in cloth and wood. +func_149693_C,getBlockBoundsMaxZ,2,returns the block bounderies maxZ value +func_149694_d,getItem,0,"Gets an item for the block being called on. Args: world, x, y, z" +func_149695_a,onNeighborBlockChange,2, +func_149696_a,onBlockEventReceived,2, +func_149697_b,dropBlockAsItem,2,Drops the specified block items +func_149698_L,requiresUpdates,2, +func_149699_a,onBlockClicked,2,"Called when a player hits the block. Args: world, x, y, z, player" +func_149700_E,canSilkHarvest,2, +func_149701_w,getRenderBlockPass,0,Returns which pass should this block be rendered on. 0 for solids and 1 for alpha +func_149702_O,getItemIconName,0,Gets the icon name of the ItemBlock corresponding to this block. Used by hoppers. +func_149703_v,isCollidable,2,"Returns if this block is collidable (only used by Fire). Args: x, y, z" +func_149704_x,getBlockBoundsMinX,2,returns the block bounderies minX value +func_149705_a,canReplace,2, +func_149706_B,getBlockBoundsMinZ,2,returns the block bounderies minZ value +func_149707_d,canPlaceBlockOnSide,2,checks to see if you can place this block can be placed on that side of a block: BlockLever overrides +func_149708_J,getCreativeTabToDisplayOn,0,Returns the CreativeTab to display the given block on. +func_149709_b,isProvidingWeakPower,2, +func_149710_n,getUseNeighborBrightness,2,Should block use the brightest neighbor light value as its own +func_149711_c,setHardness,2,Sets how many hits it takes to break a block. +func_149712_f,getBlockHardness,2, +func_149713_g,setLightOpacity,2,Sets how much light is blocked going through this block. Returns the object for convenience in constructing. +func_149714_e,onPostBlockPlaced,2,Called after a block is placed +func_149715_a,setLightLevel,2,Sets the light value that the block emits. Returns resulting block instance for constructing convenience. Args: level +func_149716_u,hasTileEntity,2, +func_149717_k,getLightOpacity,2, +func_149718_j,canBlockStay,2,Can this block stay at this position. Similar to canPlaceBlockAt except gets checked often with plants. +func_149719_a,setBlockBoundsBasedOnState,2, +func_149720_d,colorMultiplier,0,Returns a integer with hex for 0xrrggbb with this color multiplied against the blocks color. Note only called when first determining what to render. +func_149721_r,isNormalCube,2, +func_149722_s,setBlockUnbreakable,2, +func_149723_a,onBlockDestroyedByExplosion,2,Called upon the block being destroyed by an explosion +func_149724_b,onEntityWalking,2, +func_149725_f,onBlockPreDestroy,2, +func_149726_b,onBlockAdded,2, +func_149727_a,onBlockActivated,2,"Called upon block activation (right click on the block). Args : world, x, y, z, player, side, hitX, hitY, hitZ. Return : Swing hand (client), abort the block placement (server)" +func_149728_f,getMapColor,2, +func_149729_e,getBlockById,2, +func_149730_j,isFullBlock,2, +func_149731_a,collisionRayTrace,2, +func_149732_F,getLocalizedName,2,Gets the localized name of this block. Used for the statistics page. +func_149733_h,getBlockTextureFromSide,0,Returns the block texture based on the side being looked at. Args: side +func_149734_b,randomDisplayTick,0,A randomly called display update to be able to add particles or other items for display +func_149735_b,getItemIcon,0, +func_149736_g,getComparatorInputOverride,2, +func_149737_a,getPlayerRelativeBlockHardness,2, +func_149738_a,tickRate,2,How many world ticks before ticking +func_149739_a,getUnlocalizedName,2,"Returns the unlocalized name of the block with ""tile."" appended to the front." +func_149740_M,hasComparatorInputOverride,2, +func_149741_i,getRenderColor,0,Returns the color this block should be rendered. Used by leaves. +func_149742_c,canPlaceBlockAt,2, +func_149743_a,addCollisionBoxesToList,2, +func_149744_f,canProvidePower,2,Can this block provide power. Only wire currently seems to have this change based on its state. +func_149745_a,quantityDropped,2,Returns the quantity of items to drop on block destruction. +func_149746_a,onFallenUpon,2,Block's chance to react to an entity falling on it. +func_149747_d,isBlockSolid,2, +func_149748_c,isProvidingStrongPower,2, +func_149749_a,breakBlock,2, +func_149750_m,getLightValue,2, +func_149751_l,isTranslucent,0, +func_149752_b,setResistance,2,Sets the the blocks resistance to explosions. Returns the object for convenience in constructing. +func_149753_y,getBlockBoundsMaxX,2,returns the block bounderies maxX value +func_149798_e,getEffectiveFlowDecay,2,Returns the flow decay but converts values indicating falling liquid (values >=8) to their effective source block value of zero +func_149800_f,getFlowVector,2,Returns a vector indicating the direction and intensity of liquid flow +func_149801_b,getLiquidHeightPercent,2,"Returns the percentage of the liquid block that is air, based on the given flow decay of the liquid" +func_149802_a,getFlowDirection,0,the sin and cos of this number determine the surface gradient of the flowing block. +func_149803_e,getLiquidIcon,0, +func_149817_o,isFlammable,2, +func_149818_n,setNotStationary,2, +func_149819_b,invertMetadata,2, +func_149825_a,isFence,2, +func_149826_e,canConnectFenceTo,2,Returns true if the specified block can be connected by a fence +func_149828_a,playSoundWhenFallen,2, +func_149829_a,onStartFalling,2, +func_149831_e,canFallBelow,2, +func_149840_c,getFireIcon,0, +func_149841_a,tryCatchFire,2, +func_149844_e,canBlockCatchFire,2,"Checks the specified block coordinate to see if it can catch fire. Args: blockAccess, x, y, z" +func_149845_m,getChanceOfNeighborsEncouragingFire,2,Gets the highest chance of a neighbor block encouraging this block to catch fire +func_149847_e,canNeighborBurn,2,Returns true if at least one block next to this one can burn. +func_149851_a,canFertilize,2, +func_149852_a,shouldFertilize,2, +func_149853_b,fertilize,2, +func_149854_a,canPlaceBlockOn,2,"is the block grass, dirt or farmland" +func_149855_e,checkAndDropBlock,2,"checks if the block can stay, if not drop as item" +func_149863_m,fertilize,2, +func_149865_P,getCrop,2, +func_149866_i,getSeed,2, +func_149872_i,getStemIcon,0, +func_149873_e,getState,0,"Returns the current state of the stem. Returns -1 if the stem is not fully grown, or a value between 0 and 3 based on the direction the stem is facing." +func_149874_m,fertilizeStem,2, +func_149878_d,growTree,2, +func_149879_c,markOrGrowMarked,2, +func_149884_c,fertilizeMushroom,2, +func_149895_l,getDirection,2, +func_149896_b,isFenceGateOpen,2,Returns if the fence gate is open according to its metadata. +func_149898_i,getBlockUnpowered,2, +func_149900_a,isGettingInput,2, +func_149903_h,getInputStrength,2,"Returns the signal strength at one input of the block. Args: world, X, Y, Z, side" +func_149906_e,getBlockPowered,2, +func_149909_d,isRedstoneRepeaterBlockID,2, +func_149915_a,createNewTileEntity,2,Returns a new instance of a block's tile entity class. Called on placing the block. +func_149916_e,getHopperIcon,0, +func_149917_c,getActiveStateFromMetadata,2,"Get's the hopper's active status from the 8-bit of the metadata. Note that the metadata stores whether the block is powered, so this returns true when that bit is 0." +func_149918_b,getDirectionFromMetadata,2,"Get's the hopper's orientation from the last three bits of metadata. Returns 0-5 for down, unattached, north, south, east, and west." +func_149919_e,updateBlockData,2,Updates the block's metadata to reflect the current power state (stored in the 4th bit). +func_149931_a,updateFurnaceBlockState,2,Update which block the furnace is using depending on whether or not it is burning +func_149937_b,getFacingDirection,2,Gets an EnumFacing for the given dispenser metadata value +func_149939_a,getIPositionFromBlockSource,2,Gets an IPosition instance for the dispenser's output given a block source +func_149951_m,getInventory,2, +func_149952_n,isDoubleChest,2, +func_149953_o,isOcelotSittingOnTop,2, +func_149954_e,initMetadata,2,Actualise metadata (orientation) value from neighbors blocks (another chest ? Opaque block ?) +func_149959_e,getIconBrewingStandBase,0, +func_149962_a,getTileEntity,2, +func_149965_a,makeWither,2, +func_149970_j,getOutputStrength,2, +func_149971_e,getTileEntityComparator,2,Returns the blockTileEntity at given coordinates. +func_149975_b,isBlockHeadOfBed,2,Returns whether or not this bed block is the head of the bed. +func_149976_c,isBedOccupied,2, +func_149977_a,getSafeExitLocation,2, +func_149978_e,setBedBounds,2, +func_149979_a,setBedOccupied,2, +func_149988_b,getCocoaIcon,0, +func_149990_e,getIconSideOverlay,0, +func_150000_e,tryToCreatePortal,2, +func_150002_b,getFullSlabName,2,Returns the slab block name with the type associated with it +func_150012_g,getFullMetadata,2, +func_150020_b,isEnderEyeInserted,2,checks if an ender eye has been inserted into the frame block. parameters: metadata +func_150021_e,getIconEndPortalFrameEye,0, +func_150024_a,setWaterLevel,2, +func_150025_c,getRenderLiquidLevel,0, +func_150026_e,getCauldronIcon,0, +func_150027_b,getPowerFromMeta,2, +func_150042_a,updateNeighbor,2, +func_150043_b,setBlockBoundsFromMeta,2, +func_150044_m,canStay,2, +func_150045_e,findSolidSide,2, +func_150046_n,activateButton,2, +func_150048_a,onRedstoneSignal,2,Called when the rail is given a redstone signal. +func_150049_b_,isRailBlockAt,2,"Returns true if the block at the coordinates of world passed is a valid rail block (current is rail, powered or detector)." +func_150050_e,isPowered,2,Returns true if the block is power related rail. +func_150051_a,isRailBlock,2,"Return true if the parameter is a blockID for a valid rail block (current is rail, powered or detector)." +func_150052_a,refreshTrackShape,2,Completely recalculates the track shape based on neighboring tracks. +func_150060_c,getPowerFromMeta,2, +func_150061_a,getSensitiveAABB,2, +func_150062_a,setStateIfMobInteractsWithPlate,2, +func_150063_b,setBlockBoundsFromMeta,2, +func_150064_a_,updateNeighbors,2, +func_150065_e,getPlateState,2, +func_150066_d,getMetaFromPower,2, +func_150071_a,determineOrientation,2,gets the way this piston should face for that entity that placed it. +func_150072_a,isIndirectlyPowered,2, +func_150073_e,getPistonExtensionTexture,0, +func_150074_e,getPistonBaseIcon,0, +func_150075_c,isExtended,2,Determine if the metadata is related to something powered. +func_150076_b,getPistonOrientation,2, +func_150077_h,canExtend,2,checks to see if this piston could push the blocks in front of it. +func_150078_e,updatePistonState,2,handles attempts to extend or retract the piston. +func_150079_i,tryExtend,2,attempts to extend the piston. returns false if impossible. +func_150080_a,canPushBlock,2,returns true if the piston can push the specified block +func_150085_b,getDirectionMeta,2, +func_150089_b,setBlockBoundsFromMeta,2, +func_150091_e,canConnectWallTo,2,Return whether an adjacent block can connect to a wall. +func_150098_a,canPaneConnectToBlock,2, +func_150107_m,canPlaceTorchOn,2, +func_150109_e,dropTorchIfCantStay,2, +func_150118_d,isTrapdoorOpen,2,parameter is metadata +func_150119_a,isValidSupportBlock,2, +func_150122_b,setGraphicsLevel,0,"Pass true to draw this block using fancy graphics, or false for fast graphics." +func_150126_e,removeLeaves,2, +func_150147_e,setBaseBounds,2,Sets the bounding box for the base of the stairs +func_150148_a,isBlockStairs,2,Checks if a block is stairs +func_150161_d,getTopIcon,0, +func_150163_b,getSideIcon,0, +func_150173_e,getRedstoneWireIcon,0, +func_150174_f,isPowerProviderOrWire,2,"Returns true if redstone wire can connect to the specified block. Params: World, X, Y, Z, side (not a normal notch-side, this can be 0, 1, 2, 3 or -1)" +func_150206_m,createDeepCopy,2,Creates a deep copy of this style. No changes to this instance or its parent style will be reflected in the copy. +func_150209_a,setChatHoverEvent,2,Sets the event that should be run when text of this ChatStyle is hovered over. +func_150210_i,getChatHoverEvent,2,The effective chat hover event. +func_150215_a,getColor,2,Gets the effective color of this ChatStyle. +func_150217_b,setItalic,2,"Sets whether or not text of this ChatStyle should be italicized. Set to false if, e.g., the parent style is italicized and you want to override that for this style." +func_150218_j,getFormattingCode,0,"Gets the equivalent text formatting code for this style, without the initial section sign (U+00A7) character." +func_150221_a,setParentStyle,2,"Sets the fallback ChatStyle to use if this ChatStyle does not override some value. Without a parent, obvious defaults are used (bold: false, underlined: false, etc)." +func_150223_b,getBold,2,Whether or not text of this ChatStyle should be in bold. +func_150224_n,getParent,2,Gets the immediate parent of this ChatStyle. +func_150225_c,setStrikethrough,2,"Sets whether or not to format text of this ChatStyle using strikethrough. Set to false if, e.g., the parent style uses strikethrough and you want to override that for this style." +func_150227_a,setBold,2,"Sets whether or not text of this ChatStyle should be in bold. Set to false if, e.g., the parent style is bold and you want text of this style to be unbolded." +func_150228_d,setUnderlined,2,"Sets whether or not text of this ChatStyle should be underlined. Set to false if, e.g., the parent style is underlined and you want to override that for this style." +func_150229_g,isEmpty,2,Whether or not this style is empty (inherits everything from the parent). +func_150232_l,createShallowCopy,2,"Creates a shallow copy of this style. Changes to this instance's values will not be reflected in the copy, but changes to the parent style's values WILL be reflected in both this instance and the copy, wherever either does not override a value." +func_150233_f,getObfuscated,2,Whether or not text of this ChatStyle should be obfuscated. +func_150234_e,getUnderlined,2,Whether or not text of this ChatStyle should be underlined. +func_150235_h,getChatClickEvent,2,The effective chat click event. +func_150236_d,getStrikethrough,2,Whether or not to format text of this ChatStyle using strikethrough. +func_150237_e,setObfuscated,2,"Sets whether or not text of this ChatStyle should be obfuscated. Set to false if, e.g., the parent style is obfuscated and you want to override that for this style." +func_150238_a,setColor,2,Sets the color for this ChatStyle to the given value. Only use color values for this; set other values using the specific methods. +func_150241_a,setChatClickEvent,2,Sets the event that should be run when text of this ChatStyle is clicked on. +func_150242_c,getItalic,2,Whether or not text of this ChatStyle should be italicized. +func_150253_a,getSiblings,2,Gets the sibling components of this one. +func_150254_d,getFormattedText,0,"Gets the text of this component, with formatting codes added for rendering." +func_150255_a,setChatStyle,2, +func_150256_b,getChatStyle,2, +func_150257_a,appendSibling,2,Appends the given component to the end of this one. +func_150258_a,appendText,2,Appends the given text to the end of this component. +func_150259_f,createCopy,2,"Creates a copy of this component. Almost a deep copy, except the style is shallow-copied." +func_150260_c,getUnformattedText,2,"Gets the text of this component, without any special formatting codes added. TODO: why is this two different methods?" +func_150261_e,getUnformattedTextForChat,2,"Gets the text of this component, without any special formatting codes added, for chat. TODO: why is this two different methods?" +func_150262_a,createDeepCopyIterator,2,"Creates an iterator that iterates over the given components, returning deep copies of each component in turn so that the properties of the returned objects will remain externally consistent after being returned." +func_150265_g,getChatComponentText_TextValue,2,Gets the text value of this ChatComponentText. TODO: what are getUnformattedText and getUnformattedTextForChat missing that made someone decide to create a third equivalent method that only ChatComponentText can implement? +func_150268_i,getKey,2, +func_150269_b,initializeFromFormat,2,"initializes our children from a format string, using the format args to fill in the placeholder variables." +func_150270_g,ensureInitialized,2,ensures that our children are initialized from the most recent string translation mapping. +func_150271_j,getFormatArgs,2, +func_150272_a,getFormatArgumentAsComponent,2, +func_150284_a,createNewByType,2,Creates a new NBTBase object that corresponds with the passed in id. +func_150285_a_,getString,2, +func_150286_g,getDouble,2, +func_150287_d,getInt,2, +func_150288_h,getFloat,2, +func_150289_e,getShort,2, +func_150290_f,getByte,2, +func_150291_c,getLong,2, +func_150292_c,getByteArray,2, +func_150295_c,getTagList,2,"Gets the NBTTagList object with the given name. Args: name, NBTBase type" +func_150296_c,getKeySet,2,Gets a set with the names of the keys in the tag compound. +func_150297_b,hasKey,2, +func_150298_a,writeEntry,2, +func_150299_b,getTagId,2,Gets the ID byte for the given tag key +func_150302_c,getIntArray,2, +func_150303_d,getTagType,2, +func_150304_a,setTag,0, +func_150305_b,getCompoundTagAt,2,Retrieves the NBTTagCompound at the specified index in the list +func_150306_c,getIntArrayAt,2, +func_150307_f,getStringTagAt,2,Retrieves the tag String value at the specified index in the list +func_150308_e,getFloatAt,2, +func_150309_d,getDoubleAt,2, +func_150494_d,getFrequency,2, +func_150495_a,getDigResourcePath,2, +func_150496_b,getPlaceSound,2, +func_150497_c,getVolume,2, +func_150498_e,getStepSound,2, +func_150503_a,decipher,2, +func_150504_a,cipher,2, +func_150510_c,getLastUpdateTimeInMilliseconds,2,"Gets the time, in milliseconds since epoch, that this instance was last updated" +func_150512_a,decorateChunk,2, +func_150513_a,genDecorations,2, +func_150516_a,setBlockAndNotifyAdequately,2, +func_150558_b,getBiomeGrassColor,0,Provides the basic grass color based on the biome temperature and rainfall +func_150560_b,genBiomeTerrain,2, +func_150561_m,getTempCategory,2, +func_150562_l,getBiomeClass,2, +func_150564_a,getFloatTemperature,2,Gets a floating point representation of this biome's temperature +func_150565_n,getBiomeGenArray,2, +func_150566_k,createMutation,2,Creates a mutated version of the biome and places it into the biomeList with an index equal to the original plus 128 +func_150568_d,getBiome,2,"return the biome specified by biomeID, or 0 (ocean) if out of bounds" +func_150569_a,isEqualTo,2,returns true if the biome specified is equal to this biome +func_150570_a,setHeight,2, +func_150571_c,getBiomeFoliageColor,0,Provides the basic foliage color based on the biome temperature and rainfall +func_150573_a,genTerrainBlocks,2, +func_150633_b,mutateHills,2,this creates a mutation specific to Hills biomes +func_150646_a,isRailBlockAt,2,Rail Logic wrapper for BlockRailBase's isRailBlockAt. +func_150650_a,countAdjacentRails,2,Counts the number of rails adjacent to this rail. +func_150663_a,writeTag,2, +func_150668_b,getValue,2,"Gets the value to perform the action on when this event is raised. For example, if the action is ""open URL"", this would be the URL to open." +func_150669_a,getAction,2,Gets the action to perform when this event is raised. +func_150672_a,getValueByCanonicalName,2,Gets a value by its canonical name. +func_150673_b,getCanonicalName,2,"Gets the canonical name for this action (e.g., ""run_command"")" +func_150674_a,shouldAllowInChat,2,Indicates whether this event can be run from chat text. +func_150684_a,getValueByCanonicalName,2,Gets a value by its canonical name. +func_150685_b,getCanonicalName,2,"Gets the canonical name for this action (e.g., ""show_achievement"")" +func_150686_a,shouldAllowInChat,2,Indicates whether this event can be run from chat text. +func_150695_a,serializeChatStyle,2, +func_150696_a,componentToJson,2, +func_150699_a,jsonToComponent,2, +func_150701_a,getAction,2,Gets the action to perform when this event is raised. +func_150702_b,getValue,2,"Gets the value to perform the action on when this event is raised. For example, if the action is ""show item"", this would be the item to show." +func_150706_a,generateDispenserContents,2, +func_150707_a,setEnchantable,2, +func_150708_a,getItemStack,2, +func_150709_a,setMaxDamagePercent,2, +func_150718_a,closeChannel,2,"Closes the channel, the parameter can be used for an exit message (not certain how it gets sent)" +func_150719_a,setNetHandler,2,"Sets the NetHandler for this NetworkManager, no checks are made if this handler is suitable for the particular connection state (protocol)" +func_150721_g,disableAutoRead,2,Switches the channel to manual reading modus +func_150722_a,provideLocalClient,0,Prepares a clientside NetworkManager: establishes a connection to the socket supplied and configures the channel pipeline. Returns the newly created instance. +func_150723_a,setConnectionState,2,Sets the new connection state and registers which packets this channel may send and receive +func_150724_d,isChannelOpen,2,"Returns true if this NetworkManager has an active channel, false otherwise" +func_150725_a,scheduleOutboundPacket,2,"Will flush the outbound queue and dispatch the supplied Packet if the channel is ready, otherwise it adds the packet to the outbound queue and registers the GenericFutureListener to fire after transmission" +func_150726_a,provideLanClient,0,Prepares a clientside NetworkManager: establishes a connection to the address and port supplied and configures the channel pipeline. Returns the newly created instance. +func_150727_a,enableEncryption,2,Adds an encoder+decoder to the channel pipeline. The parameter is the secret key used for encrypted communication +func_150729_e,getNetHandler,2,Gets the current handler for processing packets +func_150730_f,getExitMessage,2,"If this channel is closed, returns the exit message, null otherwise." +func_150731_c,isLocalChannel,2,True if this NetworkManager uses a memory connection (single player game). False may imply both an active TCP connection or simply no active connection at all +func_150732_b,dispatchPacket,2,"Will commit the packet to the channel. If the current thread 'owns' the channel it will write and flush the packet, otherwise it will add a task for the channel eventloop thread to do that." +func_150733_h,flushOutboundQueue,2,Will iterate through the outboundPacketQueue and dispatch all Packets +func_150752_a,getFromPacket,2, +func_150759_c,getId,2, +func_150760_a,getById,2, +func_150775_a,attenuate,2,"Reduces the baseHeight by 20%, and the variation intensity by 40%, and returns the resulting Height object" +func_150785_a,writeStringToBuffer,2,Writes a (UTF-8 encoded) String to this buffer. Will throw IOException if String length exceeds 32767 bytes +func_150786_a,writeNBTTagCompoundToBuffer,2,Writes a compressed NBTTagCompound to this buffer +func_150787_b,writeVarIntToBuffer,2,Writes a compressed int to the buffer. The smallest number of bytes to fit the passed int will be written. Of each such byte only 7 bits will be used to describe the actual value since its most significant bit dictates whether the next byte is part of that same int. Micro-optimization for int values that are expected to have values below 128. +func_150788_a,writeItemStackToBuffer,2,"Writes the ItemStack's ID (short), then size (byte), then damage. (short)" +func_150789_c,readStringFromBuffer,2,Reads a string from this buffer. Expected parameter is maximum allowed string length. Will throw IOException if string length exceeds this value! +func_150790_a,getVarIntSize,2,Calculates the number of bytes required to fit the supplied int (0-5) if it were to be read/written using readVarIntFromBuffer or writeVarIntToBuffer +func_150791_c,readItemStackFromBuffer,2,Reads an ItemStack from this buffer +func_150792_a,readVarIntFromBuffer,2,Reads a compressed int from the buffer. To do so it maximally reads 5 byte-sized chunks whose most significant bit dictates whether another byte should be read. +func_150793_b,readNBTTagCompoundFromBuffer,2,Reads a compressed NBTTagCompound from this buffer +func_150795_a,findBiomePosition,2, +func_150803_c,recheckGaps,2, +func_150805_f,removeTileEntity,2, +func_150806_e,getBlockTileEntityInChunk,2, +func_150807_a,setBlockIDWithMetadata,2, +func_150808_b,getBlockLightOpacity,2, +func_150810_a,getBlock,2,Returns the block corresponding to the given coordinates inside a chunk. +func_150812_a,setBlockTileEntityInChunk,2, +func_150813_a,addTileEntity,2, +func_150818_a,setExtBlockID,2, +func_150819_a,getBlockByExtId,2,"Returns the block for a location in a chunk, with the extended ID merged from a byte array and a NibbleArray to form a full 12-bit block ID." +func_150826_b,translateToFallback,2,Translates a Stat name using the fallback (hardcoded en_US) locale. Looks like it's only intended to be used if translateToLocal fails. +func_150827_a,getLastTranslationUpdateTimeInMilliseconds,2,"Gets the time, in milliseconds since epoch, that the translation mapping was last updated" +func_150835_j,getBlockTileEntity,2, +func_150891_b,getIdFromItem,2, +func_150892_m,isPotionIngredient,2, +func_150893_a,getStrVsBlock,2, +func_150894_a,onBlockDestroyed,2, +func_150895_a,getSubItems,0,"returns a list of items with the same ID, but different meta (eg: dye returns 16 items)" +func_150896_i,getPotionEffect,2, +func_150897_b,canItemHarvestBlock,2,Can this Item harvest passed block +func_150898_a,getItemFromBlock,2, +func_150899_d,getItemById,2, +func_150900_l,registerItems,2, +func_150905_g,getHealAmount,2, +func_150906_h,getSaturationModifier,2, +func_150911_c,createMapDataPacket,2, +func_150912_a,loadMapData,0, +func_150913_i,getToolMaterial,2, +func_150924_a,placeDoorBlock,2, +func_150926_b,getRecord,0,Return the record item corresponding to the given name. +func_150927_i,getRecordNameLocal,0, +func_150930_a,validBookPageTagContents,2,"this method returns true if the book's NBT Tag List ""pages"" is valid" +func_150932_j,getToolMaterialName,2,Return the name for this tool's material. +func_150951_e,getStatName,2, +func_150967_d,getUncookedSaturationModifier,2,Gets the saturation modifier to apply to the heal amount when the player eats the uncooked version of this fish. +func_150968_a,registerIcon,0,Registers the icon for this fish type in the given IIconRegister. +func_150970_e,getCookedHealAmount,2,Gets the amount that eating the cooked version of this fish should heal the player. +func_150971_g,getUncookedIcon,0,Gets the icon for the uncooked version of this fish. +func_150972_b,getUnlocalizedNamePart,2,"Gets the value that this fish type uses to replace ""XYZ"" in: ""fish.XYZ.raw"" / ""fish.XYZ.cooked"" for the unlocalized name and ""fish_XYZ_raw"" / ""fish_XYZ_cooked"" for the icon string." +func_150973_i,getCookable,2,"Gets a value indicating whether this type of fish has ""raw"" and ""cooked"" variants." +func_150974_a,getFishTypeForItemDamage,2,"Gets the corresponding FishType value for the given item damage value of an ItemStack, defaulting to COD for unrecognized damage values." +func_150975_c,getUncookedHealAmount,2,Gets the amount that eating the uncooked version of this fish should heal the player. +func_150976_a,getItemDamage,2,Gets the item damage value on an ItemStack that represents this fish type +func_150977_f,getCookedSaturationModifier,2,Gets the saturation modifier to apply to the heal amount when the player eats the cooked version of this fish. +func_150978_a,getFishTypeForItemStack,2,"Gets the FishType that corresponds to the given ItemStack, defaulting to COD if the given ItemStack does not actually contain a fish." +func_150979_h,getCookedIcon,0,Gets the icon for the cooked version of this fish. +func_150995_f,getBaseItemForRepair,2, +func_150996_a,setItem,2, +func_150997_a,getStrVsBlock,2, +func_150998_b,canItemHarvestBlock,2, +func_150999_a,onBlockDestroyed,2, +func_151001_c,setStackDisplayName,2, +func_151003_a,getSerializableElement,2,Gets the JsonElement that can be serialized. +func_151177_a,getOneShotStat,2, +func_151187_b,getJsonSerializableValue,2,Gets the JsonSerializable value stored in this tuple. +func_151188_a,setIntegerValue,2,Sets this tuple's integer value to the given value. +func_151189_a,getIntegerValue,2,Gets the integer value stored in this tuple. +func_151190_a,setJsonSerializableValue,2,Sets this tuple's JsonSerializable value to the given value. +func_151200_h,getJsonObjectStringFieldValue,2,Gets the string value of the field on the JsonObject with the given name. +func_151201_f,jsonObjectFieldTypeIsPrimitive,0,"Does the given JsonObject contain a field with the given name whose type is primitive (String, Java primitive, or Java primitive wrapper)?" +func_151202_d,jsonObjectFieldTypeIsArray,2,Does the given JsonObject contain an array field with the given name? +func_151203_m,getJsonObjectIntegerFieldValue,2,Gets the integer value of the field on the JsonObject with the given name. +func_151204_g,jsonObjectHasNamedField,2,Does the given JsonObject contain a field with the given name? +func_151205_a,jsonObjectFieldTypeIsString,0,Does the given JsonObject contain a string field with the given name? +func_151206_a,getJsonElementStringValue,2,Gets the string value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151207_m,getJsonElementAsJsonArray,2,Gets the given JsonElement as a JsonArray. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151208_a,getJsonObjectIntegerFieldValueOrDefault,0,"Gets the integer value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151209_a,getJsonObjectBooleanFieldValueOrDefault,0,"Gets the boolean value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151210_l,getElementAsJsonObject,2,Gets the given JsonElement as a JsonObject. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151211_a,jsonElementTypeIsString,0,Is the given JsonElement a string? +func_151212_i,getJsonObjectBooleanFieldValue,0,Gets the boolean value of the field on the JsonObject with the given name. +func_151213_a,getJsonObjectJsonArrayFieldOrDefault,0,"Gets the JsonArray field on the JsonObject with the given name, or the given default value if the field is missing." +func_151214_t,getJsonObjectJsonArrayField,2,Gets the JsonArray field on the JsonObject with the given name. +func_151215_f,getJsonElementIntegerValue,2,Gets the integer value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151216_b,getJsonElementBooleanValue,0,Gets the boolean value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151217_k,getJsonObjectFloatFieldValue,0,Gets the float value of the field on the JsonObject with the given name. +func_151218_a,getJsonObjectFieldOrDefault,0,"Gets the JsonObject field on the JsonObject with the given name, or the given default value if the field is missing." +func_151219_a,getJsonObjectStringFieldValueOrDefault,0,"Gets the string value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151220_d,getJsonElementFloatValue,0,Gets the float value of the given JsonElement. Expects the second parameter to be the name of the element's field if an error message needs to be thrown. +func_151221_a,getJsonObjectFloatFieldValueOrDefault,0,"Gets the float value of the field on the JsonObject with the given name, or the given default value if the field is missing." +func_151222_d,getJsonElementTypeDescription,2,"Gets a human-readable description of the given JsonElement's type. For example: ""a number (4)""" +func_151223_a,downloadResourcePack,0, +func_151225_a,post,2,Sends a POST to the given URL\n \n@param content Formatted POST args (key=value&key2=value2&etc=etc) Should be encoded properly or an error may occur. +func_151226_a,postMap,2,Sends a POST to the given URL using the map as the POST args +func_151235_d,isPowerOfTwo,0,"Is the given value a power of two? (1, 2, 4, 8, 16, ...)" +func_151236_b,roundUpToPowerOfTwo,0,Returns the input value rounded up to the next highest power of two. +func_151237_a,clamp_double,2, +func_151238_b,denormalizeClamp,2, +func_151239_c,calculateLogBaseTwo,0,"Efficiently calculates the floor of the base-2 log of an integer value. This is effectively the index of the highest bit that is set. For example, if the number in binary is 0...100101, this will return 5." +func_151240_a,randomFloatClamp,2, +func_151241_e,calculateLogBaseTwoDeBruijn,0,"Uses a B(2, 5) De Bruijn sequence and a lookup table to efficiently calculate the log-base-two of the given value. Optimized for cases where the input value is a power-of-two. If the input value is not a power-of-two, then subtract 1 from the return value." +func_151243_f,getIconItemDamage,0, +func_151244_d,getIconItemStack,0, +func_151246_b,isNullOrEmpty,2,Returns a value indicating whether the given string is null or empty. +func_151247_a,sendToAllTrackingEntity,2, +func_151250_a,markBlockForUpdate,2, +func_151251_a,sendToAllPlayersWatchingChunk,2, +func_151252_a,sendTileToAllPlayersWatchingChunk,2, +func_151253_a,flagChunkForUpdate,2, +func_151255_a,getStringBuffer,2, +func_151256_a,writeAndFlush,2, +func_151265_a,addLanEndpoint,2,Adds a channel that listens on publicly accessible network ports +func_151267_d,getServer,2, +func_151268_b,terminateEndpoints,2,Shuts down all open endpoints (with immediate effect?) +func_151269_c,networkTick,2,"Will try to process the packets received by each NetworkManager, gracefully manage processing failures and cleans up dead connections" +func_151270_a,addLocalEndpoint,0,Adds a channel that listens locally +func_151303_a,getName,2, +func_151304_b,getProtocol,2, +func_151315_a,setServerDescription,2, +func_151316_d,getFavicon,2, +func_151317_a,getServerDescription,2, +func_151318_b,getPlayerCountData,2, +func_151319_a,setPlayerCountData,2, +func_151320_a,setFavicon,2, +func_151321_a,setProtocolVersionInfo,2, +func_151322_c,getProtocolVersionInfo,2, +func_151330_a,setPlayers,2, +func_151331_c,getPlayers,2, +func_151332_a,getMaxPlayers,2, +func_151333_b,getOnlinePlayerCount,2, +func_151337_f,getBlock,2, +func_151338_e,getEventParameter,2, +func_151339_d,getEventID,2,Get the Event ID (different for each BlockID) +func_151353_a,registerDispenserBehaviors,2, +func_151354_b,register,2,"Registers blocks, items, stats, etc." +func_151357_h,showWorldInfoNotice,0,returns true if selecting this worldtype from the customize menu should display the generator.[worldtype].info message +func_151358_j,setNotificationData,2,enables the display of generator.[worldtype].info message on the customize world menu +func_151393_a,addSmeltingRecipeForBlock,2, +func_151394_a,addSmeltingRecipe,2, +func_151395_a,getSmeltingResult,2,Returns the smelting result of an item. +func_151396_a,addSmelting,2, +func_151398_b,getSmeltingExperience,2, +func_151426_a,getEnumChatVisibility,2, +func_151428_a,getChatVisibility,2, +func_151429_b,getResourceKey,0, +func_151438_a,getSoundLevel,0, +func_151439_a,setSoundLevel,0, +func_151440_a,setOptionKeyBinding,0,Sets a key binding and then saves all settings. +func_151460_a,getBlockAtEntityViewpoint,0, +func_151461_a,getChatComponent,0, +func_151462_b,setKeyCode,0, +func_151463_i,getKeyCode,0, +func_151464_g,getKeyDescription,0, +func_151466_e,getKeyCategory,0, +func_151467_c,getKeybinds,0, +func_151468_f,isPressed,0, +func_151469_h,getKeyCodeDefault,0, +func_151470_d,getIsKeyPressed,0, +func_151498_a,isStairOrSlab,2,True if the block is a stair block or a slab block +func_151499_f,getEatingGrassTimer,2,Number of ticks since the entity started to eat grass +func_151503_a,getWoodenDoorBlock,2,"Returns the block at the specified position, null if that block is not a wooden door. Args : x, y, z" +func_151507_a,writeWatchedListToPacketBuffer,2,"Writes the list of watched objects (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) to the specified PacketBuffer" +func_151508_b,readWatchedListFromPacketBuffer,2,"Reads a list of watched objects (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) from the supplied PacketBuffer" +func_151510_a,writeWatchableObjectToPacketBuffer,2,"Writes a watchable object (entity attribute of type {byte, short, int, float, string, ItemStack, ChunkCoordinates}) to the specified PacketBuffer" +func_151517_h,isDamageAbsolute,2,Whether or not the damage ignores modification by potion effects or enchantments. +func_151518_m,setDamageIsAbsolute,2,"Sets a value indicating whether the damage is absolute (ignores modification by potion effects or enchantments), and also clears out hunger damage." +func_151519_b,getDeathMessage,2,Gets the death message that is displayed when the player dies +func_151523_a,getDifficultyEnum,2, +func_151525_a,getDifficultyId,2, +func_151526_b,getDifficultyResourceKey,2, +func_151539_a,generate,2, +func_151545_a,getNearestInstance,2, +func_151548_a,getBlockAtCurrentPosition,2, +func_151549_a,fillWithBlocks,2,"arguments: (World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ, Block placeBlock, Block replaceBlock, boolean alwaysreplace)" +func_151550_a,placeBlockAtCurrentPosition,2,"current Position depends on currently set Coordinates mode, is computed here" +func_151551_a,randomlyFillWithBlocks,2,"arguments: World worldObj, StructureBoundingBox structBB, Random rand, float randLimit, int minX, int minY, int minZ, int maxX, int maxY, int maxZ, Block placeBlock, Block replaceBlock, boolean alwaysreplace" +func_151555_a,getMetadataWithOffset,2,"Returns the direction-shifted metadata for blocks that require orientation, e.g. doors, stairs, ladders." +func_151556_a,fillWithMetadataBlocks,2,"arguments: (World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ, Block placeBlock, int placeBlockMetadata, Block replaceBlock, int replaceBlockMetadata, boolean alwaysreplace)" +func_151565_r,getMaterialMapColor,2, +func_151616_a,biomesEqualOrMesaPlateau,2, +func_151617_b,selectModeOrRandom,2,"returns the most frequently occurring number of the set, or a random number from those provided" +func_151618_b,isBiomeOceanic,2,returns true if the biomeId is one of the various ocean biomes. +func_151619_a,selectRandom,2,selects a random integer from a set of provided integers +func_151624_d,getIntsHeatIce,2, +func_151625_e,getIntsSpecial,2, +func_151626_c,getIntsCoolWarm,2, +func_151634_b,canBiomesBeNeighbors,2,"Returns if two biomes can logically be neighbors. If one is hot and the other cold, for example, it returns false." +func_151635_b,replaceBiomeEdge,2,Creates a border around a biome. +func_151636_a,replaceBiomeEdgeIfNecessary,2,"Creates a border around a biome if necessary, e.g. A transition from hot to cold climates would otherwise occur." +func_151644_a,getMapColorForBlockColored,2, +func_151685_b,getBaseItemForRepair,2,Get a main crafting component of this Armor Material (example is Items.iron_ingot) +func_151686_a,addStats,2, +func_152121_a,onSkinAvailable,0,Called when the skinmanager completes downloading part of a skin. May be called twice if the player has both a skin and a cape.\n \n@param skinPart Either Type.SKIN or Type.CAPE +func_152122_n,hasCape,0, +func_152123_o,hasSkin,0, +func_152125_a,drawScaledCustomSizeModalRect,0,"Draws a scaled, textured, tiled modal rect at z = 0. This method isn't used anywhere in vanilla code." +func_152126_a,renderStreamIndicator,0, +func_152340_a,readImageToBuffer,0, +func_152341_N,getTwitchDetails,0, +func_152342_ad,getSkinManager,0, +func_152343_a,addScheduledTask,0, +func_152344_a,addScheduledTask,0, +func_152345_ab,isCallingFromMinecraftThread,0, +func_152346_Z,getTwitchStream,0, +func_152347_ac,getSessionService,0, +func_152348_aa,dispatchKeypresses,0, +func_152349_b,isUnicode,0, +func_152357_F,getGameProfiles,2,Returns an array of the GameProfiles of all the connected players +func_152358_ax,getPlayerProfileCache,2, +func_152359_aw,getGameProfileRepository,2, +func_152361_a,setConfigManager,2, +func_152368_aE,convertFiles,1, +func_152369_aG,sleepFiveSeconds,1, +func_152372_a,notifyOperators,2, +func_152373_a,notifyOperators,2, +func_152374_a,notifyOperators,2, +func_152378_a,getPlayerEntityByUUID,2, +func_152379_p,getRenderDistanceChunks,2, +func_152421_a,setSessionType,0, +func_152428_f,getSessionType,0,Returns either 'legacy' or 'mojang' whether the account is migrated or not +func_152436_a,render,0, +func_152437_a,render,0, +func_152446_a,read,2, +func_152447_a,readType,2, +func_152448_b,readKey,2, +func_152449_a,readNBT,2, +func_152450_a,addSpaceRead,2,Adds to the amount of space read by this NBTSizeTracker. Throws an exception when the spaceRead is over the spaceAllocated. +func_152457_a,decompress,2, +func_152458_a,readFromFile,0, +func_152459_a,readGameProfileFromNBT,2,Reads and returns a GameProfile that has been saved to the passed in NBTTagCompound +func_152460_a,writeGameProfileToNBT,2,Writes the passed in GameProfile to the passed in NBTTagCompound +func_152493_a,getTotalBytes,2, +func_152495_b,getCount,2, +func_152506_a,getOfflineProfile,2, +func_152583_a,copyFrom,0, +func_152584_a,setResourceMode,0, +func_152585_d,isLanServer,0, +func_152586_b,getResourceMode,0, +func_152589_a,getMotd,0, +func_152596_g,canSendCommands,2, +func_152597_c,removePlayerFromWhitelist,2, +func_152598_l,getWhitelistedPlayerNames,2, +func_152599_k,getWhitelistedPlayers,2, +func_152600_g,getAllProfiles,2, +func_152601_d,addWhitelistedPlayer,2, +func_152602_a,getPlayerStatsFile,2, +func_152603_m,getOppedPlayers,2, +func_152605_a,addOp,2, +func_152606_n,getOppedPlayerNames,2, +func_152607_e,canJoin,2, +func_152608_h,getBannedPlayers,2, +func_152609_b,getPlayerNamesString,2, +func_152610_b,removeOp,2, +func_152611_a,setViewDistance,2, +func_152612_a,getPlayerByUsername,2, +func_152617_w,saveUserBanList,1, +func_152618_v,saveIpBanList,1, +func_152619_x,loadIpBanList,1, +func_152620_y,loadUserBansList,1, +func_152640_f,getValue,2, +func_152641_a,onSerialization,2, +func_152655_a,getGameProfileForUsername,2, +func_152678_f,writeChanges,2, +func_152679_g,readSavedFile,1, +func_152680_h,removeExpired,2,Removes expired bans from the list. Never actually does anything since UserListEntry#hasBanExpired always returns false. Appears to be an effort by Mojang to add temp ban functionality. (1.7.10) +func_152681_a,getObjectKey,2,Gets the key value for the given object +func_152682_a,createEntry,2, +func_152683_b,getEntry,2, +func_152684_c,removeEntry,2, +func_152685_a,getKeys,2, +func_152686_a,setLanServer,2, +func_152687_a,addEntry,2,Adds an entry to the list +func_152688_e,getValues,2, +func_152689_b,isLanServer,2, +func_152690_d,hasEntries,1, +func_152691_c,getSaveFile,1, +func_152692_d,hasEntry,2, +func_152700_a,getGameProfileFromName,2,Gets the GameProfile of based on the provided username. +func_152701_b,getProfileId,2, +func_152702_a,isBanned,2, +func_152703_a,isUsernameBanned,2, +func_152707_c,addressToString,2, +func_152708_a,isBanned,2, +func_152709_b,getBanEntry,2, +func_152710_d,convertWhitelist,1, +func_152711_b,mkdir,1, +func_152712_b,hasUnconvertableFiles,1, +func_152713_b,parseDate,1, +func_152714_a,tryConvert,1, +func_152715_c,hasUnconvertablePlayerFiles,1, +func_152717_a,lookupNames,2, +func_152718_c,convertOplist,1, +func_152721_a,readFile,1, +func_152722_b,convertIpBanlist,1, +func_152723_a,convertSaveFiles,1, +func_152724_a,convertUserBanlist,1, +func_152725_d,getPlayersDirectory,1, +func_152727_c,backupConverted,1, +func_152750_a,deserializeEntry,2, +func_152751_a,serializeEntry,2, +func_152754_s,getJsonObject,0, +func_152755_a,get,0,Send a GET request to the given URL. +func_152764_a,parsePass,0, +func_152765_a,parseGroup,0, +func_152767_b,addStatToSnooper,2, +func_152768_a,addClientStat,2, +func_152788_a,loadSkinFromCache,0, +func_152789_a,loadSkin,0,"May download the skin if its not in the cache, can be passed a SkinManager#SkinAvailableCallback for handling" +func_152792_a,loadSkin,0,Used in the Skull renderer to fetch a skin. May download the skin if it's not in the cache +func_152825_o,isIngestTesting,0, +func_152839_p,isBroadcastPaused,0, +func_152850_m,isBroadcasting,0, +func_152856_w,isReady,0, +func_152919_o,isPaused,0, +func_152923_i,shutdownStream,0,Shuts down a steam +func_153157_c,glGetShaderi,0, +func_153158_d,glGetShaderInfoLog,0, +func_153159_d,glUniform4,0, +func_153160_c,glUniformMatrix4,0, +func_153161_d,glUseProgram,0, +func_153162_d,glUniform4,0, +func_153163_f,glUniform1i,0, +func_153164_b,glGetAttribLocation,0, +func_153166_e,glGetProgramInfoLog,0, +func_153168_a,glUniform1,0, +func_153169_a,glShaderSource,0, +func_153170_c,glCompileShader,0, +func_153173_a,glUniformMatrix2,0, +func_153175_a,glGetProgrami,0, +func_153177_b,glUniform2,0, +func_153178_b,glAttachShader,0, +func_153179_f,glLinkProgram,0, +func_153180_a,glDeleteShader,0, +func_153181_a,glUniform1,0, +func_153182_b,glUniform2,0, +func_153183_d,glCreateProgram,0, +func_153187_e,glDeleteProgram,0, +func_153189_b,glUniformMatrix3,0, +func_153191_c,glUniform3,0, +func_153192_c,glUniform3,0, +func_153194_a,glGetUniformLocation,0, +func_153195_b,glCreateShader,0,creates a shader with the given mode and returns the GL id. params: mode +func_154310_c,getButtonHeight,0, +func_154311_a,setText,0, +func_154313_b,setEnabled,0, +func_154314_d,getId,0, +func_154315_e,getEnabled,0, +func_154316_f,getPositionY,0, +func_154317_g,getRealmsButton,0, +func_154331_x,getLastActiveTime,2, +func_154346_a,hasAcceptedEULA,1, +func_154347_a,loadEULAFile,1, +func_154348_b,createEULAFile,1, +func_155759_m,setServerResourcePack,1, +func_70000_a,addServerStatsToSnooper,2, +func_70001_b,addServerTypeToSnooper,2, +func_70002_Q,isSnooperEnabled,2,Returns whether snooping is enabled or not. +func_70003_b,canCommandSenderUseCommand,2,Returns true if the command sender is allowed to use the given command. +func_70005_c_,getCommandSenderName,2,"Gets the name of this command sender (usually username, but possibly ""Rcon"")" +func_70007_b,resetLog,1,Clears the RCon log +func_70008_c,getLogContents,1,Gets the contents of the RCon log +func_70011_f,getDistance,2,"Gets the distance to the position. Args: x, y, z" +func_70012_b,setLocationAndAngles,2,Sets the location and Yaw/Pitch of an entity in the world +func_70013_c,getBrightness,2,Gets how bright this entity is. +func_70014_b,writeEntityToNBT,2,(abstract) Protected helper method to write subclass entity data to NBT. +func_70015_d,setFire,2,"Sets entity to burn for x amount of seconds, cannot lower amount of existing fire." +func_70016_h,setVelocity,0,"Sets the velocity to the args. Args: x, y, z" +func_70018_K,setBeenAttacked,2,Sets that this entity has been attacked. +func_70019_c,setEating,2, +func_70020_e,readFromNBT,2,Reads the entity from NBT (calls an abstract helper method to read specialized data) +func_70021_al,getParts,2,Return the Entity parts making up this Entity (currently only for dragons) +func_70022_Q,getEntityString,2,Returns the string that identifies this Entity's class +func_70024_g,addVelocity,2,"Adds to the current velocity of the entity. Args: x, y, z" +func_70026_G,isWet,2,Checks if this entity is either in water or on an open air block in rain (used in wolves). +func_70027_ad,isBurning,2,Returns true if the entity is on fire. Used by render to add the fire effect on rendering. +func_70028_i,isEntityEqual,2,Returns true if Entity argument is equal to this Entity +func_70029_a,setWorld,2,Sets the reference to the World object. +func_70030_z,onEntityUpdate,2,Gets called every tick from main Entity class +func_70031_b,setSprinting,2,Set sprinting switch for Entity. +func_70032_d,getDistanceToEntity,2,Returns the distance to the entity. Args: entity +func_70033_W,getYOffset,2,Returns the Y Offset of this entity. +func_70034_d,setRotationYawHead,0,Sets the head's yaw rotation of the entity. +func_70035_c,getInventory,2,returns the inventory of this entity (only used in EntityPlayerMP it seems) +func_70037_a,readEntityFromNBT,2,(abstract) Protected helper method to read subclass entity data from NBT. +func_70038_c,isOffsetPositionInLiquid,2,"Checks if the offset position from the entity's current position is inside of liquid. Args: x, y, z" +func_70039_c,writeToNBTOptional,2,"Either write this entity to the NBT tag given and return true, or return false without doing anything. If this returns false the entity is not saved on disk. Ridden entities return false here as they are saved with their rider." +func_70040_Z,getLookVec,2,returns a (normalized) vector of where this entity is looking +func_70041_e_,canTriggerWalking,2,returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to prevent them from trampling crops +func_70042_X,getMountedYOffset,2,Returns the Y offset from the entity's position for any entity riding this one. +func_70043_V,updateRiderPosition,2, +func_70044_A,setOnFireFromLava,2,Called whenever the entity is walking inside of lava. +func_70045_F,isImmuneToFire,2, +func_70046_E,getBoundingBox,2,returns the bounding box for this entity +func_70047_e,getEyeHeight,2, +func_70049_a,newFloatNBTList,2,Returns a new NBTTagList filled with the specified floats +func_70050_g,setAir,2, +func_70051_ag,isSprinting,2,Get if the Entity is sprinting. +func_70052_a,setFlag,2,"Enable or disable a entity flag, see getEntityFlag to read the know flags." +func_70053_R,getShadowSize,0, +func_70055_a,isInsideOfMaterial,2,Checks if the current block the entity is within of the specified material type +func_70056_a,setPositionAndRotation2,0,"Sets the position and rotation. Only difference from the other one is no bounding on the rotation. Args: posX, posY, posZ, yaw, pitch" +func_70057_ab,performHurtAnimation,0,Setups the entity to do the hurt animation. Only used by packets in multiplayer. +func_70058_J,handleLavaMovement,2,Whether or not the current entity is in lava +func_70060_a,moveFlying,2,Used in both water and by flying objects +func_70062_b,setCurrentItemOrArmor,2,"Sets the held item, or an armor slot. Slot 0 is held item. Slot 1-4 is armor. Params: Item, slot" +func_70063_aa,setInPortal,2,Called by portal blocks when an entity is within it. +func_70064_a,updateFallState,2,Takes in the distance the entity has fallen this tick and whether its on the ground to update the fall distance and deal fall damage if landing on the ground. +func_70065_x,preparePlayerToSpawn,0,Keeps moving the entity up so it isn't colliding with blocks and other requirements for this entity to be spawned (only actually used on players though its also on Entity) +func_70066_B,extinguish,2,Removes fire from entity. +func_70067_L,canBeCollidedWith,2,Returns true if other Entities should be prevented from moving through this Entity. +func_70068_e,getDistanceSqToEntity,2,Returns the squared distance to the entity. Args: entity +func_70069_a,fall,2,Called when the mob is falling. Calculates and applies fall damage. +func_70070_b,getBrightnessForRender,0, +func_70071_h_,onUpdate,2,Called to update the entity's position/logic. +func_70072_I,handleWaterMovement,2,Returns if this entity is in water and will end up adding the waters velocity to the entity +func_70074_a,onKillEntity,2,This method gets called when the entity kills another one. +func_70075_an,canAttackWithItem,2,"If returns false, the item will not inflict any damage against entities." +func_70076_C,kill,2,sets the dead flag. Used when you fall off the bottom of the world. +func_70077_a,onStruckByLightning,2,Called when a lightning bolt hits the entity. +func_70078_a,mountEntity,2,"Called when a player mounts an entity. e.g. mounts a pig, mounts a boat." +func_70079_am,getRotationYawHead,2, +func_70080_a,setPositionAndRotation,2,Sets the entity's position and rotation. +func_70081_e,dealFireDamage,2,Will deal the specified amount of damage to the entity if the entity isn't immune to fire damage. Args: amountDamage +func_70082_c,setAngles,0,Adds 15% to the entity's yaw and subtracts 15% from the pitch. Clamps pitch from -90 to 90. Both arguments in degrees. +func_70083_f,getFlag,2,"Returns true if the flag is active for the entity. Known flags: 0) is burning; 1) is sneaking; 2) is riding something; 3) is sprinting; 4) is eating\n \n@param flag 0 => burning, 1 => sneaking, 2 => riding something, 3 => sprinting; 4 => eating" +func_70084_c,addToPlayerScore,2,"Adds a value to the player score. Currently not actually used and the entity passed in does nothing. Args: entity, scoreToAdd" +func_70085_c,interact,2,"Called when a player interacts with a mob. e.g. gets milk from a cow, gets into the saddle on a pig." +func_70086_ai,getAir,2, +func_70087_a,newDoubleNBTList,2,creates a NBT list from the array of doubles passed to this function +func_70088_a,entityInit,2, +func_70089_S,isEntityAlive,2,Checks whether target entity is alive. +func_70090_H,isInWater,2,Checks if this entity is inside water (if inWater field is true as a result of handleWaterMovement() returning true) +func_70091_d,moveEntity,2,"Tries to moves the entity by the passed in displacement. Args: x, y, z" +func_70092_e,getDistanceSq,2,"Gets the squared distance to the position. Args: x, y, z" +func_70093_af,isSneaking,2,Returns if this entity is sneaking. +func_70094_T,isEntityInsideOpaqueBlock,2,Checks if this entity is inside of an opaque block +func_70095_a,setSneaking,2,Sets the sneaking flag. +func_70096_w,getDataWatcher,2, +func_70097_a,attackEntityFrom,2,Called when the entity is attacked. +func_70098_U,updateRidden,2,Handles updating while being ridden by an entity +func_70099_a,entityDropItem,2,Drops an item at the position of the entity. +func_70100_b_,onCollideWithPlayer,2,Called by a player entity when they collide with an entity +func_70101_b,setRotation,2,"Sets the rotation of the entity. Args: yaw, pitch (both in degrees)" +func_70103_a,handleHealthUpdate,0, +func_70104_M,canBePushed,2,Returns true if this entity should push and be pushed by other entities when colliding. +func_70105_a,setSize,2,"Sets the width and height of the entity. Args: width, height" +func_70106_y,setDead,2,Will get destroyed next tick. +func_70107_b,setPosition,2,"Sets the x,y,z of the entity from the given parameters. Also seems to set up a bounding box." +func_70108_f,applyEntityCollision,2,Applies a velocity to each of the entities pushing them away from each other. Args: entity +func_70109_d,writeToNBT,2,Save the entity to NBT (calls an abstract helper method to write extra data) +func_70110_aj,setInWeb,2,Sets the Entity inside a web block. +func_70111_Y,getCollisionBorderSize,2, +func_70112_a,isInRangeToRenderDist,0,Checks if the entity is in range to render by using the past in distance and comparing it to its average edge length * 64 * renderDistanceWeight Args: distance +func_70113_ah,isEating,0, +func_70114_g,getCollisionBox,2,"Returns a boundingBox used to collide the entity with other entities and blocks. This enables the entity to be pushable on contact, like boats or minecarts." +func_70115_ae,isRiding,2,"Returns true if the entity is riding another entity, used by render to rotate the legs to be in 'sit' position for players." +func_70184_a,onImpact,2,Called when this EntityThrowable hits a block or entity. +func_70185_h,getGravityVelocity,2,Gets the amount of gravity to apply to the thrown entity with each tick. +func_70186_c,setThrowableHeading,2,"Similar to setArrowHeading, it's point the throwable entity to a x, y, z direction." +func_70196_i,getPotionDamage,2,Returns the damage value of the thrown potion that this EntityPotion represents. +func_70220_a,moveTowards,2,"The location the eye should float/move towards. Currently used for moving towards the nearest stronghold. Args: strongholdX, strongholdY, strongholdZ" +func_70227_a,onImpact,2,Called when this EntityFireball hits a block or entity. +func_70239_b,setDamage,2, +func_70240_a,setKnockbackStrength,2,Sets the amount of knockback the arrow applies when it hits a mob. +func_70241_g,getIsCritical,2,Whether the arrow has a stream of critical hit particles flying behind it. +func_70242_d,getDamage,2, +func_70243_d,setIsCritical,2,Whether the arrow has a stream of critical hit particles flying behind it. +func_70265_b,setTimeSinceHit,2,Sets the time to count down from since the last time entity was hit. +func_70266_a,setDamageTaken,2,Sets the damage taken from the last hit. +func_70267_i,getForwardDirection,2,Gets the forward direction of the entity. +func_70268_h,getTimeSinceHit,2,Gets the time since the last hit. +func_70269_c,setForwardDirection,2,Sets the forward direction of the entity. +func_70270_d,setIsBoatEmpty,0,true if no player in boat +func_70271_g,getDamageTaken,2,Gets the damage taken from the last hit. +func_70288_d,setAgeToCreativeDespawnTime,2,sets the age of the item so that it'll despawn one minute after it has been dropped (instead of five). Used when items are dropped from players in creative mode +func_70289_a,combineItems,2,Tries to merge this item with the item passed as the parameter. Returns true if successful. Either this item or the other item will be removed from the world. +func_70295_k_,openChest,2, +func_70296_d,markDirty,2,"For tile entities, ensures the chunk containing the tile entity is saved to disk later - the game won't think it hasn't changed and skip it." +func_70297_j_,getInventoryStackLimit,2,"Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended. *Isn't this more of a set than a get?*" +func_70298_a,decrStackSize,2,Removes from an inventory slot (first arg) up to a specified number (second arg) of items and returns them in a new stack. +func_70299_a,setInventorySlotContents,2,Sets the given item stack to the specified slot in the inventory (can be crafting or armor sections). +func_70300_a,isUseableByPlayer,2,Do not make give this method the name canInteractWith because it clashes with Container +func_70301_a,getStackInSlot,2,Returns the stack in slot i +func_70302_i_,getSizeInventory,2,Returns the number of slots in the inventory. +func_70304_b,getStackInSlotOnClosing,2,"When some containers are closed they call this on each slot, then drop whatever it returns as an EntityItem - like when you close a workbench GUI." +func_70305_f,closeChest,2, +func_70429_k,decrementAnimations,2,Decrement the number of animations remaining. Only called on client side. This is used to handle the animation of receiving a block. +func_70430_l,getTotalArmorValue,2,"Based on the damage values and maximum damage values of each armor item, returns the current armor value." +func_70431_c,hasItemStack,2,Returns true if the specified ItemStack exists in the inventory. +func_70432_d,storeItemStack,2,stores an itemstack in the users inventory +func_70436_m,dropAllItems,2,Drop all armor and main inventory items. +func_70437_b,setItemStack,2,"Set the stack helds by mouse, used in GUI/Container" +func_70440_f,armorItemInSlot,2,returns a player armor item (as itemstack) contained in specified armor slot. +func_70441_a,addItemStackToInventory,2,"Adds the item stack to the inventory, returns false if it is impossible." +func_70442_a,writeToNBT,2,"Writes the inventory out as a list of compound tags. This is where the slot indices are used (+100 for armor, +80 for crafting)." +func_70443_b,readFromNBT,2,Reads from the given tag list and fills the slots in the inventory with the correct items. +func_70445_o,getItemStack,2,"Stack helds by mouse, used in GUI and Containers" +func_70447_i,getFirstEmptyStack,2,Returns the first item stack that is empty. +func_70448_g,getCurrentItem,2,Returns the item stack currently held by the player. +func_70449_g,damageArmor,2,Damages armor in each slot by the specified amount. +func_70451_h,getHotbarSize,2,Get the size of the player hotbar inventory +func_70452_e,storePartialItemStack,2,This function stores as many items of an ItemStack as possible in a matching slot and returns the quantity of left over items. +func_70453_c,changeCurrentItem,0,Switch the current item to the next one or the previous one +func_70455_b,copyInventory,2,Copy the ItemStack contents from another InventoryPlayer instance +func_70463_b,getStackInRowAndColumn,2,"Returns the itemstack in the slot specified (Top left is 0, 0). Args: row, column" +func_70468_h,getCurrentRecipe,2, +func_70469_d,inventoryResetNeededOnSlotChange,2,"if par1 slot has changed, does resetRecipeAndSlots need to be called?" +func_70470_g,resetRecipeAndSlots,2, +func_70471_c,setCurrentRecipeIndex,2, +func_70486_a,loadInventoryFromNBT,2, +func_70487_g,saveInventoryToNBT,2, +func_70491_i,getDamage,2,Gets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. +func_70492_c,setDamage,2,Sets the current amount of damage the minecart has taken. Decreases over time. The cart breaks when this is over 40. +func_70493_k,getRollingDirection,2,Gets the rolling direction the cart rolls while being attacked. Can be 1 or -1. +func_70494_i,setRollingDirection,2,Sets the rolling direction the cart rolls while being attacked. Can be 1 or -1. +func_70496_j,getRollingAmplitude,2,Gets the rolling amplitude the cart rolls while being attacked. +func_70497_h,setRollingAmplitude,2,Sets the rolling amplitude the cart rolls while being attacked. +func_70515_d,explode,2, +func_70518_d,onValidSurface,2,checks to make sure painting can be placed there +func_70526_d,getXpValue,2,Returns the XP value of this XP orb. +func_70527_a,getXPSplit,2,Get a fragment of the maximum experience points value for the supplied value of experience points value. +func_70528_g,getTextureByXP,0,Returns a number from 1 to 10 based on how much XP this orb is worth. This is used by RenderXPOrb to determine what texture to use. +func_70534_d,getRedColorF,0, +func_70535_g,getBlueColorF,0, +func_70536_a,setParticleTextureIndex,0,Public method to set private field particleTextureIndex. +func_70537_b,getFXLayer,0, +func_70538_b,setRBGColorF,0, +func_70539_a,renderParticle,0, +func_70541_f,multipleParticleScaleBy,0, +func_70542_f,getGreenColorF,0, +func_70543_e,multiplyVelocity,0, +func_70589_b,setBaseSpellTextureIndex,0,Sets the base spell texture index +func_70596_a,applyColourMultiplier,0,"If the block has a colour multiplier, copies it to this particle and returns this particle." +func_70599_aP,getSoundVolume,2,Returns the volume for the sounds this mob makes. +func_70600_l,dropRareDrop,2, +func_70601_bi,getCanSpawnHere,2,Checks if the entity's current position is a valid location to spawn this entity. +func_70603_bj,getRenderSizeModifier,0,Returns render size modifier +func_70604_c,setRevengeTarget,2, +func_70605_aq,getMoveHelper,2, +func_70606_j,setHealth,2, +func_70608_bn,isPlayerSleeping,2,Returns whether player is sleeping or not +func_70609_aI,onDeathUpdate,2,"handles entity death timer, experience orb and particle creation" +func_70610_aX,isMovementBlocked,2,Dead and sleeping entities cannot move +func_70612_e,moveEntityWithHeading,2,"Moves the entity based on the specified heading. Args: strafe, forward" +func_70613_aW,isServerWorld,2,Returns whether the entity is in a server world +func_70614_a,rayTrace,0,"Performs a ray trace for the distance specified and using the partial tick time. Args: distance, partialTickTime" +func_70615_aA,eatGrassBonus,2,This function applies the benefits of growing back wool and faster growing up to the acting entity. (This function is used in the AIEatGrass) +func_70617_f_,isOnLadder,2,"returns true if this entity is by a ladder, false otherwise" +func_70618_n,removePotionEffectClient,0,Remove the speified potion effect from this entity. +func_70619_bc,updateAITasks,2, +func_70620_b,getItemIcon,0,Gets the Icon Index of the item currently held +func_70621_aR,getHurtSound,2,Returns the sound this mob makes when it is hurt. +func_70623_bb,despawnEntity,2,Makes the entity despawn if requirements are reached +func_70624_b,setAttackTarget,2,Sets the active target the Task system uses for tracking +func_70625_a,faceEntity,2,Changes pitch and yaw so that the entity calling the function is facing the entity provided as an argument. +func_70626_be,updateEntityActionState,2, +func_70627_aG,getTalkInterval,2,"Get number of ticks, at least during which the living entity will be silent." +func_70628_a,dropFewItems,2,Drop 0-2 items of this living's type +func_70629_bd,updateAITick,2,"main AI tick function, replaces updateEntityActionState" +func_70631_g_,isChild,2,"If Animal, checks if the age timer is negative" +func_70632_aY,isBlocking,2, +func_70634_a,setPositionAndUpdate,2,Sets the position of the entity and updates the 'last' variables +func_70635_at,getEntitySenses,2,returns the EntitySenses Object for the EntityLiving +func_70636_d,onLivingUpdate,2,"Called frequently so the entity can update its state every tick as required. For example, zombies and skeletons use this to react to sunlight and start to burn." +func_70637_d,setJumping,2, +func_70638_az,getAttackTarget,2,Gets the active target the Task system uses for tracking +func_70639_aQ,getLivingSound,2,Returns the sound this mob makes while it's alive. +func_70641_bl,getMaxSpawnedInChunk,2,Will return how many at most can spawn in a chunk at once. +func_70642_aH,playLivingSound,2,Plays living's sound at its position +func_70643_av,getAITarget,2, +func_70644_a,isPotionActive,2, +func_70645_a,onDeath,2,Called when the mob's health reaches 0. +func_70646_bf,getVerticalFaceSpeed,2,The speed it takes to move the entityliving's rotationPitch through the faceEntity method. This is only currently use in wolves. +func_70647_i,getSoundPitch,2,Gets the pitch of living sounds in living entities. +func_70648_aU,canBreatheUnderwater,2, +func_70650_aV,isAIEnabled,2,Returns true if the newer Entity AI code should be run +func_70651_bq,getActivePotionEffects,2, +func_70652_k,attackEntityAsMob,2, +func_70653_a,knockBack,2,knocks back this entity +func_70654_ax,getAge,2, +func_70655_b,applyArmorCalculations,2,"Reduces damage, depending on armor" +func_70656_aK,spawnExplosionParticle,2,Spawns an explosion particle around the Entity's location +func_70657_f,setMoveForward,2, +func_70658_aO,getTotalArmorValue,2,Returns the current armor value as determined by a call to InventoryPlayer.getTotalArmorValue +func_70659_e,setAIMoveSpeed,2,set the movespeed used for the new AI system +func_70660_b,getActivePotionEffect,2,"returns the PotionEffect for the supplied Potion if it is active, null otherwise." +func_70661_as,getNavigator,2, +func_70662_br,isEntityUndead,2,Returns true if this entity is undead. +func_70663_b,updateRotation,2,"Arguments: current rotation, intended rotation, max increment." +func_70664_aZ,jump,2,Causes this entity to do an upwards motion (jumping). +func_70665_d,damageEntity,2,Deals damage to the entity. If its a EntityPlayer then will take damage from the armor first and then health second with the reduced value. Args: damageAmount +func_70666_h,getPosition,0,interpolated position vector +func_70668_bt,getCreatureAttribute,2,Get this Entity's EnumCreatureAttribute +func_70669_a,renderBrokenItemStack,2,Renders broken item particles using the given ItemStack +func_70670_a,onNewPotionEffect,2, +func_70671_ap,getLookHelper,2, +func_70672_c,applyPotionDamageCalculations,2,"Reduces damage, depending on potions" +func_70673_aS,getDeathSound,2,Returns the sound this mob makes on death. +func_70674_bp,clearActivePotions,2, +func_70675_k,damageArmor,2, +func_70676_i,getLook,2,interpolated look vector +func_70678_g,getSwingProgress,0,Returns where in the swing animation the living entity is (from 0 to 1). Args: partialTickTime +func_70679_bo,updatePotionEffects,2, +func_70681_au,getRNG,2, +func_70682_h,decreaseAirSupply,2,Decrements the entity's air supply when underwater +func_70683_ar,getJumpHelper,2, +func_70684_aJ,isPlayer,2,Only use is to identify if class is an instance of player for experience dropping +func_70685_l,canEntityBeSeen,2,returns true if the entity provided in the argument can be seen. (Raytrace) +func_70686_a,canAttackClass,2,Returns true if this entity can attack entities of the specified class. +func_70687_e,isPotionApplicable,2, +func_70688_c,onFinishedPotionEffect,2, +func_70689_ay,getAIMoveSpeed,2,the movespeed used for the new AI system +func_70690_d,addPotionEffect,2,adds a PotionEffect to the entity +func_70691_i,heal,2,Heal living entity (param: amount of half-hearts) +func_70692_ba,canDespawn,2,"Determines if an entity can be despawned, used on idle far away entities" +func_70693_a,getExperiencePoints,2,Get the experience points the entity currently has. +func_70694_bm,getHeldItem,2,"Returns the item that this EntityLiving is holding, if any." +func_70695_b,onChangedPotionEffect,2, +func_70777_m,getEntityToAttack,2,returns the target Entity +func_70778_a,setPathToEntity,2,sets the pathToEntity +func_70779_j,updateWanderPath,2,Time remaining during which the Animal is sped up and flees. +func_70780_i,isMovementCeased,2,Disables a mob's ability to move on its own while true. +func_70781_l,hasPath,2,"if the entity got a PathEntity it returns true, else false" +func_70782_k,findPlayerToAttack,2,"Finds the closest player within 16 blocks to attack, or null if this Entity isn't interested in attacking (Animals, Spiders at day, peaceful PigZombies)." +func_70783_a,getBlockPathWeight,2,"Takes a coordinate in and returns a weight to determine how likely this creature will try to path to the block. Args: x, y, z" +func_70784_b,setTarget,2,Sets the entity which is to be attacked. +func_70785_a,attackEntity,2,Basic mob attack. Default to touch of death in EntityCreature. Overridden by each mob to define their attack. +func_70790_a,isCourseTraversable,2,True if the ghast has an unobstructed line of travel to the waypoint. +func_70799_a,setSlimeSize,2, +func_70800_m,canDamagePlayer,2,Indicates weather the slime is able to damage the player (based upon the slime's size) +func_70801_i,getSlimeParticle,2,Returns the name of a particle effect that may be randomly created by EntitySlime.onUpdate() +func_70802_j,createInstance,2, +func_70803_o,getJumpSound,2,Returns the name of the sound played when the slime jumps. +func_70804_p,makesSoundOnLand,2,Returns true if the slime makes a sound when it lands after a jump (based upon the slime's size) +func_70805_n,getAttackStrength,2,"Gets the amount of damage dealt to the player when ""attacked"" by the slime." +func_70806_k,getJumpDelay,2,Gets the amount of time the slime needs to wait between jumps. +func_70807_r,makesSoundOnJump,2,Returns true if the slime makes a sound when it jumps (based upon the slime's size) +func_70808_l,alterSquishAmount,2, +func_70809_q,getSlimeSize,2,Returns the size of the slime. +func_70814_o,isValidLightLevel,2,Checks to make sure the light is not too bright where the mob is spawning +func_70816_c,teleportToEntity,2,Teleport the enderman to another entity +func_70817_b,setCarryingData,2,Set the metadata of the block an enderman carries +func_70819_e,setScreaming,2, +func_70820_n,teleportRandomly,2,Teleport the enderman to a random nearby position +func_70821_d,shouldAttackPlayer,2,Checks to see if this enderman should be attacking this player +func_70823_r,isScreaming,2, +func_70824_q,getCarryingData,2,Get the metadata of the block an enderman carries +func_70825_j,teleportTo,2,Teleport the enderman +func_70829_a,setCreeperState,2,"Sets the state of creeper, -1 to idle and 1 to be 'in fuse'" +func_70830_n,getPowered,2,Returns true if the creeper is powered by a lightning bolt. +func_70831_j,getCreeperFlashIntensity,0,Params: (Float)Render tick. Returns the intensity of the creeper's flash when it is ignited. +func_70832_p,getCreeperState,2,"Returns the current state of creeper, -1 is idle, 1 is 'in fuse'" +func_70835_c,becomeAngryAt,2,Causes this PigZombie to become angry at the supplied Entity (which will be a player). +func_70839_e,setBesideClimbableBlock,2,"Updates the WatchableObject (Byte) created in entityInit(), setting it to 0x01 if par1 is true or 0x00 if it is false." +func_70841_p,isBesideClimbableBlock,2,Returns true if the WatchableObject (Byte) is 0x01 otherwise returns false. The WatchableObject is updated using setBesideClimableBlock. +func_70849_f,setPlayerCreated,2, +func_70850_q,isPlayerCreated,2, +func_70851_e,setHoldingRose,2, +func_70852_n,getVillage,2, +func_70853_p,getHoldRoseTick,2, +func_70854_o,getAttackTimer,0, +func_70873_a,setGrowingAge,2,"The age value may be negative or positive or zero. If it's negative, it get's incremented on each tick, if it's positive, it get's decremented each tick. With a negative value the Entity is considered a child." +func_70874_b,getGrowingAge,2,"The age value may be negative or positive or zero. If it's negative, it get's incremented on each tick, if it's positive, it get's decremented each tick. Don't confuse this with EntityLiving.getAge. With a negative value the Entity is considered a child." +func_70875_t,resetInLove,2, +func_70876_c,procreate,2,Creates a baby animal according to the animal type of the target at the actual position and spawns 'love' particles. +func_70877_b,isBreedingItem,2,"Checks if the parameter is an item which this animal can be fed to breed it (wheat, carrots or seeds depending on the animal type)" +func_70878_b,canMateWith,2,Returns true if the mob is currently able to mate with the specified mob. +func_70880_s,isInLove,2,Returns if the entity is currently in 'love mode'. +func_70890_k,getHeadRotationAngleX,0, +func_70891_b,setFleeceColor,2, +func_70892_o,getSheared,2,returns true if a sheeps wool has been sheared +func_70893_e,setSheared,2,make a sheep sheared if set to true +func_70894_j,getHeadRotationPointY,0, +func_70895_a,getRandomFleeceColor,2,This method is called when a sheep spawns in the world to select the color of sheep fleece. +func_70896_n,getFleeceColor,2, +func_70900_e,setSaddled,2,Set or remove the saddle of the pig. +func_70901_n,getSaddled,2,Returns true if the pig is saddled. +func_70902_q,getOwner,2, +func_70903_f,setTamed,2, +func_70904_g,setSitting,2, +func_70906_o,isSitting,2, +func_70907_r,getAISit,2,Returns the AITask responsible of the sit logic +func_70908_e,playTameEffect,2,"Play the taming effect, will either be hearts or smoke depending on status" +func_70909_n,isTamed,2, +func_70912_b,setTameSkin,2, +func_70913_u,getTameSkin,2, +func_70915_j,getShadingWhileWet,0,Used when calculating the amount of shading to apply while the wolf is wet. +func_70916_h,setAngry,2,Sets whether this wolf is angry or not. +func_70917_k,getInterestedAngle,0, +func_70919_bu,isAngry,2,Determines whether this wolf is angry or not. +func_70920_v,getTailRotation,0, +func_70921_u,isWolfWet,0,True if the wolf is wet +func_70923_f,getShakeAngle,0, +func_70930_a,setRecipes,0, +func_70931_l_,getCustomer,2, +func_70932_a_,setCustomer,2, +func_70933_a,useRecipe,2, +func_70934_b,getRecipes,2, +func_70938_b,setProfession,2, +func_70939_f,setPlaying,2, +func_70940_q,isTrading,2, +func_70941_o,isMating,2, +func_70942_a,generateRandomParticles,0,par1 is the particleName +func_70945_p,isPlaying,2, +func_70946_n,getProfession,2, +func_70947_e,setMating,2, +func_70950_c,addDefaultEquipmentAndRecipies,2,"based on the villagers profession add items, equipment, and recipies adds par1 random items to the list of things that the villager wants to buy. (at most 1 of each wanted type is added)" +func_70965_a,attackEntityFromPart,2, +func_70967_k,setNewTarget,2,Sets a new target for the flight AI. It can be a random coordinate or a nearby player. +func_70969_j,updateDragonEnderCrystal,2,Updates the state of the enderdragon's current endercrystal. +func_70970_a,collideWithEntities,2,Pushes all entities inside the list away from the enderdragon. +func_70971_b,attackEntitiesInList,2,"Attacks all entities inside this list, dealing 5 hearts of damage." +func_70972_a,destroyBlocksInAABB,2,Destroys all blocks that aren't associated with 'The End' inside the given bounding box. +func_70973_b,simplifyAngle,2,Simplifies the value of a number by adding/subtracting 180 to the point that the number is between -180 and 180. +func_70974_a,getMovementOffsets,2,"Returns a double[3] array with movement offsets, used to calculate trailing tail/neck positions. [0] = yaw offset, [1] = y offset, [2] = unused, always 0. Parameters: buffer index offset, partial ticks." +func_70975_a,createEnderPortal,2,Creates the ender portal leading back to the normal world after defeating the enderdragon. +func_70996_bM,shouldHeal,2,Checks if the player's health is not full and not zero. +func_70997_bJ,getBedLocation,2,"Returns the location of the bed the player will respawn at, or null if the player has not slept in a bed." +func_70998_m,interactWith,2, +func_70999_a,wakeUpPlayer,2,Wake up the player if they're sleeping.\n \n@param updateWorldFlag Updates World.allPlayersSleeping on the server\n@param setSpawn Set the (re)spawn point for the player +func_71000_j,addMovementStat,2,"Adds a value to a movement statistic field - like run, walk, swin or climb." +func_71001_a,onItemPickup,2,"Called whenever an item is picked up from walking over it. Args: pickedUpEntity, stackSize" +func_71002_c,displayGUIEnchantment,2, +func_71004_bE,respawnPlayer,0, +func_71005_bN,getInventoryEnderChest,2,Returns the InventoryEnderChest of this player. +func_71007_a,displayGUIChest,2,Displays the GUI for interacting with a chest inventory. Args: chestInventory +func_71008_a,setItemInUse,2,"sets the itemInUse when the use item button is clicked. Args: itemstack, int maxItemUseDuration" +func_71009_b,onCriticalHit,2,Called when the player performs a critical hit on the Entity. Args: entity that was hit critically +func_71010_c,updateItemUse,2,Plays sounds and makes particles for item in use state +func_71011_bu,getItemInUse,0,returns the ItemStack containing the itemInUse +func_71012_a,joinEntityItemWithWorld,2,Joins the passed in entity item with the world. Args: entityItem +func_71015_k,addMountedMovementStat,2,"Adds a value to a mounted movement statistic field - by minecart, boat, or pig." +func_71016_p,sendPlayerAbilities,2,Sends the player's abilities to the server (if there is one). +func_71018_a,sleepInBedAt,2,puts player to sleep on specified bed if possible +func_71019_a,dropPlayerItemWithRandomChoice,2,"Args: itemstack, flag" +func_71020_j,addExhaustion,2,increases exhaustion level by supplied amount +func_71023_q,addExperience,2,Add experience points to player. +func_71024_bL,getFoodStats,2,Returns the player's FoodStats object. +func_71026_bH,isPlayerFullyAsleep,2,Returns whether or not the player is asleep and the screen has fully faded. +func_71027_c,travelToDimension,2,Teleports the entity to another dimension. Params: Dimension number to teleport to +func_71028_bD,destroyCurrentEquippedItem,2,Destroys the currently equipped item from the player's inventory. +func_71029_a,triggerAchievement,2,Will trigger the specified trigger. +func_71030_a,displayGUIMerchant,2, +func_71033_a,setGameType,2,Sets the player's game mode and sends it to them. +func_71034_by,stopUsingItem,2, +func_71036_o,onItemUseFinish,2,"Used for when item use count runs out, ie: eating completed" +func_71037_bA,getScore,2, +func_71038_i,swingItem,2,Swings the item the player is holding. +func_71039_bw,isUsingItem,2,"Checks if the entity is currently using an item (e.g., bow, food, sword) by holding down the useItemButton" +func_71040_bB,dropOneItem,2,Called when player presses the drop item key +func_71041_bz,clearItemInUse,2, +func_71043_e,canEat,2, +func_71044_o,collideWithPlayer,2, +func_71045_bC,getCurrentEquippedItem,2,Returns the currently being used item by the player. +func_71047_c,onEnchantmentCritical,2, +func_71048_c,displayGUIBook,2,Displays the GUI for interacting with a book. +func_71049_a,clonePlayer,2,Copies the values from the given player into this player if boolean par2 is true. Always clones Ender Chest Inventory. +func_71050_bK,xpBarCap,2,"This method returns the cap amount of experience that the experience bar can hold. With each level, the experience cap on the player's experience bar is raised by 10." +func_71051_bG,getBedOrientationInDegrees,0,Returns the orientation of the bed in degrees. +func_71052_bv,getItemInUseCount,0,Returns the item in use count +func_71053_j,closeScreen,2,set current crafting inventory back to the 2x2 square +func_71056_a,verifyRespawnCoordinates,2,Ensure that a block enabling respawning exists at the specified coordinates and find an empty space nearby to spawn. +func_71057_bx,getItemInUseDuration,0,gets the duration for how long the current itemInUse has been in use +func_71058_b,displayGUIWorkbench,2,Displays the crafting GUI for a workbench. +func_71059_n,attackTargetEntityWithCurrentItem,2,Attacks for the player the targeted entity with the currently equipped item. The equipped item has hitEntity called on it. Args: targetEntity +func_71060_bI,getSleepTimer,0, +func_71061_d_,resetHeight,2,sets the players height back to normal after doing things like sleeping and dieing +func_71063_a,setSpawnChunk,2,Defines a spawn coordinate to player spawn. Used by bed after the player sleep on it. +func_71064_a,addStat,2,Adds a value to a statistic field. +func_71065_l,isInBed,2,Checks if the player is currently in a bed +func_71110_a,updateCraftingInventory,2,update the crafting window inventory with the items in the list +func_71111_a,sendSlotContents,2,"Sends the contents of an inventory slot to the client-side Container. This doesn't have to match the actual contents of that slot. Args: Container, slot number, slot contents" +func_71112_a,sendProgressBarUpdate,2,"Sends two ints to the client-side Container. Used for furnace burning time, smelting progress, brewing progress, and enchanting level. Normally the first int identifies which variable to update, and the second contains the new value. Both are truncated to shorts in non-local SMP." +func_71113_k,updateHeldItem,2,updates item held by mouse +func_71114_r,getPlayerIP,2,Gets the player's IP address. Used in /banip. +func_71116_b,addSelfToInternalCraftingInventory,2, +func_71117_bO,getNextWindowId,2,get the next window id to use +func_71118_n,setPlayerHealthUpdated,2,"this function is called when a players inventory is sent to him, lastHealth is updated on any dimension transitions, then reset." +func_71120_a,sendContainerToPlayer,2, +func_71121_q,getServerForPlayer,2, +func_71122_b,handleFalling,2,process player falling based on movement packet +func_71123_m,mountEntityAndWakeUp,2, +func_71124_b,getEquipmentInSlot,2,0: Tool in Hand; 1-4: Armor +func_71127_g,onUpdateEntity,2, +func_71128_l,closeContainer,2,Closes the container the player currently has open. +func_71150_b,setPlayerSPHealth,0,Updates health locally. +func_71151_f,getFOVMultiplier,0,Gets the player's field of view multiplier. (ex. when flying) +func_71152_a,setXPStats,0,"Sets the current XP, total XP, and level number." +func_71153_f,isBlockNormal,0, +func_71165_d,sendChatMessage,0,Sends a chat message from the player. Args: chatMessage +func_71166_b,sendMotionUpdates,0,Send updated motion and position information to the server +func_71187_D,getCommandManager,2, +func_71188_g,setAllowPvp,2, +func_71189_e,setHostname,1, +func_71190_q,updateTimeLightAndEntities,2, +func_71191_d,setBuildLimit,2, +func_71192_d,setUserMessage,2,"Typically ""menu.convertingLevel"", ""menu.loadingLevel"" or others." +func_71193_K,allowSpawnMonsters,2, +func_71194_c,canCreateBonusChest,2, +func_71195_b_,getUserMessage,0, +func_71197_b,startServer,2,Initialises the server and starts it. +func_71198_k,logDebug,1,"If isDebuggingEnabled(), logs the message with a level of INFO." +func_71199_h,isHardcore,2,Defaults to false. +func_71200_ad,serverIsInRunLoop,0, +func_71201_j,logSevere,1,Logs the error message with a level of SEVERE. +func_71203_ab,getConfigurationManager,2, +func_71204_b,setDemo,2,Sets whether this is a demo or not. +func_71205_p,setMOTD,2, +func_71206_a,shareToLAN,2,"On dedicated does nothing. On integrated, sets commandsAllowedForAll, gameType and allows external connections." +func_71207_Z,getBuildLimit,2, +func_71208_b,setServerPort,1, +func_71209_f,getFile,2,Returns a File object from the specified string. +func_71211_k,getServerHostname,1,"""getHostname"" is already taken, but both return the hostname." +func_71213_z,getAllUsernames,2,Returns an array of the usernames of all the connected players. +func_71214_G,getServerOwner,2,Returns the username of the server owner (for integrated servers) +func_71215_F,getServerPort,1,Gets serverPort. +func_71216_a_,outputPercentRemaining,2,Used to display a percent remaining given text and the percentage. +func_71217_p,tick,2,Main function called by run() every loop. +func_71218_a,worldServerForDimension,2,Gets the worldServer by the given dimension. +func_71219_W,isPVPEnabled,2, +func_71220_V,getCanSpawnNPCs,2, +func_71221_J,getWorldName,0, +func_71222_d,initialWorldChunkLoad,2, +func_71223_ag,enableProfiling,2, +func_71224_l,setServerOwner,2,Sets the username of the owner of this server (in the case of an integrated server) +func_71225_e,canStructuresSpawn,2, +func_71228_a,finalTick,2,Called on exit from the main run() loop. +func_71229_d,setOnlineMode,2, +func_71230_b,addServerInfoToCrashReport,2,"Adds the server info, including from theWorldServer, to the crash report." +func_71231_X,isFlightAllowed,2, +func_71233_x,getCurrentPlayerCount,2,Returns the number of players currently on the server. +func_71234_u,getPort,1,"Never used, but ""getServerPort"" is already taken." +func_71235_a,setGameType,2,Sets the game type for all worlds. +func_71236_h,logWarning,2,Logs the message with a level of WARN. +func_71237_c,convertMapIfNeeded,2, +func_71238_n,getDataDirectory,2, +func_71239_B,isDebuggingEnabled,1,"Returns true if debugging is enabled, false otherwise." +func_71240_o,systemExitNow,2,"Directly calls System.exit(0), instantly killing the program." +func_71241_aa,isServerStopped,1, +func_71242_L,isDemo,2,Gets whether this is a demo or not. +func_71243_i,clearCurrentTask,2,Set current task to null and set its percentage to 0. +func_71244_g,logInfo,1,Logs the message with a level of INFO. +func_71245_h,setAllowFlight,2, +func_71246_n,setWorldName,0, +func_71247_a,loadAllWorlds,2, +func_71248_a,getPossibleCompletions,2,"If par2Str begins with /, then it searches for commands, otherwise it returns players." +func_71249_w,getMinecraftVersion,2,Returns the server's Minecraft version as string. +func_71250_E,getKeyPair,2,Gets KeyPair instanced in MinecraftServer. +func_71251_e,setCanSpawnAnimals,2, +func_71252_i,handleRConCommand,1,Handle a command received by an RCon instance +func_71253_a,setKeyPair,2, +func_71254_M,getActiveAnvilConverter,2, +func_71255_r,getAllowNether,2, +func_71256_s,startServerThread,2, +func_71257_f,setCanSpawnNPCs,2, +func_71258_A,getPlugins,1,"Used by RCon's Query in the form of ""MajorServerMod 1.2.3: MyPlugin 1.3; AnotherPlugin 2.1; AndSoForth 1.0""." +func_71259_af,getTickCounter,2, +func_71260_j,stopServer,2,Saves all necessary data as preparation for stopping the server. +func_71261_m,setFolderName,2, +func_71262_S,isDedicatedServer,2, +func_71263_m,initiateShutdown,2,"Sets the serverRunning variable to false, in order to get the server to shut down." +func_71264_H,isSinglePlayer,2, +func_71265_f,getGameType,2, +func_71266_T,isServerInOnlineMode,2, +func_71267_a,saveAllWorlds,2,par1 indicates if a log message should be output. +func_71268_U,getCanSpawnAnimals,2, +func_71270_I,getFolderName,2, +func_71272_O,deleteWorldAndStopServer,2,WARNING : directly calls getActiveAnvilConverter().deleteWorldDirectory(theWorldServer[0].getSaveHandler().getWorldDirectoryName()); +func_71273_Y,getMOTD,2, +func_71274_v,getMotd,1,Returns the server message of the day +func_71275_y,getMaxPlayers,2,Returns the maximum number of players allowed on the server. +func_71276_C,getServer,2,Gets mcServer. +func_71277_t,getHostname,1,Returns the server's hostname. +func_71278_l,isServerRunning,2, +func_71279_ae,getGuiEnabled,2, +func_71326_a,saveProperties,1,Saves all of the server properties to the properties file. +func_71327_a,getIntProperty,1,"Gets an integer property. If it does not exist, set it to the specified value." +func_71328_a,setProperty,1,Saves an Object with the given property name. +func_71329_c,getSettingsFilename,1,Returns the filename where server properties are stored +func_71330_a,getStringProperty,1,"Gets a string property. If it does not exist, set it to the specified value." +func_71331_a,addPendingCommand,1, +func_71332_a,getBooleanProperty,1,"Gets a boolean property. If it does not exist, set it to the specified value." +func_71333_ah,executePendingCommands,1, +func_71344_c,getPublic,0,Returns true if this integrated server is open to LAN +func_71351_a,setServerData,0,Set the current ServerData instance. +func_71352_k,toggleFullscreen,0,Toggles fullscreen mode. +func_71353_a,loadWorld,0,par2Str is displayed on the loading screen to the user unloads the current world first +func_71354_a,setDimensionAndSpawnPlayer,0, +func_71355_q,isDemo,0,Gets whether this is a demo or not. +func_71356_B,isSingleplayer,0,"Returns true if there is only one player playing, and the current server is the integrated one." +func_71357_I,loadScreen,0,Displays a new screen. +func_71359_d,getSaveLoader,0,Returns the save loader that is currently being used +func_71361_d,checkGLError,0,"Checks for an OpenGL error. If there is one, prints the error ID and error string." +func_71363_D,stopIntegratedServer,0, +func_71364_i,setIngameNotInFocus,0,"Resets the player keystate, disables the ingame focus, and ungrabs the mouse cursor." +func_71366_a,displayDebugInfo,0,Parameter appears to be unused\n \n@param elapsedTicksTime The time elapsed for running game tick(s) this iteration; unused in this method +func_71367_a,setServer,0, +func_71369_N,getGLMaximumTextureSize,0,Used in the usage snooper. +func_71370_a,resize,0,Called to resize the current screen. +func_71371_a,launchIntegratedServer,0,"Arguments: World foldername, World ingame name, WorldSettings" +func_71372_G,isFullScreen,0,Returns whether we're in full screen or not. +func_71374_p,debugInfoEntities,0,A String of how many entities are in the world +func_71375_t,isFancyGraphicsEnabled,0, +func_71377_b,displayCrashReport,0,Wrapper around displayCrashReportInternal +func_71378_E,getPlayerUsageSnooper,0,Returns the PlayerUsageSnooper instance. +func_71379_u,isAmbientOcclusionEnabled,0,Returns if ambient occlusion is enabled +func_71381_h,setIngameFocus,0,Will set the focus to ingame if the Minecraft window is the active with focus. Also clears any GUI screen currently displayed +func_71382_s,isGuiEnabled,0, +func_71383_b,updateDebugProfilerName,0,Update debugProfilerName in response to number keys in debug screen +func_71384_a,startGame,0,"Starts the game: initializes the canvas, the title, the settings, etcetera." +func_71385_j,displayInGameMenu,0,Displays the ingame menu +func_71386_F,getSystemTime,0,Gets the system time in milliseconds. +func_71387_A,isIntegratedServerRunning,0, +func_71388_o,getWorldProviderName,0,Gets the name of the world's current chunk provider +func_71389_H,startTimerHackThread,0, +func_71392_a,scaledTessellator,0,Loads Tessellator with a scaled resolution +func_71393_m,debugInfoRenders,0,A String of renderGlobal.getDebugInfoRenders +func_71396_d,addGraphicsAndWorldToCrashReport,0,"adds core server Info (GL version , Texture pack, isModded, type), and the worldInfo to the crash report" +func_71398_f,freeMemory,0, +func_71400_g,shutdown,0,Called when the window is closing. Sets 'running' to false which allows the game loop to exit cleanly. +func_71401_C,getIntegratedServer,0,Returns the currently running integrated server +func_71403_a,loadWorld,0,unloads the current world first +func_71404_a,crashed,0, +func_71405_e,shutdownMinecraftApplet,0,"Shuts down the minecraft applet by stopping the resource downloads, and clearing up GL stuff; called when the application (or web page) is exited." +func_71407_l,runTick,0,Runs the current tick. +func_71408_n,getEntityDebug,0,Gets the information in the F3 menu about how many entities are infront/around you +func_71410_x,getMinecraft,0,Return the singleton Minecraft instance for the game +func_71411_J,runGameLoop,0,Called repeatedly from run() +func_71497_f,getFile,0,Gets the file this crash report is saved into. +func_71498_d,getCauseStackTraceOrString,2,"Gets the stack trace of the Throwable that caused this crash report, or if that fails, the cause .toString()." +func_71499_a,addCrashSectionThrowable,2,Adds a Crashreport section with the given name with the given Throwable +func_71500_a,addCrashSectionCallable,2,Adds a Crashreport section with the given name with the value set to the result of the given Callable; +func_71501_a,getDescription,2,Returns the description of the Crash Report. +func_71502_e,getCompleteReport,2,"Gets the complete report with headers, stack trace, and different sections as a string." +func_71503_h,getWittyComment,2,Gets a random witty comment for inclusion in this CrashReport +func_71504_g,populateEnvironment,2,Populates this crash report with initial information about the running server and operating system / java environment +func_71505_b,getCrashCause,2,Returns the Throwable object that is the cause for the crash and Crash Report. +func_71506_a,getSectionsInStringBuilder,2,Gets the various sections of the crash report into the given StringBuilder +func_71507_a,addCrashSection,2,Adds a Crashreport section with the given name with the given value (convered .toString()) +func_71514_a,getCommandAliases,2, +func_71515_b,processCommand,2, +func_71516_a,addTabCompletionOptions,2,Adds the strings available in this command to the given list of tab completion options. +func_71517_b,getCommandName,2, +func_71518_a,getCommandUsage,2, +func_71519_b,canCommandSenderUseCommand,2,Returns true if the given command sender is allowed to use this command. +func_71521_c,getCommandSenderAsPlayer,2,Returns the given ICommandSender as a EntityPlayer or throw an exception. +func_71523_a,doesStringStartWith,2,Returns true if the given substring is exactly equal to the start of the given string (case insensitive). +func_71526_a,parseInt,2,Parses an int from the given string. +func_71527_a,joinNiceString,2,"Creates a linguistic series joining the input objects together. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark""" +func_71528_a,parseIntWithMin,2,Parses an int from the given sring with a specified minimum. +func_71529_a,setAdminCommander,2,Sets the static IAdminCommander. +func_71530_a,getListOfStringsMatchingLastWord,2,Returns a List of strings (chosen from the given strings) which the last word in the given string array is a beginning-match for. (Tab completion). +func_71531_a,getListOfStringsFromIterableMatchingLastWord,2,Returns a List of strings (chosen from the given string iterable) which the last word in the given string array is a beginning-match for. (Tab completion). +func_71532_a,parseIntBounded,2,Parses an int from the given string within a specified bound. +func_71534_d,getSortedPossibleCommands,2,Returns a sorted list of all possible commands for the given ICommandSender. +func_71535_c,getCommands,2, +func_71536_c,getPlayers,2, +func_71538_c,getListOfPlayerUsernames,2,Returns String array containing all player usernames in the server. +func_71539_b,getGameModeFromCommand,2,Gets the Game Mode specified in the command. +func_71541_a,setGameType,2, +func_71542_c,getAllUsernames,2, +func_71552_a,setTime,2,Set the time in the server object. +func_71553_b,addTime,2,Adds (or removes) time in the server object. +func_71554_c,toggleDownfall,2,Toggle rain and enable thundering. +func_71555_a,getCommands,2,"returns a map of string to commads. All commands are returned, not just ones which someone has permission to use." +func_71556_a,executeCommand,2, +func_71557_a,getPossibleCommands,2,returns all commands that the commandSender can use +func_71558_b,getPossibleCommands,2,"Performs a ""begins with"" string match on each token in par2. Only returns commands that par1 can use." +func_71559_a,dropFirstString,2,creates a new array and sets elements 0..n-2 to be 0..n-1 of the input (n elements) +func_71560_a,registerCommand,2,adds the command and any aliases it has to the internal map of available commands +func_71565_a,filterAllowedCharacters,2,Filter string by only keeping those characters for which isAllowedCharacter() returns true. +func_71566_a,isAllowedCharacter,2, +func_71569_e,getDistanceSquared,2,Returns the squared distance between this coordinates and the coordinates given as argument. +func_71571_b,set,2, +func_71575_a,getCrashReport,2,Gets the CrashReport wrapped by this exception. +func_72314_b,expand,2,"Returns a bounding box expanded by the specified vector (if negative numbers are given it will shrink). Args: x, y, z" +func_72315_c,isVecInXZ,2,Checks if the specified vector is within the XZ dimensions of the bounding box. Args: Vec3D +func_72316_a,calculateXOffset,2,"if instance and the argument bounding boxes overlap in the Y and Z dimensions, calculate the offset between them in the X dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72317_d,offset,2,"Offsets the current bounding box by the specified coordinates. Args: x, y, z" +func_72318_a,isVecInside,2,Returns if the supplied Vec3D is completely inside the bounding box +func_72319_d,isVecInXY,2,Checks if the specified vector is within the XY dimensions of the bounding box. Args: Vec3D +func_72320_b,getAverageEdgeLength,2,Returns the average length of the edges of the bounding box. +func_72321_a,addCoord,2,"Adds the coordinates to the bounding box extending it if the point lies outside the current ranges. Args: x, y, z" +func_72322_c,calculateZOffset,2,"if instance and the argument bounding boxes overlap in the Y and X dimensions, calculate the offset between them in the Z dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72323_b,calculateYOffset,2,"if instance and the argument bounding boxes overlap in the X and Z dimensions, calculate the offset between them in the Y dimension. return var2 if the bounding boxes do not overlap or if var2 is closer to 0 then the calculated offset. Otherwise return the calculated offset." +func_72324_b,setBounds,2,"Sets the bounds of the bounding box. Args: minX, minY, minZ, maxX, maxY, maxZ" +func_72325_c,getOffsetBoundingBox,2,"Returns a bounding box offseted by the specified vector (if negative numbers are given it will shrink). Args: x, y, z" +func_72326_a,intersectsWith,2,Returns whether the given bounding box intersects with this one. Args: axisAlignedBB +func_72327_a,calculateIntercept,2, +func_72328_c,setBB,2,Sets the bounding box to the same bounds as the bounding box passed in. Args: axisAlignedBB +func_72329_c,copy,2,Returns a copy of the bounding box. +func_72330_a,getBoundingBox,2,"Returns a bounding box with the specified bounds. Args: minX, minY, minZ, maxX, maxY, maxZ" +func_72331_e,contract,2,Returns a bounding box that is inset by the specified amounts +func_72333_b,isVecInYZ,2,Checks if the specified vector is within the YZ dimensions of the bounding box. Args: Vec3D +func_72352_l,getMaxPlayers,2,Returns the maximum number of players allowed on the server. +func_72354_b,updateTimeAndWeatherForPlayer,2,Updates the time and weather for the given player to those of the given world +func_72355_a,initializeConnectionToPlayer,2, +func_72356_a,transferPlayerToDimension,2,moves provided player from overworld to nether or vice versa +func_72358_d,serverUpdateMountedMovingPlayer,2,"using player's dimension, update their movement when in a vehicle (e.g. cart, boat)" +func_72362_j,loadWhiteList,2,"Either does nothing, or calls readWhiteList." +func_72363_f,getBannedIPs,2, +func_72364_a,setPlayerManager,2,Sets the NBT manager to the one for the WorldServer given. +func_72365_p,getServerInstance,2, +func_72367_e,playerLoggedOut,2,Called when a player disconnects from the game. Writes player data to disk and removes them from the world. +func_72368_a,recreatePlayerEntity,2,Called on respawn +func_72369_d,getAllUsernames,2,Returns an array of the usernames of all the connected players. +func_72371_a,setWhiteListEnabled,2, +func_72372_a,getEntityViewDistance,2, +func_72373_m,getAvailablePlayerDat,2,Returns an array of usernames for which player.dat exists for. +func_72374_b,onTick,2,self explanitory +func_72377_c,playerLoggedIn,2,Called when a player successfully logs in. Reads player data from disk and inserts the player into the world. +func_72378_q,getHostPlayerData,2,"On integrated servers, returns the host's player data to be written to level.dat." +func_72380_a,readPlayerDataFromFile,2,called during player login. reads the player information from disk. +func_72382_j,getPlayersMatchingAddress,2, +func_72383_n,isWhiteListEnabled,1, +func_72385_f,syncPlayerInventory,2,sends the players inventory to himself +func_72387_b,setCommandsAllowedForAll,0,Sets whether all players are allowed to use commands (cheats) on the server. +func_72389_g,saveAllPlayerData,2,Saves all of the players' current states. +func_72391_b,writePlayerData,2,also stores the NBTTags if this is an intergratedPlayerList +func_72392_r,removeAllPlayers,2,"Kicks everyone with ""Server closed"" as reason." +func_72394_k,getCurrentPlayerCount,2,Returns the number of players currently on the server. +func_72395_o,getViewDistance,2,Gets the View Distance. +func_72417_t,loadOpsList,1, +func_72418_v,readWhiteList,1, +func_72419_u,saveOpsList,1, +func_72421_w,saveWhiteList,1, +func_72429_b,getIntermediateWithXValue,2,"Returns a new vector with x value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72430_b,dotProduct,2, +func_72431_c,crossProduct,0,Returns a new vector with the result of this vector x the specified vector. +func_72432_b,normalize,2,Normalizes the vector to a length of 1 (except if it is the zero vector) +func_72433_c,lengthVector,2,Returns the length of the vector. +func_72434_d,getIntermediateWithZValue,2,"Returns a new vector with z value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72435_c,getIntermediateWithYValue,2,"Returns a new vector with y value equal to the second parameter, along the line between this vector and the passed in vector, or null if not possible." +func_72436_e,squareDistanceTo,2,The square of the Euclidean distance between this and the specified vector. +func_72438_d,distanceTo,2,"Euclidean distance between this and the specified vector, returned as double." +func_72439_b,setComponents,2,"Sets the x,y,z components of the vector as specified." +func_72440_a,rotateAroundX,2,Rotates the vector around the x axis by the specified angle. +func_72441_c,addVector,2,"Adds the specified x,y,z vector components to this vector and returns the resulting vector. Does not change this vector." +func_72442_b,rotateAroundY,2,Rotates the vector around the y axis by the specified angle. +func_72443_a,createVectorHelper,2,"Static method for creating a new Vec3D given the three x,y,z values. This is only called from the other static method which creates and places it in the list." +func_72444_a,subtract,0,Returns a new vector with the result of the specified vector minus this. +func_72445_d,squareDistanceTo,2,"The square of the Euclidean distance between this and the vector of x,y,z components passed in." +func_72446_c,rotateAroundZ,0,Rotates the vector around the z axis by the specified angle. +func_72591_c,getRequestId,1,Returns the request ID provided by the client. +func_72592_a,getRandomChallenge,1,Returns the random challenge number assigned to this auth +func_72593_a,hasExpired,1,"Returns true if the auth's creation timestamp is less than the given time, otherwise false" +func_72594_b,getChallengeValue,1,Returns the auth challenge value +func_72601_a,registerSocket,1,Registers a DatagramSocket with this thread +func_72602_a,startThread,1,Creates a new Thread object from this class and starts running +func_72603_d,getNumberOfPlayers,1,Returns the number of players on the server +func_72604_a,closeSocket,1,Closes the specified DatagramSocket +func_72605_a,closeServerSocket_do,1,Closes the specified ServerSocket +func_72606_c,logWarning,1,Log warning message +func_72607_a,logDebug,1,Log debug message +func_72608_b,closeServerSocket,1,Closes the specified ServerSocket +func_72609_b,logInfo,1,Log information message +func_72610_d,logSevere,1,Log severe error message +func_72611_e,closeAllSockets,1,Closes all of the opened sockets +func_72612_a,closeAllSockets_do,1,Closes all of the opened sockets +func_72613_c,isRunning,1,"Returns true if the Thread is running, false otherwise" +func_72620_a,sendResponsePacket,1,Sends a byte array as a DatagramPacket response to the client who sent the given DatagramPacket +func_72621_a,parseIncomingPacket,1,"Parses an incoming DatagramPacket, returning true if the packet was valid" +func_72622_d,sendAuthChallenge,1,Sends an auth challenge DatagramPacket to the client and adds the client to the queryClients map +func_72623_a,stopWithException,1,Stops the query server and reports the given Exception +func_72624_b,createQueryResponse,1,Creates a query response as a byte array for the specified query DatagramPacket +func_72625_a,getRequestID,1,Returns the request ID provided by the authorized client +func_72626_g,initQuerySystem,1,Initializes the query system by binding it to a port +func_72627_c,verifyClientAuth,1,"Returns true if the client has a valid auth, otherwise false" +func_72628_f,cleanQueryClientsMap,1,Removes all clients whose auth is no longer valid +func_72645_g,cleanClientThreadsMap,1,Cleans up the clientThreads map by removing client Threads that are not running +func_72646_f,initClientThreadList,1, +func_72653_g,closeSocket,1,Closes the client socket +func_72654_a,sendResponse,1,Sends the given response message to the client +func_72655_a,sendMultipacketResponse,1,Splits the response message into individual packets and sends each one +func_72656_f,sendLoginFailedResponse,1,Sends the standard RCon 'authorization failed' response packet +func_72661_a,getBytesAsString,1,Read a null-terminated string from the given byte array +func_72662_b,getRemainingBytesAsLEInt,1,Read 4 bytes from the +func_72663_a,getByteAsHexString,1,Returns a String representation of the byte in hexadecimal format +func_72664_c,getBytesAsBEint,1,Read 4 bytes from the given array in big-endian format and return them as an int +func_72665_b,getBytesAsLEInt,1,Read 4 bytes from the given array in little-endian format and return them as an int +func_72667_a,writeInt,1,Writes the given int to the output stream +func_72668_a,writeShort,1,Writes the given short to the output stream +func_72669_b,reset,1,Resets the byte array output. +func_72670_a,writeByteArray,1,Writes the given byte array to the output stream +func_72671_a,writeString,1,Writes the given String to the output stream +func_72672_a,toByteArray,1,Returns the contents of the output stream as a byte array +func_72683_a,addPlayer,2,Adds an EntityPlayerMP to the PlayerManager and to all player instances within player visibility +func_72684_a,overlaps,2,"Determine if two rectangles centered at the given points overlap for the provided radius. Arguments: x1, z1, x2, z2, radius." +func_72685_d,updateMountedMovingPlayer,2,"update chunks around a player being moved by server logic (e.g. cart, boat)" +func_72686_a,getFurthestViewableBlock,2,Get the furthest viewable block given player's view distance +func_72688_a,getMinecraftServer,2,Returns the MinecraftServer associated with the PlayerManager. +func_72690_a,getPlayerInstance,2,passi n the chunk x and y and a flag as to whether or not the instance should be made if it doesnt exist +func_72691_b,filterChunkLoadQueue,2,Removes all chunks from the given player's chunk load queue that are not in viewing range of the player. +func_72693_b,updatePlayerInstances,2,updates all the player instances that need to be updated +func_72694_a,isPlayerWatchingChunk,2, +func_72695_c,removePlayer,2,Removes an EntityPlayerMP from the PlayerManager. +func_72702_a,playRecord,2,"Plays the specified record. Arg: recordName, x, y, z" +func_72703_a,onEntityCreate,2,"Called on all IWorldAccesses when an entity is created or loaded. On client worlds, starts downloading any necessary textures. On server worlds, adds the entity to the entity tracker." +func_72704_a,playSound,2,"Plays the specified sound. Arg: soundName, x, y, z, volume, pitch" +func_72706_a,playAuxSFX,2,"Plays a pre-canned sound effect along with potentially auxiliary data-driven one-shot behaviour (particles, etc)." +func_72708_a,spawnParticle,2,"Spawns a particle. Arg: particleType, x, y, z, velX, velY, velZ" +func_72709_b,onEntityDestroy,2,"Called on all IWorldAccesses when an entity is unloaded or destroyed. On client worlds, releases any downloaded textures. On server worlds, removes the entity from the entity tracker." +func_72712_a,loadRenderers,0,Loads all the renderers and sets up the basic settings usage +func_72714_a,renderSky,0,Renders the sky with the partial tick time. Args: partialTickTime +func_72716_a,updateRenderers,0,Updates some of the renderers sorted by distance from the player +func_72717_a,drawBlockDamageTexture,0, +func_72718_b,renderClouds,0, +func_72719_a,sortAndRender,0,"Sorts all renderers based on the passed in entity. Args: entityLiving, renderPass, partialTickTime" +func_72720_a,checkOcclusionQueryResult,0, +func_72721_a,hasCloudFog,0,Checks if the given position is to be rendered with cloud fog +func_72722_c,markRenderersForNewPosition,0,Goes through all the renderers setting new positions on them and those that have their position changed are adding to be updated +func_72723_d,getDebugInfoEntities,0,Gets the entities info for use on the Debug screen +func_72724_a,renderSortedRenderers,0,"Renders the sorted renders for the specified render pass. Args: startRenderer, numRenderers, renderPass, partialTickTime" +func_72725_b,markBlocksForUpdate,0,Marks the blocks in the given range for update +func_72726_b,doSpawnParticle,0,"Spawns a particle. Arg: particleType, x, y, z, velX, velY, velZ" +func_72728_f,deleteAllDisplayLists,0,Deletes all display lists +func_72729_a,clipRenderersByFrustum,0,"Checks all renderers that previously weren't in the frustum and 1/16th of those that previously were in the frustum for frustum clipping Args: frustum, partialTickTime" +func_72730_g,renderStars,0, +func_72731_b,drawSelectionBox,0,"Draws the selection box for the player. Args: entityPlayer, rayTraceHit, i, itemStack, partialTickTime" +func_72732_a,setWorldAndLoadRenderers,0,set null to clear +func_72733_a,renderAllRenderLists,0,Render all render lists +func_72734_e,updateClouds,0, +func_72735_c,getDebugInfoRenders,0,Gets the render info for use on the Debug screen +func_72736_c,renderCloudsFancy,0,Renders the 3d fancy clouds +func_72785_a,addEntityToTracker,2,"Args : Entity, trackingRange, updateFrequency, sendVelocityUpdates" +func_72786_a,trackEntity,2, +func_72787_a,removePlayerFromTrackers,2, +func_72788_a,updateTrackedEntities,2, +func_72790_b,untrackEntity,2, +func_72791_a,trackEntity,2, +func_72800_K,getHeight,2,Returns maximum world height. +func_72801_o,getLightBrightness,2,"Returns how bright the block is shown as which is the block's light value looked up in a lookup table (light values aren't linear for brightness). Args: x, y, z" +func_72802_i,getLightBrightnessForSkyBlocks,0,Any Light rendered on a 1.8 Block goes through here +func_72805_g,getBlockMetadata,2,"Returns the block metadata at coords x,y,z" +func_72806_N,extendedLevelsInChunkCache,0,set by !chunk.getAreLevelsEmpty +func_72807_a,getBiomeGenForCoords,2,Gets the biome for a given set of x/z coordinates +func_72810_a,getSkyBlockTypeBrightness,0,Brightness for SkyBlock.Sky is clear white and (through color computing it is assumed) DEPENDENT ON DAYTIME. Brightness for SkyBlock.Block is yellowish and independent. +func_72812_b,getSpecialBlockBrightness,0,is only used on stairs and tilled fields +func_72819_i,getWeightedThunderStrength,2, +func_72820_D,getWorldTime,2, +func_72823_a,setItemData,2,"Assigns the given String id to the given MapDataBase using the MapStorage, removing any existing ones of the same id." +func_72824_f,getCloudColour,0, +func_72825_h,getTopSolidOrLiquidBlock,2,"Finds the highest block on the x, z coordinate that is solid and returns its y coord. Args x, z" +func_72826_c,getCelestialAngle,2,calls calculateCelestialAngle +func_72827_u,getProviderName,0,"Returns the name of the current chunk provider, by calling chunkprovider.makeString()" +func_72828_b,unloadEntities,2,adds entities to the list of unloaded entities +func_72829_c,checkBlockCollision,2,Returns true if there are any blocks in the region constrained by an AxisAlignedBB +func_72830_b,isAABBInMaterial,2,checks if the given AABB is in the material given. Used while swimming. +func_72833_a,getSkyColor,0,Calculates the color for the skybox +func_72834_c,canBlockFreeze,2,"checks to see if a given block is both water, and cold enough to freeze - if the par4 boolean is set, this will only return true if there is a non-water block immediately adjacent to the specified block" +func_72835_b,tick,2,Runs a single tick for the world +func_72838_d,spawnEntityInWorld,2,Called when an entity is spawned in the world. This includes players. +func_72839_b,getEntitiesWithinAABBExcludingEntity,2,"Will get all entities within the specified AABB excluding the one passed into it. Args: entityToExclude, aabb" +func_72841_b,getUniqueDataId,2,Returns an unique new data id from the MapStorage for the given prefix and saves the idCounts map to the 'idcounts' file. +func_72842_a,getBlockDensity,2,"Gets the percentage of real blocks within within a bounding box, along a specified vector." +func_72843_D,setRandomSeed,2,puts the World Random seed to a specific state dependant on the inputs +func_72844_a,getEntityPathToXYZ,2,"Args : entity, x, y, z, range, canPassOpenWoodenDoors, canPassClosedWoodenDoors, avoidsWater, canSwim" +func_72846_b,getClosestVulnerablePlayer,2,"Returns the closest vulnerable player within the given radius, or null if none is found." +func_72847_b,onEntityRemoved,2, +func_72848_b,removeWorldAccess,0,Removes a worldAccess from the worldAccesses object +func_72849_a,getBlockLightValue_do,2,"Gets the light value of a block location. This is the actual function that gets the value and has a bool flag that indicates if its a half step block to get the maximum light value of a direct neighboring block (left, right, forward, back, and up)" +func_72850_v,isBlockFreezableNaturally,2,checks to see if a given block is both water and has at least one immediately adjacent non-water block +func_72853_d,getMoonPhase,0, +func_72854_c,updateAllPlayersSleepingFlag,2,Updates the flag that indicates whether or not all players in the world are sleeping. +func_72855_b,checkNoEntityCollision,2,"Returns true if there are no solid, live entities in the specified AxisAlignedBB" +func_72856_b,getClosestVulnerablePlayerToEntity,2,"Returns the closest vulnerable player to this entity within the given radius, or null if none is found" +func_72857_a,findNearestEntityWithinAABB,2, +func_72860_G,getSaveHandler,2,Returns this world's current save handler +func_72861_E,getSpawnPoint,2,Returns the coordinates of the spawn point +func_72863_F,getChunkProvider,2,gets the world's chunk provider +func_72864_z,isBlockIndirectlyGettingPowered,2,"Used to see if one of the blocks next to you or your block is getting power from a neighboring block. Used by items like TNT or Doors so they don't have redstone going straight into them. Args: x, y, z" +func_72865_a,getPathEntityToEntity,2, +func_72866_a,updateEntityWithOptionalForce,2,"Will update the entity in the world if the chunk the entity is in is currently loaded or its forced to update. Args: entity, forceUpdate" +func_72867_j,getRainStrength,2,Returns rain strength. +func_72868_a,addLoadedEntities,2,"adds entities to the loaded entities list, and loads thier skins." +func_72869_a,spawnParticle,2,Spawns a particle. +func_72870_g,updateEntity,2,Will update the entity in the world if the chunk the entity is in is currently loaded. Args: entity +func_72872_a,getEntitiesWithinAABB,2,"Returns all entities of the specified class type which intersect with the AABB. Args: entityClass, aabb" +func_72873_a,doChunksNearChunkExist,2,Checks if any of the chunks within distance (argument 4) blocks of the given block exist +func_72874_g,getPrecipitationHeight,2,Gets the height to which rain/snow will fall. Calculates it if not already stored. +func_72875_a,isMaterialInBB,2,Returns true if the given bounding box contains the given material +func_72876_a,createExplosion,2,"Creates an explosion. Args: entity, x, y, z, strength" +func_72877_b,setWorldTime,2,Sets the world time. +func_72878_l,getIndirectPowerLevelTo,2,"Gets the power level from a certain block face. Args: x, y, z, direction" +func_72879_k,isBlockProvidingPowerTo,2,"Is this block powering in the specified direction Args: x, y, z, direction" +func_72880_h,getStarBrightness,0,How bright are stars in the sky +func_72882_A,sendQuittingDisconnectingPacket,0,"If on MP, sends a quitting packet." +func_72883_k,getFullBlockLightValue,2,gets the block's light value - without the _do function's checks. +func_72884_u,isBlockFreezable,2,checks to see if a given block is both water and is cold enough to freeze +func_72885_a,newExplosion,2,returns a new explosion. Does initiation (at time of writing Explosion is not finished) +func_72886_a,extinguishFire,2,Extinguish the fire on the given side of the block at the given coordinates. +func_72889_a,playAuxSFXAtEntity,2,See description for playAuxSFX. +func_72890_a,getClosestPlayerToEntity,2,"Gets the closest player to the entity within the specified distance (if distance is less than 0 then ignored). Args: entity, dist" +func_72891_a,setAllowedSpawnTypes,2,first boolean for hostile mobs and second for peaceful mobs +func_72894_k,setRainStrength,0,Sets the strength of the rain. +func_72896_J,isRaining,2,Returns true if the current rain strength is greater than 0.2 +func_72897_h,joinEntityInSurroundings,0,spwans an entity and loads surrounding chunks +func_72899_e,blockExists,2,"Returns whether a block exists at world coordinates x, y, z" +func_72900_e,removeEntity,2,Schedule the entity for removal during the next tick. Marks the entity dead in anticipation. +func_72901_a,rayTraceBlocks,2, +func_72903_x,setActivePlayerChunksAndCheckLight,2, +func_72904_c,checkChunksExist,2,"Checks between a min and max all the chunks inbetween actually exist. Args: minX, minY, minZ, maxX, maxY, maxZ" +func_72905_C,getSeed,2,gets the random world seed +func_72906_B,checkSessionLock,2,Checks whether the session lock file was modified by another process +func_72907_a,countEntities,2,Counts how many entities of an entity class exist in the world. Args: entityClass +func_72908_a,playSoundEffect,2,"Play a sound effect. Many many parameters for this function. Not sure what they do, but a classic call is : (double)i + 0.5D, (double)j + 0.5D, (double)k + 0.5D, 'random.door_open', 1.0F, world.rand.nextFloat() * 0.1F + 0.9F with i,j,k position of the block.\n \n@param soundName Name of sound (example: random.orb)\n@param pitch Example: world.rand.nextFloat() * 0.1F + 0.9F" +func_72910_y,getLoadedEntityList,0,Accessor for world Loaded Entity List +func_72911_I,isThundering,2,Returns true if the current thunder strength (weighted with the rain strength) is greater than 0.9 +func_72912_H,getWorldInfo,2,Returns the world's WorldInfo object +func_72914_a,addWorldInfoToCrashReport,2,Adds some basic stats of the world to the given crash report. +func_72915_b,setLightValue,2,"Sets the light value either into the sky map or block map depending on if enumSkyBlock is set to sky or block. Args: enumSkyBlock, x, y, z, lightValue" +func_72916_c,chunkExists,2,"Returns whether a chunk exists at chunk coordinates x, y" +func_72917_a,checkNoEntityCollision,2,"Returns true if there are no solid, live entities in the specified AxisAlignedBB, excluding the given entity" +func_72918_a,handleMaterialAcceleration,2,handles the acceleration of an object whilst in water. Not sure if it is used elsewhere. +func_72919_O,getHorizon,0,Returns horizon height for use in rendering the sky. +func_72920_a,getPendingBlockUpdates,2, +func_72921_c,setBlockMetadataWithNotify,2,"Sets the blocks metadata and if set will then notify blocks that this block changed, depending on the flag. Args: x, y, z, metadata, flag. See setBlock for flag description" +func_72923_a,onEntityAdded,2, +func_72924_a,getPlayerEntityByName,2,Find a player by name in this world. +func_72925_a,getSkyBlockTypeBrightness,0,Brightness for SkyBlock.Sky is clear white and (through color computing it is assumed) DEPENDENT ON DAYTIME. Brightness for SkyBlock.Block is yellowish and independent. +func_72926_e,playAuxSFX,2,"Plays a sound or particle effect. Parameters: Effect ID, X, Y, Z, Data. For a list of ids and data, see http://wiki.vg/Protocol#Effects" +func_72929_e,getCelestialAngleRadians,2,Return getCelestialAngle()*2*PI +func_72933_a,rayTraceBlocks,2,"ray traces all blocks, including non-collideable ones" +func_72934_a,playRecord,2,Plays a record at the specified coordinates of the specified name. +func_72935_r,isDaytime,2,Checks whether its daytime by seeing if the light subtracted from the skylight is less than 4 +func_72937_j,canBlockSeeTheSky,2,Checks if the specified block is able to see the sky +func_72938_d,getChunkFromBlockCoords,2,"Returns a chunk looked up by block coordinates. Args: x, z" +func_72939_s,updateEntities,2,Updates (and cleans up) entities and tile entities +func_72940_L,getActualHeight,2,Returns current world height. +func_72942_c,addWeatherEffect,2,adds a lightning bolt to the list of lightning bolts in this world. +func_72943_a,loadItemData,2,"Loads an existing MapDataBase corresponding to the given String id from disk using the MapStorage, instantiating the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid" +func_72945_a,getCollidingBoundingBoxes,2,"Returns a list of bounding boxes that collide with aabb excluding the passed in entity's collision. Args: entity, aabb" +func_72947_a,calculateInitialWeather,2,Called from World constructor to set rainingStrength and thunderingStrength +func_72948_g,getFogColor,0,Returns vector(ish) with R/G/B for fog +func_72950_A,setSpawnLocation,2, +func_72951_B,isRainingAt,2,Checks to see if there is currently rain hitting this coordinate +func_72953_d,isAnyLiquid,2,Returns if any of the blocks within the aabb are liquids. Args: aabb +func_72954_a,addWorldAccess,2,Adds a IWorldAccess to the list of worldAccesses +func_72955_a,tickUpdates,2,Runs through the list of updates to run and ticks them +func_72956_a,playSoundAtEntity,2,"Plays a sound at the entity's position. Args: entity, sound, volume (relative to 1.0), and frequency (or pitch, also relative to 1.0)." +func_72957_l,getBlockLightValue,2,Gets the light value of a block location +func_72958_C,isBlockHighHumidity,2,"Checks to see if the biome rainfall values for a given x,y,z coordinate set are extremely high" +func_72959_q,getWorldChunkManager,2, +func_72960_a,setEntityState,2,sends a Packet 38 (Entity Status) to all tracked players of that entity +func_72962_a,canMineBlock,2,Called when checking if a certain block can be mined or not. The 'spawn safe zone' check is located here. +func_72963_a,initialize,2, +func_72964_e,getChunkFromChunkCoords,2,"Returns back a chunk looked up by chunk coordinates Args: x, y" +func_72966_v,calculateInitialSkylight,2,Called on construction of the World class to setup the initial skylight values +func_72967_a,calculateSkylightSubtracted,2,Returns the amount of skylight subtracted for the current time +func_72970_h,createChunkProvider,2,Creates the chunk provider for this world. Called in the constructor. Retrieves provider from worldProvider? +func_72971_b,getSunBrightness,0,"Returns the sun brightness - checks time of day, rain and thunder" +func_72972_b,getSavedLightValue,2,Returns saved light value without taking into account the time of day. Either looks in the sky light map or block light map based on the enumSkyBlock arg. +func_72973_f,removePlayerEntityDangerously,2,Do NOT use this method to remove normal entities- use normal removeEntity +func_72974_f,setSpawnLocation,0,"Sets a new spawn location by finding an uncovered block at a random (x,z) location in the chunk." +func_72975_g,markBlocksDirtyVertical,2,marks a vertical line of blocks as dirty +func_72976_f,getHeightValue,2,"Returns the y coordinate with a block in it at this x, z coordinate" +func_72977_a,getClosestPlayer,2,"Gets the closest player to the point within the specified distance (distance can be set to less than 0 to not limit the distance). Args: x, y, z, dist" +func_72979_l,updateWeather,2,Updates all weather states. +func_72980_b,playSound,2,"par8 is loudness, all pars passed to minecraftInstance.sndManager.playSound\n \n@param distanceDelay If true, delays the sound 20 ticks (1 second) per 40 blocks after 10 blocks minimum" +func_72981_t,getDebugLoadedEntities,0,This string is 'All: (number of loaded entities)' Viewable by press ing F3 +func_73022_a,removeAllEntities,0,also releases skins. +func_73025_a,doPreChunk,0, +func_73027_a,addEntityToWorld,0,Add an ID to Entity mapping to entityHashSet +func_73028_b,removeEntityFromWorld,0, +func_73029_E,doVoidFogParticles,0, +func_73031_a,invalidateBlockReceiveRegion,0,"Invalidates an AABB region of blocks from the receive queue, in the event that the block has been modified client-side in the intervening 80 receive ticks." +func_73039_n,getEntityTracker,2,Gets the EntityTracker +func_73040_p,getPlayerManager,2, +func_73041_k,flush,2,Syncs all changes to disk and wait for completion. +func_73042_a,saveLevel,2,Saves the chunks to disk. +func_73044_a,saveAllChunks,2,Saves all chunks to disk while updating progress bar. +func_73045_a,getEntityByID,2,"Returns the Entity with the given ID, or null if it doesn't exist in this World." +func_73047_i,createBonusChest,2,Creates the bonus chest in the world. +func_73051_P,resetRainAndThunder,2, +func_73052_b,createSpawnPosition,2,"creates a spawn position at random within 256 blocks of 0,0" +func_73053_d,wakeAllPlayers,2, +func_73054_j,getEntrancePortalLocation,2,Gets the hard-coded portal location to use when entering this dimension. +func_73056_e,areAllPlayersAsleep,2, +func_73057_a,spawnRandomCreature,2,only spawns creatures allowed by the chunkProvider +func_73073_c,cancelDestroyingBlock,2,note: this ignores the pars passed in and continues to destroy the onClickedBlock +func_73074_a,onBlockClicked,2,"if not creative, it calls destroyBlockInWorldPartially untill the block is broken first. par4 is the specific side. tryHarvestBlock can also be the result of this call" +func_73075_a,updateBlockRemoving,2, +func_73076_a,setGameType,2, +func_73077_b,initializeGameType,2,if the gameType is currently NOT_SET then change it to par1 +func_73078_a,activateBlockOrUseItem,2,"Activate the clicked on block, otherwise use the held item. Args: player, world, itemStack, x, y, z, side, xOffset, yOffset, zOffset" +func_73079_d,removeBlock,2,Removes a block and triggers the appropriate events +func_73080_a,setWorld,2,Sets the world instance. +func_73081_b,getGameType,2, +func_73082_a,blockRemoving,2, +func_73083_d,isCreative,2,Get if we are in creative game mode. +func_73084_b,tryHarvestBlock,2,Attempts to harvest a block at the given coordinate +func_73085_a,tryUseItem,2,Attempts to right-click use an item by the given EntityPlayer in the given World +func_73101_e,sendDemoReminder,2,Sends a message to the player reminding them that this is the demo version +func_73106_e,getPartialBlockDamage,0, +func_73107_a,setPartialBlockDamage,0,"inserts damage value into this partially destroyed Block. -1 causes client renderer to delete it, otherwise ranges from 1 to 10" +func_73108_d,getPartialBlockZ,0, +func_73109_c,getPartialBlockY,0, +func_73110_b,getPartialBlockX,0, +func_73117_b,updatePlayerEntity,2, +func_73118_a,removeFromTrackedPlayers,2, +func_73119_a,sendDestroyEntityPacketToTrackedPlayers,2, +func_73121_d,isPlayerWatchingThisChunk,2, +func_73122_a,updatePlayerList,2, +func_73123_c,removeTrackedPlayerSymmetric,2,Remove a tracked player from our list and tell the tracked player to destroy us from their world. +func_73125_b,updatePlayerEntities,2, +func_73148_d,makeString,2,Converts the instance data to a readable string. +func_73149_a,chunkExists,2,"Checks to see if a chunk exists at x, y" +func_73151_a,saveChunks,2,"Two modes of operation: if passed true, save all Chunks in one go. If passed false, save up to two chunks. Return true if all chunks have been saved." +func_73152_e,getLoadedChunkCount,2, +func_73153_a,populate,2,Populates chunk with ores etc etc +func_73154_d,provideChunk,2,"Will return back a chunk, if it doesn't exist and its not a MP client it will generates all the blocks for the specified chunk from the map seed and chunk seed" +func_73155_a,getPossibleCreatures,2,Returns a list of creatures of the specified type that can spawn at the given location. +func_73156_b,unloadQueuedChunks,2,Unloads chunks that are marked to be unloaded. This is not guaranteed to unload every such chunk. +func_73157_c,canSave,2,Returns if the IChunkProvider supports saving. +func_73158_c,loadChunk,2,loads or generates the chunk at the chunk location specified +func_73164_a,initializeNoiseField,2,"generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array, the position, and the size." +func_73187_a,initializeNoiseField,2,"generates a subset of the level's terrain data. Takes 7 arguments: the [empty] noise array, the position, and the size." +func_73234_b,unloadChunk,0,Unload chunk from ChunkProviderClient's hashmap. Called in response to a Packet50PreChunk with its mode field set to false +func_73239_e,loadChunkFromFile,2, +func_73240_a,unloadAllChunks,2,"marks all chunks for unload, ignoring those near the spawn" +func_73241_b,dropChunk,2, +func_73242_b,saveChunkData,2, +func_73243_a,saveChunkExtraData,2, +func_73252_b,removePlayer,2, +func_73254_a,onUpdate,2, +func_73255_a,addPlayer,2, +func_73660_a,update,2,Updates the JList with a new model. +func_73665_c,getPropertiesFile,1,Returns this PropertyManager's file object used for property saving. +func_73666_a,generateNewProperties,1,Generates a new properties file. +func_73667_a,setProperty,1,Saves an Object with the given property name. +func_73668_b,saveProperties,1,Writes the properties to the properties file. +func_73669_a,getIntProperty,1,"Gets an integer property. If it does not exist, set it to the specified value." +func_73670_a,getBooleanProperty,1,"Gets a boolean property. If it does not exist, set it to the specified value." +func_73671_a,getStringProperty,1,Returns a string property. If the property doesn't exist the default is returned. +func_73680_d,getBanEndDate,2, +func_73682_e,hasBanExpired,2, +func_73686_f,getBanReason,2, +func_73718_a,setLoadingProgress,2,Updates the progress bar on the loading screen to the specified amount. Args: loadProgress +func_73719_c,displayLoadingString,2,Displays a string on the loading screen supposed to indicate what is being done currently. +func_73720_a,displaySavingString,2,Shows the 'Saving level' string. +func_73721_b,resetProgressAndMessage,0,"this string, followed by ""working..."" and then the ""% complete"" are the 3 lines shown. This resets progress to 0, and the WorkingString to ""working...""." +func_73728_b,drawVerticalLine,0,"Draw a 1 pixel wide vertical line. Args : x, y1, y2, color" +func_73729_b,drawTexturedModalRect,0,"Draws a textured rectangle at the stored z-value. Args: x, y, u, v, width, height" +func_73730_a,drawHorizontalLine,0,"Draw a 1 pixel wide horizontal line. Args: x1, x2, y, color" +func_73731_b,drawString,0,"Renders the specified text to the screen. Args : renderer, string, x, y, color" +func_73732_a,drawCenteredString,0,"Renders the specified text to the screen, center-aligned. Args : renderer, string, x, y, color" +func_73733_a,drawGradientRect,0,"Draws a rectangle with a vertical gradient between the specified colors (ARGB format). Args : x1, y1, x2, y2, topColor, bottomColor" +func_73734_a,drawRect,0,"Draws a solid color rectangle with the specified coordinates and color (ARGB format). Args: x1, y1, x2, y2, color" +func_73828_d,renderBossHealth,0,Renders dragon's (boss) health on the HUD +func_73829_a,renderVignette,0,"Renders the vignette. Args: vignetteBrightness, width, height" +func_73830_a,renderGameOverlay,0,"Render the ingame overlay with quick icon bar, ..." +func_73831_a,updateTick,0,The update tick for the ingame UI +func_73832_a,renderInventorySlot,0,"Renders the specified item of the inventory slot at the specified location. Args: slot, x, y, partialTick" +func_73833_a,setRecordPlayingMessage,0, +func_73834_c,getUpdateCounter,0, +func_73836_a,renderPumpkinBlur,0, +func_73863_a,drawScreen,0,"Draws the screen and all the components in it. Args : mouseX, mouseY, renderPartialTicks" +func_73864_a,mouseClicked,0,"Called when the mouse is clicked. Args : mouseX, mouseY, clickedButton" +func_73866_w_,initGui,0,Adds the buttons (and other controls) to the screen in question. +func_73868_f,doesGuiPauseGame,0,Returns true if this GUI should pause the game when it is displayed in single-player +func_73869_a,keyTyped,0,"Fired when a key is typed (except F11 who toggle full screen). This is the equivalent of KeyListener.keyTyped(KeyEvent e). Args : character (character on the key), keyCode (lwjgl Keyboard key code)" +func_73876_c,updateScreen,0,Called from the main game loop to update the screen. +func_73878_a,confirmClicked,0, +func_73968_a,rotateAndBlurSkybox,0,Rotate and blurs the skybox view in the main menu +func_73969_a,addSingleplayerMultiplayerButtons,0,Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game. +func_73970_b,drawPanorama,0,Draws the main menu panorama +func_73971_c,renderSkybox,0,Renders the skybox in the main menu +func_73972_b,addDemoButtons,0,Adds Demo buttons on Main Menu for players who are playing Demo. +func_74275_a,updateTimer,0,Updates all fields of the Timer using the current time +func_74290_a,getTimestampedPNGFileForDirectory,0,"Creates a unique PNG file in the given directory named by a timestamp. Handles cases where the timestamp alone is not enough to create a uniquely named file, though it still might suffer from an unlikely race condition where the filename was unique when this method was called, but another process or thread created a file at the same path immediately after this method returned." +func_74296_a,getOptionFloatValue,0, +func_74297_c,getKeyBinding,0,Gets a key binding. +func_74298_c,getKeyDisplayString,0,Represents a key or mouse button as a string. Args: key +func_74299_a,getTranslation,0,"Returns the translation of the given index in the given String array. If the index is smaller than 0 or greater than/equal to the length of the String array, it is changed to 0." +func_74300_a,loadOptions,0,Loads the options from the options file. It appears that this has replaced the previous 'loadOptions' +func_74303_b,saveOptions,0,Saves the options to the options file. +func_74304_a,setOptionFloatValue,0,"If the specified option is controlled by a slider (float value), this will set the float value." +func_74305_a,parseFloat,0,Parses a string into a float. +func_74306_a,setOptionValue,0,"For non-float options. Toggles the option on/off, or cycles through the list i.e. render distances." +func_74308_b,getOptionOrdinalValue,0, +func_74309_c,shouldRenderClouds,0,Should render clouds +func_74371_a,checkARBOcclusion,0,Checks if we support OpenGL occlusion. +func_74372_a,grabMouseCursor,0,Grabs the mouse cursor it doesn't move and isn't seen. +func_74373_b,ungrabMouseCursor,0,Ungrabs the mouse cursor so it can be moved and set it to the center of the screen +func_74374_c,mouseXYChange,0, +func_74378_d,getEnumString,0, +func_74379_a,getEnumOptions,0, +func_74380_a,getEnumFloat,0, +func_74381_c,returnEnumOrdinal,0, +func_74382_b,getEnumBoolean,0, +func_74428_b,processReceivedPackets,2,Checks timeouts and processes all packets received +func_74430_c,getRemoteAddress,2,Returns the socket address of the remote side. Server-only. +func_74505_d,unpressKey,0, +func_74506_a,unPressAllKeys,0, +func_74507_a,onTick,0, +func_74508_b,resetKeyBindingArrayAndHash,0, +func_74510_a,setKeyBindState,0, +func_74517_a,setColorBuffer,0,Update and return colorBuffer with the RGBA values passed as arguments +func_74518_a,disableStandardItemLighting,0,Disables the OpenGL lighting properties enabled by enableStandardItemLighting +func_74519_b,enableStandardItemLighting,0,Sets the OpenGL lighting properties to the values used when rendering blocks as items +func_74520_c,enableGUIStandardItemLighting,0,Sets OpenGL lighting for rendering blocks as items inside GUI screens (such as containers). +func_74521_a,setColorBuffer,0,Update and return colorBuffer with the RGBA values passed as arguments +func_74523_b,deleteDisplayLists,0, +func_74524_c,createDirectByteBuffer,0,Creates and returns a direct byte buffer with the specified capacity. Applies native ordering to speed up access. +func_74525_a,deleteTexturesAndDisplayLists,0,Deletes all textures and display lists. Called when Minecraft is shutdown to free up resources. +func_74526_a,generateDisplayLists,0,Generates the specified number of display lists and returns the first index. +func_74527_f,createDirectIntBuffer,0,Creates and returns a direct int buffer with the specified capacity. Applies native ordering to speed up access. +func_74529_h,createDirectFloatBuffer,0,Creates and returns a direct float buffer with the specified capacity. Applies native ordering to speed up access. +func_74535_a,formatString,0,Formats the strings based on 'IStatStringFormat' interface. +func_74539_c,getChatLineID,0, +func_74540_b,getUpdatedCounter,0, +func_74583_a,updateRenderInfo,0,Updates the current render info and camera location based on entity look angles and 1st/3rd person view mode +func_74585_b,projectViewFromEntity,0,Returns a vector representing the projection along the given entity's view for the given distance +func_74732_a,getId,2,Gets the type byte for the tag. +func_74734_a,write,2,"Write the actual data contents of the tag, implemented in NBT extension classes" +func_74737_b,copy,2,Creates a clone of the tag. +func_74742_a,appendTag,2,Adds the provided tag to the end of the list. There is no check to verify this tag is of the same type as any previous tag. +func_74744_a,removeTag,0,Removes a tag at the given index. +func_74745_c,tagCount,2,Returns the number of tags in the list. +func_74757_a,setBoolean,2,"Stores the given boolean value as a NBTTagByte, storing 1 for true and 0 for false, using the given string key." +func_74759_k,getIntArray,2,"Retrieves an int array using the specified key, or a zero-length array if no such key was stored." +func_74760_g,getFloat,2,"Retrieves a float value using the specified key, or 0 if no such key was stored." +func_74762_e,getInteger,2,"Retrieves an integer value using the specified key, or 0 if no such key was stored." +func_74763_f,getLong,2,"Retrieves a long value using the specified key, or 0 if no such key was stored." +func_74764_b,hasKey,2,Returns whether the given string has been previously stored as a key in the map. +func_74765_d,getShort,2,"Retrieves a short value using the specified key, or 0 if no such key was stored." +func_74767_n,getBoolean,2,"Retrieves a boolean value using the specified key, or false if no such key was stored. This uses the getByte method." +func_74768_a,setInteger,2,Stores a new NBTTagInt with the given integer value into the map with the given string key. +func_74769_h,getDouble,2,"Retrieves a double value using the specified key, or 0 if no such key was stored." +func_74770_j,getByteArray,2,"Retrieves a byte array using the specified key, or a zero-length array if no such key was stored." +func_74771_c,getByte,2,"Retrieves a byte value using the specified key, or 0 if no such key was stored." +func_74772_a,setLong,2,Stores a new NBTTagLong with the given long value into the map with the given string key. +func_74773_a,setByteArray,2,Stores a new NBTTagByteArray with the given array as data into the map with the given string key. +func_74774_a,setByte,2,Stores a new NBTTagByte with the given byte value into the map with the given string key. +func_74775_l,getCompoundTag,2,"Retrieves a NBTTagCompound subtag matching the specified key, or a new empty NBTTagCompound if no such key was stored." +func_74776_a,setFloat,2,Stores a new NBTTagFloat with the given float value into the map with the given string key. +func_74777_a,setShort,2,Stores a new NBTTagShort with the given short value into the map with the given string key. +func_74778_a,setString,2,Stores a new NBTTagString with the given string value into the map with the given string key. +func_74779_i,getString,2,"Retrieves a string value using the specified key, or an empty string if no such key was stored." +func_74780_a,setDouble,2,Stores a new NBTTagDouble with the given double value into the map with the given string key. +func_74781_a,getTag,2,gets a generic tag with the specified name +func_74782_a,setTag,2,Stores the given tag into the map with the given string key. This is mostly used to store tag lists. +func_74783_a,setIntArray,2,Stores a new NBTTagIntArray with the given array as data into the map with the given string key. +func_74793_a,safeWrite,0, +func_74794_a,read,2,Reads from a CompressedStream. +func_74795_b,write,0, +func_74796_a,readCompressed,2,Load the gzipped compound from the inputstream. +func_74797_a,read,0, +func_74798_a,compress,2, +func_74799_a,writeCompressed,2,"Write the compound, gzipped, to the outputstream." +func_74800_a,write,2, +func_74803_a,translateKeyFormat,2,Translate a key to current language applying String.format() +func_74805_b,translateKey,2,Translate a key to current language. +func_74808_a,getInstance,2,Return the StringTranslate singleton instance +func_74837_a,translateToLocalFormatted,2,Translates a Stat name with format args +func_74838_a,translateToLocal,2,Translates a Stat name +func_74844_a,getErrorOjbects,2, +func_74860_a,isLiquidInStructureBoundingBox,2,checks the entire StructureBoundingBox for Liquids +func_74861_a,buildComponent,2,"Initiates construction of the Structure Component picked, at the current Location of StructGen" +func_74862_a,getYWithOffset,2, +func_74865_a,getXWithOffset,2, +func_74869_a,generateStructureDispenserContents,2,Used to generate dispenser contents for structures. ex: Jungle Temples. +func_74871_b,clearCurrentPositionBlocksUpwards,2,Deletes all continuous blocks from selected position upwards. Stops at hitting air. +func_74873_b,getZWithOffset,2, +func_74874_b,getBoundingBox,2, +func_74875_a,addComponentParts,2,"second Part of Structure generating, this for example places Spiderwebs, Mob Spawners, it closes Mineshafts at the end, it adds Fences..." +func_74877_c,getComponentType,2,Returns the component type ID of this component. +func_74878_a,fillWithAir,2,"arguments: (World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ)" +func_74879_a,generateStructureChestContents,2,"Used to generate chests with items in it. ex: Temple Chests, Village Blacksmith Chests, Mineshaft Chests." +func_74881_a,placeDoorAtCurrentPosition,2, +func_74882_a,fillWithRandomizedBlocks,2,"arguments: World worldObj, StructureBoundingBox structBB, int minX, int minY, int minZ, int maxX, int maxY, int maxZ, boolean alwaysreplace, Random rand, StructurePieceBlockSelector blockselector" +func_74883_a,findIntersecting,2,Discover if bounding box can fit within the current bounding box object. +func_74888_b,getVillagerType,2,"Returns the villager type to spawn in this component, based on the number of villagers already spawned." +func_74889_b,getAverageGroundLevel,2,Discover the y coordinate that will serve as the ground level of the supplied BoundingBox. (A median of all the levels in the BB's horizontal rectangle). +func_74891_a,getNextComponentNN,2,"Gets the next village component, with the bounding box shifted -1 in the X and Z direction." +func_74893_a,spawnVillagers,2,"Spawns a number of villagers in this component. Parameters: world, component bounding box, x offset, y offset, z offset, number of villagers" +func_74894_b,getNextComponentPP,2,"Gets the next village component, with the bounding box shifted +1 in the X and Z direction." +func_74895_a,canVillageGoDeeper,2, +func_74925_d,getWorldChunkManager,2, +func_74950_a,findValidPlacement,2,Trys to find a valid place to put this component. +func_74951_a,findValidPlacement,2, +func_74954_a,findValidPlacement,2, +func_74959_a,getNextComponent,2, +func_74960_a,getTotalWeight,2, +func_74961_b,getNextComponentX,2,Gets the next component in the +/- X direction +func_74962_a,getNextComponent,2,Finds a random component to tack on to the bridge. Or builds the end. +func_74963_a,getNextComponentNormal,2,Gets the next component in any cardinal direction +func_74964_a,isAboveGround,2,Checks if the bounding box's minY is > 10 +func_74965_c,getNextComponentZ,2,Gets the next component in the +/- Z direction +func_74966_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74973_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74974_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74975_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74977_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74978_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74979_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74980_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74981_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74982_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74983_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74984_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74985_a,createValidComponent,2,Creates and returns a new component piece. Or null if it could not find enough room to place it. +func_74986_a,getNextComponentNormal,2,Gets the next component in any cardinal direction +func_74987_c,getNextComponentZ,2,Gets the next component in the +/- Z direction +func_74988_a,getRandomDoor,2, +func_74989_b,getNextComponentX,2,Gets the next component in the +/- X direction +func_74990_a,placeDoor,2,builds a door of the enumerated types (empty opening is a door) +func_74991_a,canStrongholdGoDeeper,2,returns false if the Structure Bounding Box goes below 10 +func_74994_a,findValidPlacement,2, +func_75000_a,findValidPlacement,2, +func_75004_a,findValidPlacement,2, +func_75006_a,findValidPlacement,2, +func_75010_a,findValidPlacement,2, +func_75012_a,findValidPlacement,2, +func_75016_a,findValidPlacement,2, +func_75018_a,findValidPlacement,2, +func_75022_a,getStrongholdStairsComponent,2,"performs some checks, then gives out a fresh Stairs component" +func_75028_a,findValidPlacement,2, +func_75047_a,canSpawnStructureAtCoords,2, +func_75048_a,hasStructureAt,2,Returns true if the structure generator has generated a structure located at the given position tuple. +func_75049_b,getStructureStart,2, +func_75051_a,generateStructuresInChunk,2,Generates structures in specified chunk next to existing structures. Does *not* generate StructureStarts. +func_75052_o_,getCoordList,2,"Returns a list of other locations at which the structure generation has been run, or null if not relevant to this structure generator." +func_75059_a,getSpawnList,2, +func_75062_a,selectBlocks,2,picks Block Ids and Metadata (Silverfish) +func_75064_b,getSelectedBlockMetaData,2, +func_75067_a,markAvailableHeight,2,"offsets the structure Bounding Boxes up to a certain height, typically 63 - 10" +func_75068_a,generateStructure,2,Keeps iterating Structure Pieces and spawning them until the checks tell it to stop +func_75069_d,isSizeableStructure,2,"currently only defined for Villages, returns true if Village has more than 2 non-road components" +func_75070_a,setRandomHeight,2, +func_75071_a,getBoundingBox,2, +func_75072_c,updateBoundingBox,2,Calculates total bounding box based on components' bounding boxes and saves it to boundingBox +func_75073_b,getComponents,2, +func_75077_d,getNextVillageStructureComponent,2,"attempts to find a next Structure Component to be spawned, private Village function" +func_75080_e,getNextComponentVillagePath,2, +func_75081_c,getNextVillageComponent,2,attempts to find a next Village Component to be spawned +func_75084_a,getStructureVillageWeightedPieceList,2, +func_75085_a,canSpawnMoreVillagePiecesOfType,2, +func_75086_a,canSpawnMoreVillagePieces,2, +func_75091_a,writeCapabilitiesToNBT,2, +func_75092_a,setFlySpeed,0, +func_75093_a,getFlySpeed,2, +func_75094_b,getWalkSpeed,2, +func_75095_b,readCapabilitiesFromNBT,2, +func_75112_a,readNBT,2,Reads the food data for the player. +func_75113_a,addExhaustion,2,adds input to foodExhaustionLevel to a max of 40 +func_75114_a,setFoodLevel,0, +func_75115_e,getSaturationLevel,2,Get the player's food saturation level. +func_75116_a,getFoodLevel,2,Get the player's food level. +func_75117_b,writeNBT,2,Writes the food data for the player. +func_75118_a,onUpdate,2,Handles the food game logic. +func_75119_b,setFoodSaturationLevel,0, +func_75120_b,getPrevFoodLevel,0, +func_75121_c,needFood,2,Get whether the player must eat food. +func_75122_a,addStats,2,"Args: int foodLevel, float foodSaturationModifier" +func_75128_a,setCanCraft,2,sets whether the player can craft in this inventory or not +func_75129_b,getCanCraft,2,gets whether or not the player can craft in this inventory or not +func_75130_a,onCraftMatrixChanged,2,Callback for when the crafting matrix is changed. +func_75131_a,putStacksInSlots,0,"places itemstacks in first x slots, x being aitemstack.lenght" +func_75132_a,onCraftGuiOpened,2, +func_75133_b,retrySlotClick,2, +func_75134_a,onContainerClosed,2,Called when the container is closed. +func_75135_a,mergeItemStack,2,"Merges provided ItemStack with the first avaliable one in the container/player inventor between minIndex (included) and maxIndex (excluded). Args : stack, minIndex, maxIndex, negativDirection. /!\ the Container implementation do not check if the item is valid for the slot" +func_75136_a,getNextTransactionID,0,Gets a unique transaction ID. Parameter is unused. +func_75137_b,updateProgressBar,0, +func_75138_a,getInventory,2,"returns a list if itemStacks, for each slot." +func_75139_a,getSlot,2, +func_75140_a,enchantItem,2,enchants the item on the table using the specified slot; also deducts XP from player +func_75141_a,putStackInSlot,2,"args: slotID, itemStack to put in slot" +func_75142_b,detectAndSendChanges,2,"Looks for changes made in the container, sends them to every listener." +func_75144_a,slotClick,2,"Handles slot click. Args : slotId, clickedButton, mode (0 = basic click, 1 = shift click, 2 = Hotbar, 3 = pickBlock, 4 = Drop, 5 = ?, 6 = Double click), player\n \n@param slotId Will be either the slot id in the current Container or -999 if dragging\n@param mode 0 for basic click, 1 for shift-click, 2 for hotbar, 3 for pickBlock, 4 for drop, 5 for item distribution drag, 6 for double click" +func_75145_c,canInteractWith,2, +func_75146_a,addSlotToContainer,2,Adds an item slot to this container +func_75147_a,getSlotFromInventory,2, +func_75174_d,getMerchantInventory,2, +func_75175_c,setCurrentRecipeIndex,2, +func_75189_a,canSpawnMoreStructuresOfType,2, +func_75190_a,canSpawnMoreStructures,2, +func_75196_c,getNextValidComponent,2, +func_75198_a,prepareStructurePieces,2,sets up Arrays with the Structure pieces and their weights +func_75200_a,getStrongholdComponentFromWeightedPiece,2,translates the PieceWeight class to the Component class +func_75201_b,getNextComponent,2, +func_75202_c,canAddStructurePieces,2, +func_75208_c,onCrafting,2,"the itemStack passed in is the output - ie, iron ingots, and pickaxes, not ore and wood." +func_75209_a,decrStackSize,2,Decrease the size of the stack in slot (first int arg) by the amount of the second int arg. Returns the new stack. +func_75210_a,onCrafting,2,"the itemStack passed in is the output - ie, iron ingots, and pickaxes, not ore and wood. Typically increases an internal count then calls onCrafting(item)." +func_75211_c,getStack,2,Helper fnct to get the stack in the slot. +func_75212_b,getBackgroundIconIndex,0,Return the placeholder icon of the slot ( = displayed when the slot is empty) +func_75214_a,isItemValid,2,Check if the stack is a valid item for this slot. Always true beside for the armor slots. +func_75215_d,putStack,2,Helper method to put a stack in the slot. +func_75216_d,getHasStack,2,Returns if this slot contains a stack. +func_75217_a,isHere,2,returns true if the slot exists in the given inventory and location +func_75218_e,onSlotChanged,2,Called when the stack in a Slot changes +func_75219_a,getSlotStackLimit,2,"Returns the maximum stack size for a given slot (usually the same as getInventoryStackLimit(), but 1 in the case of armor slots)" +func_75220_a,onSlotChange,2,"if par2 has more items than par1, onCrafting(item,countIncrease) is called" +func_75230_a,doTrade,2, +func_75243_a_,canHoldPotion,2,Returns true if this itemstack can be filled with a potion +func_75246_d,updateTask,2,Updates the task +func_75247_h,getMutexBits,2,"Get a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +func_75248_a,setMutexBits,2,"Sets a bitmask telling which other tasks may not run concurrently. The test is a simple bitwise AND - if it yields zero, the two tasks may run concurrently, if not - they must run exclusively from each other." +func_75249_e,startExecuting,2,Execute a one shot task or start executing a continuous task +func_75250_a,shouldExecute,2,Returns whether the EntityAIBase should begin execution. +func_75251_c,resetTask,2,Resets the task +func_75252_g,isInterruptible,2,Determine if this AI Task is interruptible by a higher (= lower value) priority task. All vanilla AITask have this value set to true. +func_75253_b,continueExecuting,2,Returns whether an in-progress EntityAIBase should continue executing +func_75270_a,setSitting,2,Sets the sitting flag. +func_75277_f,isRunning,2,@see #isRunning +func_75295_a,canEasilyReach,2,Checks to see if this entity can find a short path to the given target. +func_75296_a,isSuitableTarget,2,"A method used to see if an entity is a suitable target through a number of checks. Args : entity, canTargetInvinciblePlayer" +func_75366_f,findPossibleShelter,2, +func_75382_a,hasPlayerGotBoneInHand,2,Gets if the Player has the Bone in the hand. +func_75388_i,spawnBaby,2,Spawns a baby animal of the same type. +func_75389_f,getNearbyMate,2,Loops through nearby animals and finds another animal of the same type that can be mated with. Returns the first valid mate found. +func_75446_f,checkSufficientDoorsPresentForNewVillager,2, +func_75447_i,giveBirth,2, +func_75461_b,findRandomTargetBlockAwayFrom,2,"finds a random target within par1(x,z) and par2 (y) blocks in the reverse direction of the point par3" +func_75462_c,findRandomTargetBlock,2,"searches 10 blocks at random in a within par1(x,z) and par2 (y) distance, ignores those not in the direction of par3Vec3, then points to the tile for which creature.getBlockPathWeight returns the highest number" +func_75463_a,findRandomTarget,2,"finds a random target within par1(x,z) and par2 (y) blocks" +func_75464_a,findRandomTargetBlockTowards,2,"finds a random target within par1(x,z) and par2 (y) blocks in the direction of the point par3" +func_75466_d,resetDoorOpeningRestrictionCounter,2, +func_75467_a,isInside,2, +func_75468_f,getDoorOpeningRestrictionCounter,2, +func_75469_c,getInsideDistanceSquare,2,Get the square of the distance from a location 2 blocks away from the door considered 'inside' and the given arguments +func_75470_e,incrementDoorOpeningRestrictionCounter,2, +func_75471_a,getInsidePosX,2, +func_75472_c,getInsidePosZ,2, +func_75473_b,getInsidePosY,2, +func_75474_b,getDistanceSquared,2,Returns the squared distance between this door and the given coordinate. +func_75483_a,isSafeToStandAt,2,"Returns true when an entity could stand at a position, including solid blocks under the entire entity. Args: xOffset, yOffset, zOffset, entityXSize, entityYSize, entityZSize, originPosition, vecX, vecZ" +func_75484_a,setPath,2,"Sets a new path. If it's diferent from the old path. Checks to adjust path for sun avoiding, and stores start coords. Args : path, speed" +func_75485_k,canNavigate,2,If on ground or swimming and can swim +func_75486_a,getAvoidsWater,2, +func_75487_m,removeSunnyPath,2,Trims path data from the end to the first sun covered block +func_75488_a,getPathToXYZ,2,"Returns the path to the given coordinates. Args : x, y, z" +func_75489_a,setSpeed,2,Sets the speed +func_75490_c,setEnterDoors,2,Sets if the entity can enter open doors +func_75491_a,setAvoidsWater,2, +func_75492_a,tryMoveToXYZ,2,"Try to find and set a path to XYZ. Returns true if successful. Args : x, y, z, speed" +func_75493_a,isDirectPathBetweenPoints,2,"Returns true when an entity of specified size could safely walk in a straight line between the two points. Args: pos1, pos2, entityXSize, entityYSize, entityZSize" +func_75494_a,getPathToEntityLiving,2,Returns the path to the given EntityLiving. Args : entity +func_75495_e,setCanSwim,2,Sets if the entity can swim +func_75496_b,isPositionClear,2,"Returns true if an entity does not collide with any solid blocks at the position. Args: xOffset, yOffset, zOffset, entityXSize, entityYSize, entityZSize, originPosition, vecX, vecZ" +func_75497_a,tryMoveToEntityLiving,2,"Try to find and set a path to EntityLiving. Returns true if successful. Args : entity, speed" +func_75498_b,setBreakDoors,2, +func_75499_g,clearPathEntity,2,sets active PathEntity to null +func_75500_f,noPath,2,If null path or reached the end +func_75501_e,onUpdateNavigation,2, +func_75502_i,getEntityPosition,2, +func_75503_j,getPathableYPos,2,Gets the safe pathing Y position for the entity depending on if it can path swim or not +func_75504_d,setAvoidSun,2,Sets if the path should avoid sunlight +func_75505_d,getPath,2,gets the actively used PathEntity +func_75506_l,isInLiquid,2,"Returns true if the entity is in water or lava, false otherwise" +func_75507_c,getCanBreakDoors,2,"Returns true if the entity can break doors, false otherwise" +func_75508_h,pathFollow,2, +func_75522_a,canSee,2,"Checks, whether 'our' entity can see the entity given as argument (true) or not (false), caching the result." +func_75523_a,clearSensingCache,2,Clears canSeeCachePositive and canSeeCacheNegative. +func_75528_a,tick,2,Runs a single tick for the village siege +func_75530_c,spawnZombie,2, +func_75540_b,getVillageList,2,Get a list of villages. +func_75541_e,isWoodenDoorAt,2, +func_75542_c,addDoorToNewListIfAppropriate,2, +func_75543_d,dropOldestVillagerPosition,2, +func_75544_a,tick,2,Runs a single tick for the village collection +func_75545_e,addNewDoorsToVillageOrCreateVillage,2, +func_75546_a,addUnassignedWoodenDoorsAroundToNewDoorsList,2, +func_75547_b,getVillageDoorAt,2, +func_75548_d,isVillagerPositionPresent,2, +func_75549_c,removeAnnihilatedVillages,2, +func_75550_a,findNearestVillage,2,"Finds the nearest village, but only the given coordinates are withing it's bounding box plus the given the distance." +func_75551_a,addVillagerPosition,2,"This is a black hole. You can add data to this list through a public interface, but you can't query that information in any way and it's not used internally either." +func_75557_k,removeDeadAndOutOfRangeDoors,2, +func_75558_f,getVillageDoorInfoList,2,called only by class EntityAIMoveThroughVillage +func_75559_a,tryGetIronGolemSpawningLocation,2,Tries up to 10 times to get a valid spawning location before eventually failing and returning null. +func_75560_a,tick,2,Called periodically by VillageCollection +func_75561_d,getTicksSinceLastDoorAdding,2, +func_75562_e,getNumVillagers,2, +func_75563_b,isValidIronGolemSpawningLocation,2, +func_75564_b,findNearestDoor,2, +func_75565_j,removeDeadAndOldAgressors,2, +func_75566_g,isAnnihilated,2,"Returns true, if there is not a single village door left. Called by VillageCollection" +func_75567_c,getNumVillageDoors,2,"Actually get num village door info entries, but that boils down to number of doors. Called by EntityAIVillagerMate and VillageSiege" +func_75568_b,getVillageRadius,2, +func_75569_c,findNearestDoorUnrestricted,2,"Find a door suitable for shelter. If there are more doors in a distance of 16 blocks, then the least restricted one (i.e. the one protecting the lowest number of villagers) of them is chosen, else the nearest one regardless of restriction." +func_75570_a,isInRange,2,"Returns true, if the given coordinates are within the bounding box of the village." +func_75571_b,findNearestVillageAggressor,2, +func_75572_i,updateNumVillagers,2, +func_75573_l,updateVillageRadiusAndCenter,2, +func_75574_f,isBlockDoor,2, +func_75575_a,addOrRenewAgressor,2, +func_75576_a,addVillageDoorInfo,2, +func_75577_a,getCenter,2, +func_75578_e,getVillageDoorAt,2, +func_75579_h,updateNumIronGolems,2, +func_75598_a,getCreatureClass,2, +func_75599_d,getPeacefulCreature,2,Gets whether or not this creature type is peaceful. +func_75600_c,getCreatureMaterial,2, +func_75601_b,getMaxNumberOfCreature,2, +func_75614_a,addMapping,2,Adds a entity mapping with egg info. +func_75615_a,createEntityFromNBT,2,create a new instance of an entity from NBT store +func_75616_a,createEntityByID,2,Create a new instance of an entity in the world by using an entity ID. +func_75617_a,getStringFromID,2,Finds the class using IDtoClassMapping and classToStringMapping +func_75618_a,addMapping,2,adds a mapping between Entity classes and both a string representation and an ID +func_75619_a,getEntityID,2,gets the entityID of a specific entity +func_75620_a,createEntityByName,2,Create a new instance of an entity in the world by using the entity name. +func_75621_b,getEntityString,2,Gets the string representation of a specific entity. +func_75630_a,multiplyBy32AndRound,2, +func_75638_b,getSpeed,2, +func_75639_a,limitAngle,2,Limits the given angle to a upper and lower limit. +func_75640_a,isUpdating,2, +func_75641_c,onUpdateMoveHelper,2, +func_75642_a,setMoveTo,2,Sets the speed and location to move to +func_75649_a,onUpdateLook,2,Updates look +func_75650_a,setLookPosition,2,Sets position to look at +func_75651_a,setLookPositionWithEntity,2,Sets position to look at using entity +func_75652_a,updateRotation,2, +func_75660_a,setJumping,2, +func_75661_b,doJump,2,Called to actually make the entity jump if isJumping is true. +func_75664_a,updateRenderAngles,2,Update the Head and Body rendenring angles +func_75665_a,computeAngleWithBound,2,"Return the new angle2 such that the difference between angle1 and angle2 is lower than angleMax. Args : angle1, angle2, angleMax" +func_75669_b,getObject,2, +func_75670_d,isWatched,2, +func_75671_a,setWatched,2, +func_75672_a,getDataValueId,2, +func_75673_a,setObject,2, +func_75674_c,getObjectType,2, +func_75679_c,getWatchableObjectInt,2,gets a watchable object and returns it as a Integer +func_75681_e,getWatchableObjectString,2,gets a watchable object and returns it as a String +func_75682_a,addObject,2,"adds a new object to dataWatcher to watch, to update an already existing object see updateObject. Arguments: data Value Id, Object to add" +func_75683_a,getWatchableObjectByte,2,gets the bytevalue of a watchable object +func_75684_a,hasObjectChanged,2,true if one or more object was changed +func_75685_c,getAllWatched,2, +func_75687_a,updateWatchedObjectsFromList,0, +func_75688_b,getChanged,2, +func_75691_i,getWatchedObject,2,"is threadsafe, unless it throws an exception, then" +func_75692_b,updateObject,2,updates an already existing object +func_75693_b,getWatchableObjectShort,2, +func_75734_a,waitForFinish,2, +func_75735_a,queueIO,2,threaded io +func_75736_b,processQueue,2,Process the items that are in the queue +func_75742_a,loadData,2,"Loads an existing MapDataBase corresponding to the given String id from disk, instantiating the given Class, or returns null if none such file exists. args: Class to instantiate, String dataid" +func_75743_a,getUniqueDataId,2,Returns an unique new data id for the given prefix and saves the idCounts map to the 'idcounts' file. +func_75744_a,saveAllData,2,Saves all dirty loaded MapDataBases to disk. +func_75745_a,setData,2,"Assigns the given String id to the given MapDataBase, removing any existing ones of the same id." +func_75746_b,loadIdCounts,2,Loads the idCounts Map from the 'idcounts' file. +func_75747_a,saveData,2,Saves the given MapDataBase to disk. +func_75752_b,readPlayerData,2,Reads the player data from disk into the specified PlayerEntityMP. +func_75753_a,writePlayerData,2,Writes the player data to disk from the specified PlayerEntityMP. +func_75754_f,getAvailablePlayerDat,2,Returns an array of usernames for which player.dat exists for. +func_75755_a,saveWorldInfoWithPlayer,2,Saves the given World Info with the given NBTTagCompound as the Player. +func_75756_e,getPlayerNBTManager,2, +func_75757_d,loadWorldInfo,2,Loads and returns the world info +func_75758_b,getMapFileFromName,2,Gets the file location of the given map +func_75759_a,flush,2,"Called to flush all changes to disk, waiting for them to complete." +func_75760_g,getWorldDirectoryName,2,Returns the name of the directory where world information is saved. +func_75761_a,saveWorldInfo,2,used to update level.dat from old format to MCRegion format +func_75762_c,checkSessionLock,2,Checks the session lock to prevent save collisions +func_75763_a,getChunkLoader,2,initializes and returns the chunk loader for the specified world provider +func_75765_b,getWorldDirectory,2,Gets the File object corresponding to the base directory of this world. +func_75766_h,setSessionLock,2,Creates a session lock file for this process +func_75773_a,canContinue,2,Determine if a specific AI Task should continue being executed. +func_75774_a,onUpdateTasks,2, +func_75775_b,canUse,2,"Determine if a specific AI Task can be executed, which means that all running higher (= lower int value) priority tasks are compatible with it or all lower priority tasks can be interrupted." +func_75776_a,addTask,2,"Add a now AITask. Args : priority, task" +func_75777_a,areTasksCompatible,2,Returns whether two EntityAITaskEntries can be executed concurrently +func_75783_h,getCheatsEnabled,0,@return {@code true} if cheats are enabled for this world +func_75784_e,getLastTimePlayed,0, +func_75785_d,requiresConversion,0, +func_75786_a,getFileName,0,return the file name +func_75788_b,getDisplayName,0,return the display name of the save +func_75789_g,isHardcoreModeEnabled,0, +func_75790_f,getEnumGameType,0,Gets the EnumGameType. +func_75799_b,getSaveList,0, +func_75800_d,flushCache,2, +func_75801_b,isOldMapFormat,2,gets if the map is old chunk saving (true) or McRegion (false) +func_75802_e,deleteWorldDirectory,2,@args: Takes one argument - the name of the directory of the world to delete. @desc: Delete the world by deleting the associated directory recursively. +func_75803_c,getWorldInfo,2,gets the world info +func_75804_a,getSaveLoader,2,Returns back a loader for the specified save directory +func_75805_a,convertMapFormat,2,converts the map to mcRegion +func_75806_a,renameWorld,0,@args: Takes two arguments - first the name of the directory containing the world and second the new name for that world. @desc: Renames the world by storing the new name in level.dat. It does *not* rename the directory containing the world data. +func_75807_a,deleteFiles,2,@args: Takes one argument - the list of files and directories to delete. @desc: Deletes the files and directory listed in the list recursively. +func_75809_f,createFile,2,par: filename for the level.dat_mcr backup +func_75810_a,addRegionFilesToCollection,2,"filters the files in the par1 directory, and adds them to the par2 collections" +func_75811_a,convertChunks,2,"copies a 32x32 chunk set from par2File to par1File, via AnvilConverterData" +func_75812_c,getSaveVersion,2, +func_75813_a,convertFile,2, +func_75814_c,writeNextIO,2,Returns a boolean stating if the write was unsuccessful. +func_75815_a,loadChunk,2,Loads the specified(XZ) chunk into the specified world. +func_75816_a,saveChunk,2, +func_75817_a,chunkTick,2,Called every World.tick() +func_75818_b,saveExtraData,2,"Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unused." +func_75819_b,saveExtraChunkData,2,"Save extra data associated with this Chunk not normally saved during autosave, only during chunk unload. Currently unused." +func_75820_a,writeChunkToNBT,2,"Writes the Chunk passed as an argument to the NBTTagCompound also passed, using the World argument to retrieve the Chunk's last update time." +func_75821_a,writeChunkNBTTags,2, +func_75822_a,checkedReadChunkFromNBT,2,Wraps readChunkFromNBT. Checks the coordinates and several NBT tags. +func_75823_a,readChunkFromNBT,2,Reads the data stored in the passed NBTTagCompound and creates a Chunk with that data in the passed World. Returns the created Chunk. +func_75824_a,addChunkToPending,2, +func_75829_a,distanceTo,2,Returns the linear distance to another path point +func_75830_a,makeHash,2, +func_75831_a,isAssigned,2,Returns true if this point has already been assigned to a path +func_75832_b,distanceToSquared,2,Returns the squared distance to another path point +func_75843_a,format,0,Formats a given stat for human consumption. +func_75844_c,dequeue,2,Returns and removes the first point in the path +func_75845_e,isPathEmpty,2,Returns true if this path contains no points +func_75846_b,sortForward,2,Sorts a point to the right +func_75847_a,sortBack,2,Sorts a point to the left +func_75848_a,clearPath,2,Clears the path +func_75849_a,addPoint,2,Adds a point to the path +func_75850_a,changeDistance,2,Changes the provided point's distance to target +func_75853_a,createEntityPath,2,Returns a new PathEntity for a given start and end point +func_75854_a,openPoint,2,Returns a mapped point or creates and adds one +func_75855_a,canEntityStandAt,2,"Checks if an entity collides with blocks at a position. Returns : 1 = clear, 0 = blocked, -1 = water (if avoiding water), -2 = lava (if not already in lava), -3 = fence or rails, -4 = closed trapdoor, 2 = open trapdoor or water (if not avoiding) or open door (if can pass trhough). Args : entity, posX, posY, posZ, entitySize" +func_75856_a,createEntityPathTo,2,"Creates a path from one entity to another within a minimum distance. Args : entity, entityTarget, maxDistance" +func_75857_a,createEntityPathTo,2,"Creates a path from an entity to a specified location within a minimum distance. Args : entity, x, y, z, maxDistance" +func_75858_a,getSafePoint,2,Returns a point that the entity can safely move to +func_75859_a,createEntityPathTo,2,"Creates a path from an entity to a specified location within a minimum distance. Args : entity, x, y, z, maxDistance" +func_75860_b,findPathOptions,2,"Populates the pathOptions array with available points and returns the number of options found. Args: entity, currentPoint, entitySizePoint, targetPoint, maxDistance" +func_75861_a,addToPath,2,"Adds a path from start to end and returns the whole path (args: unused, start, end, unused, maxDistance)" +func_75870_c,getFinalPathPoint,2,returns the last PathPoint of the Array +func_75871_b,setCurrentPathLength,2, +func_75872_c,setCurrentPathIndex,2, +func_75873_e,getCurrentPathIndex,2, +func_75874_d,getCurrentPathLength,2, +func_75875_a,incrementPathIndex,2,Directs this path to the next point in its array +func_75876_a,isSamePath,2,Returns true if the EntityPath are the same. Non instance related equals. +func_75877_a,getPathPointFromIndex,2,"return the PathPoint located at the specified PathIndex, usually the current one" +func_75878_a,getPosition,2,returns the current PathEntity target node as Vec3D +func_75879_b,isFinished,2,Returns true if this path has reached the end +func_75880_b,isDestinationSame,2,Returns true if the final PathPoint in the PathEntity is equal to Vec3D coords. +func_75881_a,getVectorFromIndex,2,Gets the vector of the PathPoint associated with the given index. +func_75885_a,cipherOperation,2,Encrypt or decrypt byte[] data using the specified key +func_75886_a,createTheCipherInstance,2,Creates the Cipher Instance. +func_75887_a,decryptSharedKey,2,Decrypt shared secret AES key using RSA private key +func_75889_b,decryptData,2,Decrypt byte[] data with RSA private key +func_75890_a,createNewSharedKey,0,Generate a new shared secret AES key from a secure random source +func_75891_b,generateKeyPair,2,Generates RSA KeyPair +func_75893_a,digestOperation,2,Compute a message digest on arbitrary byte[] data +func_75894_a,encryptData,0,Encrypt byte[] data with RSA public key +func_75895_a,getServerIdHash,2,Compute a serverId hash for use by sendSessionRequest() +func_75896_a,decodePublicKey,2,Create a new PublicKey from encoded X.509 data +func_75901_a,initializeAllBiomeGenerators,2,"the first array item is a linked list of the bioms, the second is the zoom function, the third is the same as the first." +func_75902_a,nextInt,2,"returns a LCG pseudo random number from [0, x). Args: int x" +func_75903_a,initChunkSeed,2,"Initialize layer's current chunkSeed based on the local worldGenSeed and the (x,z) chunk coordinates." +func_75904_a,getInts,2,"Returns a list of integer values generated by this layer. These may be interpreted as temperatures, rainfall amounts, or biomeList[] indices based on the particular GenLayer subclass.\n \n@param areaX The x-position of the area\n@param areaY The y-position of the area\n@param areaWidth The width of the area\n@param areaHeight The height of the area" +func_75905_a,initWorldGenSeed,2,Initialize layer's local worldGenSeed based on its own baseSeed and the world's global seed (passed in as an argument). +func_75915_a,magnify,2,"Magnify a layer. Parms are seed adjustment, layer, number of times to magnify" +func_75918_d,initCraftableStats,2,Initializes statistics related to craftable items. Is only called after both block and item stats have been initialized. +func_75924_a,replaceAllSimilarBlocks,2,Forces all dual blocks to count for each other on the stats list +func_75925_c,initStats,2, +func_75966_h,initIndependentStat,2,"Initializes the current stat as independent (i.e., lacking prerequisites for being updated) and returns the current instance." +func_75967_d,isAchievement,2,Returns whether or not the StatBase-derived class is a statistic (running counter) or an achievement (one-shot). +func_75971_g,registerStat,2,Register the stat into StatList. +func_75984_f,getSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +func_75987_b,setSpecial,2,"Special achievements have a 'spiked' (on normal texture pack) frame, special achievements are the hardest ones to achieve." +func_75988_a,setStatStringFormatter,0,Defines a string formatter for the achievement. +func_75989_e,getDescription,0,Returns the fully description of the achievement - ready to be displayed on screen. +func_75997_a,init,2,A stub functions called to make the static initializer for this class run. +func_76030_b,getValue,2,Returns the object stored in this entry +func_76031_a,getHash,2,Returns the hash code for this entry +func_76036_e,removeEntry,2,Removes the specified entry from the map and returns it +func_76037_b,containsItem,2,Returns true if this hash table contains the specified item. +func_76038_a,addKey,2,Adds a key and associated value to this map +func_76040_a,insert,2,Adds an object to a slot +func_76041_a,lookup,2,Returns the object associated to a key +func_76043_a,getSlotIndex,2,Computes the index of the slot for the hash and slot count passed in. +func_76044_g,computeHash,2,Makes the passed in integer suitable for hashing by a number of shifts +func_76045_c,lookupEntry,2,Returns the internal entry for a key +func_76046_c,clearMap,2,Removes all entries from the map +func_76047_h,grow,2,Increases the number of hash slots +func_76048_a,copyTo,2,Copies the hash slots to a new array +func_76049_d,removeObject,2,Removes the specified object from the map and returns it +func_76056_b,setSpawnY,0,Sets the y spawn position +func_76057_l,getLastTimePlayed,0,Return the last time the player was in this world. +func_76058_a,setSpawnX,0,Set the x spawn position to the passed in value +func_76059_o,isRaining,2,"Returns true if it is raining, false otherwise." +func_76060_a,setGameType,2,Sets the GameType. +func_76061_m,isThundering,2,"Returns true if it is thundering, false otherwise." +func_76062_a,setWorldName,2, +func_76063_b,getSeed,2,Returns the seed of current world. +func_76064_a,updateTagCompound,2, +func_76065_j,getWorldName,2,Get current world name +func_76066_a,getNBTTagCompound,2,Gets the NBTTagCompound for the worldInfo +func_76067_t,getTerrainType,2, +func_76068_b,setWorldTime,2,Set current world time +func_76069_a,setThundering,2,Sets whether it is thundering or not. +func_76070_v,isInitialized,2,Returns true if the World is initialized. +func_76071_n,getThunderTime,2,Returns the number of ticks until next thunderbolt. +func_76072_h,getPlayerNBTTagCompound,2,Returns the player's NBTTagCompound to be loaded +func_76073_f,getWorldTime,2,Get current world time +func_76074_e,getSpawnZ,2,Returns the z spawn position +func_76075_d,getSpawnY,2,Return the Y axis spawning point of the player. +func_76076_i,getDimension,2, +func_76077_q,getGameType,2,Gets the GameType. +func_76078_e,setSaveVersion,2,Sets the save version of the world +func_76079_c,getSpawnX,2,Returns the x spawn position +func_76080_g,setRainTime,2,Sets the number of ticks until rain. +func_76081_a,setSpawnPosition,2,"Sets the spawn zone position. Args: x, y, z" +func_76082_a,cloneNBTCompound,2,"Creates a new NBTTagCompound for the world, with the given NBTTag as the ""Player""" +func_76083_p,getRainTime,2,Return the number of ticks until rain. +func_76084_b,setRaining,2,Sets whether it is raining or not. +func_76085_a,setTerrainType,2, +func_76086_u,areCommandsAllowed,2,Returns true if commands are allowed on this World. +func_76087_c,setSpawnZ,0,Set the z spawn position to the passed in value +func_76088_k,getSaveVersion,2,Returns the save version of this world +func_76089_r,isMapFeaturesEnabled,2,Get whether the map features (e.g. strongholds) generation is enabled or disabled. +func_76090_f,setThunderTime,2,Defines the number of ticks until next thunderbolt. +func_76091_d,setServerInitialized,2,Sets the initialization status of the World. +func_76092_g,getSizeOnDisk,0, +func_76093_s,isHardcoreModeEnabled,2,"Returns true if hardcore mode is enabled, otherwise false" +func_76123_f,ceiling_float_int,2, +func_76124_d,floor_double_long,2,Long version of floor_double +func_76125_a,clamp_int,2,"Returns the value of the first parameter, clamped to be within the lower and upper limits given by the second and third parameters." +func_76126_a,sin,2,sin looked up in a table +func_76127_a,average,2, +func_76128_c,floor_double,2,Returns the greatest integer less than or equal to the double argument +func_76129_c,sqrt_float,2, +func_76130_a,abs_int,2,Returns the unsigned value of an int. +func_76131_a,clamp_float,2,"Returns the value of the first parameter, clamped to be within the lower and upper limits given by the second and third parameters" +func_76132_a,abs_max,2,Maximum of the absolute value of two numbers. +func_76133_a,sqrt_double,2, +func_76134_b,cos,2,cos looked up in the sin table with the appropriate offset +func_76135_e,abs,2, +func_76136_a,getRandomIntegerInRange,2, +func_76137_a,bucketInt,0,"Buckets an integer with specifed bucket sizes. Args: i, bucketSize" +func_76138_g,wrapAngleTo180_double,2,"the angle is reduced to an angle between -180 and +180 by mod, and a 360 check" +func_76139_a,stringNullOrLengthZero,0,Tests if a string is null or of length zero +func_76140_b,truncateDoubleToInt,0,"returns par0 cast as an int, and no greater than Integer.MAX_VALUE-1024" +func_76141_d,floor_float,2,Returns the greatest integer less than or equal to the float argument +func_76142_g,wrapAngleTo180_float,2,"the angle is reduced to an angle between -180 and +180 by mod, and a 360 check" +func_76143_f,ceiling_double_int,2, +func_76145_b,getValue,2, +func_76146_a,getKey,2, +func_76152_e,removeKey,2,removes the key from the hash linked list +func_76153_b,resizeTable,2,resizes the table +func_76154_a,copyHashTableTo,2,copies the hash table to the specified array +func_76155_g,getHashedKey,2,returns the hashed key given the original key +func_76156_a,createKey,2,creates the key in the hash table +func_76157_a,hash,2,the hash function +func_76158_a,getHashIndex,2,gets the index in the hash given the array length and the hashed key +func_76159_d,remove,2,calls the removeKey method and returns removed object +func_76160_c,getEntry,2, +func_76161_b,containsItem,2, +func_76162_a,getNumHashElements,2, +func_76163_a,add,2,Add a key-value pair. +func_76164_a,getValueByKey,2,get the value from the map given the key +func_76179_a,buildPostString,2,Builds an encoded HTTP POST content string from a string map +func_76181_a,getSuitableLanPort,0, +func_76184_a,readFromNBT,2,reads in data from the NBTTagCompound into this MapDataBase +func_76185_a,markDirty,2,"Marks this MapDataBase dirty, to be saved to disk when the level next saves." +func_76186_a,setDirty,2,"Sets the dirty state of this MapDataBase, whether it needs saving to disk." +func_76187_b,writeToNBT,2,"write data to NBTTagCompound from this MapDataBase, similar to Entities and TileEntities" +func_76188_b,isDirty,2,Whether this MapDataBase needs saving to disk. +func_76191_a,updateVisiblePlayers,2,Adds the player passed to the list of visible players and checks to see which players are visible +func_76192_a,updateMPMapData,0,Updates the client's map with information from other players in MP +func_76193_a,getUpdatePacketData,2,Get byte array of packet data to send to players on map for updating map data +func_76194_a,setColumnDirty,2,"Marks a vertical range of pixels as being modified so they will be resent to clients. Parameters: X, lowest Y, highest Y" +func_76204_a,getPlayersOnMap,2,"returns a 1+players*3 array, of x,y, and color . the name of this function may be partially wrong, as there is a second branch to the code here" +func_76217_h,getCanBurn,2,Returns if the block can burn or not. +func_76218_k,isOpaque,2,Indicate if the material is opaque +func_76219_n,setNoPushMobility,2,"This type of material can't be pushed, but pistons can move over it." +func_76220_a,isSolid,2, +func_76221_f,setRequiresTool,2,Makes blocks with this material require the correct tool to be harvested. +func_76222_j,isReplaceable,2,"Returns whether the material can be replaced by other blocks when placed - eg snow, vines and tall grass." +func_76223_p,setTranslucent,2,Marks the material as translucent +func_76224_d,isLiquid,2,Returns if blocks of these materials are liquids. +func_76225_o,setImmovableMobility,2,"This type of material can't be pushed, and pistons are blocked to move." +func_76226_g,setBurning,2,Set the canBurn bool to True and return the current object. +func_76227_m,getMaterialMobility,2,"Returns the mobility information of the material, 0 = free, 1 = can't push but can move over, 2 = total immobility and stop pistons." +func_76228_b,blocksLight,2,Will prevent grass from growing on dirt underneath and kill any grass below it if it returns true +func_76229_l,isToolNotRequired,2,Returns true if the material can be harvested without a tool (or with the wrong tool) +func_76230_c,blocksMovement,2,Returns if this material is considered solid or not +func_76231_i,setReplaceable,2,Sets {@link #replaceable} to true. +func_76269_a,getRandomItem,2,"Returns a random choice from the input array of items, with a total weight value." +func_76270_a,getTotalWeight,2,Returns the total weight of all items in a array. +func_76271_a,getRandomItem,2,Returns a random choice from the input items. +func_76272_a,getTotalWeight,2,Returns the total weight of all items in a collection. +func_76273_a,getRandomItem,2,"Returns a random choice from the input items, with a total weight value." +func_76274_a,getRandomItem,2,Returns a random choice from the input items. +func_76293_a,generateChestContents,2,Generates the Chest contents. +func_76304_a,generateNoiseOctaves,2,"pars:(par2,3,4=noiseOffset ; so that adjacent noise segments connect) (pars5,6,7=x,y,zArraySize),(pars8,10,12 = x,y,z noiseScale)" +func_76305_a,generateNoiseOctaves,2,Bouncer function to the main one with some default arguments. +func_76308_a,populateNoiseArray,2,"pars: noiseArray , xOffset , yOffset , zOffset , xSize , ySize , zSize , xScale, yScale , zScale , noiseScale. noiseArray should be xSize*ySize*zSize in size" +func_76310_a,grad,2, +func_76311_b,lerp,2, +func_76316_a,onInventoryChanged,2,Called by InventoryBasic.onInventoryChanged() on a array that is never filled. +func_76317_a,clearProfiling,2,Clear profiling. +func_76318_c,endStartSection,2,End current section and start a new section +func_76319_b,endSection,2,End section +func_76320_a,startSection,2,Start section +func_76321_b,getProfilingData,2,Get profiling data +func_76322_c,getNameOfLastSection,2, +func_76333_a,smooth,0,Smooths mouse input +func_76337_a,ticksToElapsedTime,0,"Returns the time elapsed for the given number of ticks, in ""mm:ss"" format." +func_76338_a,stripControlCodes,0, +func_76340_b,getSecond,2,Get the second Object in the Tuple +func_76341_a,getFirst,2,Get the first Object in the Tuple +func_76345_d,getHungerDamage,2,How much satiate(food) is consumed by this DamageSource +func_76346_g,getEntity,2, +func_76347_k,isFireDamage,2,Returns true if the damage is fire based. +func_76348_h,setDamageBypassesArmor,2, +func_76349_b,setProjectile,2,Define the damage type as projectile based. +func_76350_n,isDifficultyScaled,2,Return whether this damage source will have its damage amount scaled based on the current difficulty. +func_76351_m,setDifficultyScaled,2,Set whether this damage source will have its damage amount scaled based on the current difficulty. +func_76352_a,isProjectile,2,Returns true if the damage is projectile based. +func_76353_a,causeArrowDamage,2,returns EntityDamageSourceIndirect of an arrow +func_76354_b,causeIndirectMagicDamage,2, +func_76355_l,getDamageType,2,Return the name of damage type. +func_76356_a,causeThrownDamage,2, +func_76357_e,canHarmInCreative,2, +func_76358_a,causeMobDamage,2, +func_76359_i,setDamageAllowedInCreativeMode,2, +func_76361_j,setFireDamage,2,Define the damage type as fire based. +func_76362_a,causeFireballDamage,2,returns EntityDamageSourceIndirect of a fireball +func_76363_c,isUnblockable,2, +func_76364_f,getSourceOfDamage,2, +func_76365_a,causePlayerDamage,2,returns an EntityDamageSource of type player +func_76388_g,getEffectiveness,2, +func_76389_a,getDurationString,0, +func_76390_b,setPotionName,2,Set the potion name. +func_76392_e,getStatusIconIndex,0,Returns the index for the icon to display when the potion is active. +func_76393_a,getName,2,returns the name of the potion +func_76394_a,performEffect,2, +func_76395_i,isUsable,2, +func_76396_c,getId,2,returns the ID of the potion +func_76397_a,isReady,2,checks if Potion effect is ready to be applied this tick. +func_76398_f,isBadEffect,0,This method returns true if the potion effect is bad - negative - for the entity. +func_76399_b,setIconIndex,2,Sets the index for the icon displayed in the player's inventory when the status is active. +func_76400_d,hasStatusIcon,0,Returns true if the potion has a associated status icon to display in then inventory when active. +func_76401_j,getLiquidColor,2,Returns the color of the potion liquid. +func_76402_a,affectEntity,2,Hits the provided entity with this potion's instant effect. +func_76403_b,isInstant,2,Returns true if the potion has an instant effect instead of a continuous one (eg Harming) +func_76404_a,setEffectiveness,2, +func_76445_a,getIntCache,2, +func_76446_a,resetIntCache,2,Mark all pre-allocated arrays as available for re-use by moving them to the appropriate free lists. +func_76452_a,combine,2,merges the input PotionEffect into this one if this.amplifier <= tomerge.amplifier. The duration in the supplied potion effect is assumed to be greater. +func_76453_d,getEffectName,2, +func_76454_e,deincrementDuration,2, +func_76455_a,onUpdate,2, +func_76456_a,getPotionID,2,Retrieve the ID of the potion this effect matches. +func_76457_b,performEffect,2, +func_76458_c,getAmplifier,2, +func_76459_b,getDuration,2, +func_76463_a,startSnooper,2,Note issuing start multiple times is not an error. +func_76465_c,getCurrentStats,0, +func_76467_g,addJvmArgsToSnooper,2, +func_76468_d,isSnooperRunning,2, +func_76470_e,stopSnooper,2, +func_76471_b,addMemoryStatsToSnooper,2, +func_76484_a,generate,2, +func_76487_a,setScale,2,"Rescales the generator settings, only used in WorldGenBigTree" +func_76489_a,generateLeafNodeList,2,"Generates a list of leaf nodes for the tree, to be populated by generateLeaves." +func_76490_a,layerSize,2,Gets the rough size of a layer of the tree. +func_76491_a,generateLeafNode,2,Generates the leaves surrounding an individual entry in the leafNodes list. +func_76493_c,leafNodeNeedsBase,2,Indicates whether or not a leaf node requires additional wood to be added to preserve integrity. +func_76494_d,generateLeafNodeBases,2,Generates additional wood blocks to fill out the bases of different leaf nodes that would otherwise degrade. +func_76495_b,leafSize,2, +func_76496_a,checkBlockLine,2,"Checks a line of blocks in the world from the first coordinate to triplet to the second, returning the distance (in blocks) before a non-air, non-leaf block is encountered and/or the end is encountered." +func_76497_e,validTreeLocation,2,"Returns a boolean indicating whether or not the current location for the tree, spanning basePos to to the height limit, is valid." +func_76498_b,generateLeaves,2,Generates the leaf portion of the tree as specified by the leafNodes list. +func_76499_c,generateTrunk,2,Places the trunk for the big tree that is being generated. Able to generate double-sized trunks by changing a field that is always 1 to 2. +func_76529_b,growVines,2,"Grows vines downward from the given block for a given length. Args: World, x, starty, z, vine-length" +func_76536_b,generateVines,2,Generates vines at the given position until it hits a block. +func_76543_b,pickMobSpawner,2,Randomly decides which spawner to use in a dungeon +func_76549_c,getChunkInputStream,2,"Returns an input stream for the specified chunk. Args: worldDir, chunkX, chunkZ" +func_76550_a,createOrLoadRegionFile,2, +func_76551_a,clearRegionFileReferences,2,clears region file references +func_76552_d,getChunkOutputStream,2,"Returns an output stream for the specified chunk. Args: worldDir, chunkX, chunkZ" +func_76554_h,getEntrancePortalLocation,2,Gets the hard-coded portal location to use when entering this dimension. +func_76555_c,createChunkGenerator,2,Returns a new chunk provider which generates chunks for this world +func_76556_a,generateLightBrightnessTable,2,Creates the light to brightness table +func_76557_i,getAverageGroundLevel,2, +func_76558_a,registerWorld,2,"associate an existing world with a World provider, and setup its lightbrightness table" +func_76559_b,getMoonPhase,2, +func_76560_a,calcSunriseSunsetColors,0,Returns array with sunrise/sunset colors +func_76561_g,isSkyColored,0, +func_76562_b,getFogColor,0,Return Vec3D with biome specific fog color +func_76563_a,calculateCelestialAngle,2,Calculates the angle of sun and moon in the sky relative to a specified time (usually worldTime) +func_76564_j,getWorldHasVoidParticles,0,returns true if this dimension is supposed to display void particles and pull in the far plane based on the user's Y offset. +func_76565_k,getVoidFogYFactor,0,"Returns a double value representing the Y value relative to the top of the map at which void fog is at its maximum. The default factor of 0.03125 relative to 256, for example, means the void fog will be at its maximum at (256*0.03125), or 8." +func_76566_a,canCoordinateBeSpawn,2,"Will check if the x, z position specified is alright to be set as the map spawn point" +func_76567_e,canRespawnHere,2,"True if the player can respawn in this dimension (true = overworld, false = nether)." +func_76568_b,doesXZShowFog,0,"Returns true if the given X,Z coordinate should show environmental fog." +func_76569_d,isSurfaceWorld,2,"Returns 'true' if in the ""main surface world"", but 'false' if in the Nether or End dimensions." +func_76570_a,getProviderForDimension,2, +func_76571_f,getCloudHeight,0,the y level at which clouds are rendered. +func_76572_b,registerWorldChunkManager,2,creates a new world chunk manager for WorldProvider +func_76581_a,set,2,"Arguments are x, y, z, val. Sets the nibble of data at x << 11 | z << 7 | y to val." +func_76582_a,get,2,"Returns the nibble of data corresponding to the passed in x, y, z. y is at most 6 bits, z is at most 4." +func_76587_i,getBlockStorageArray,2,Returns the ExtendedBlockStorage array for this Chunk. +func_76588_a,getEntitiesWithinAABBForEntity,2,"Fills the given list of all entities that intersect within the given bounding box that aren't the passed entity Args: entity, aabb, listToFill" +func_76589_b,setBlockMetadata,2,Set the metadata of a block in the chunk +func_76590_a,generateHeightMap,0,Generates the height map for a chunk from scratch +func_76591_a,getBiomeGenForWorldCoords,2,This method retrieves the biome at a set of coordinates +func_76594_o,enqueueRelightChecks,2,"Called once-per-chunk-per-tick, and advances the round-robin relight check index by up to 8 blocks at a time. In a worst-case scenario, can potentially take up to 25.6 seconds, calculated via (4096/8)/20, to re-check all blocks in a chunk, which may explain lagging light updates on initial world generation." +func_76595_e,propagateSkylightOcclusion,2,Propagates a given sky-visible block's light value downward and upward to neighboring blocks as necessary. +func_76599_g,checkSkylightNeighborHeight,2,Checks the height of a block next to a sky-visible block and schedules a lighting update as necessary. +func_76600_a,isAtLocation,2,Checks whether the chunk is at the X/Z location specified +func_76601_a,needsSaving,2,Returns true if this Chunk needs to be saved +func_76602_a,setStorageArrays,2, +func_76603_b,generateSkylightMap,2,Generates the initial skylight map for the chunk upon generation or load. +func_76605_m,getBiomeArray,2,Returns an array containing a 16x16 mapping on the X/Z of block positions in this Chunk to biome IDs. +func_76606_c,getAreLevelsEmpty,2,Returns whether the ExtendedBlockStorages containing levels (in blocks) from arg 1 to arg 2 are fully empty (true) or not (false). +func_76607_a,fillChunk,0,Initialise this chunk with new binary data +func_76608_a,removeEntityAtIndex,2,Removes entity at the specified index from the entity array. +func_76609_d,updateSkylightNeighborHeight,2, +func_76611_b,getHeightValue,2,"Returns the value in the height map at this x, z coordinate in the chunk" +func_76612_a,addEntity,2,Adds an entity to the chunk. Args: entity +func_76613_n,resetRelightChecks,2,Resets the relight check index to 0 for this Chunk. +func_76614_a,getSavedLightValue,2,Gets the amount of light saved in this block (doesn't adjust for daylight) +func_76615_h,relightBlock,2,Initiates the recalculation of both the block-light and sky-light for a given block inside a chunk. +func_76616_a,setBiomeArray,2,Accepts a 256-entry array that contains a 16x16 mapping on the X/Z plane of block positions in this Chunk to biome IDs. +func_76617_a,getRandomWithSeed,2, +func_76618_a,getEntitiesOfTypeWithinAAAB,2,"Gets all entities that can be assigned to the specified class. Args: entityClass, aabb, listToFill" +func_76619_d,canBlockSeeTheSky,2,Returns whether is not a block above this one blocking sight to the sky (done via checking against the heightmap) +func_76621_g,isEmpty,2, +func_76622_b,removeEntity,2,removes entity using its y chunk coordinate as its index +func_76623_d,onChunkUnload,2,Called when this Chunk is unloaded by the ChunkProvider +func_76624_a,populateChunk,2, +func_76625_h,getTopFilledSegment,2,Returns the topmost ExtendedBlockStorage instance for this Chunk that actually contains a block. +func_76626_d,getPrecipitationHeight,2,Gets the height to which rain/snow will fall. Calculates it if not already stored. +func_76628_c,getBlockMetadata,2,Return the metadata corresponding to the given coordinates inside a chunk. +func_76629_c,getBlockLightValue,2,Gets the amount of light on a block taking into account sunlight +func_76630_e,setChunkModified,2,Sets the isModified flag for this Chunk +func_76631_c,onChunkLoad,2,Called when this Chunk is loaded by the ChunkProvider +func_76632_l,getChunkCoordIntPair,2,Gets a ChunkCoordIntPair representing the Chunk's position. +func_76633_a,setLightValue,2,"Sets the light value at the coordinate. If enumskyblock is set to sky it sets it in the skylightmap and if its a block then into the blocklightmap. Args enumSkyBlock, x, y, z, lightValue" +func_76654_b,setExtBlockMetadata,2,Sets the metadata of the Block at the given coordinates in this ExtendedBlockStorage to the given metadata. +func_76657_c,setExtSkylightValue,2,Sets the saved Sky-light value in the extended block storage structure. +func_76658_g,getBlockLSBArray,2, +func_76659_c,setBlocklightArray,2,Sets the NibbleArray instance used for Block-light values in this particular storage block. +func_76660_i,getBlockMSBArray,2,Returns the block ID MSB (bits 11..8) array for this storage array's Chunk. +func_76661_k,getBlocklightArray,2,Returns the NibbleArray instance containing Block-light data. +func_76662_d,getYLocation,2,Returns the Y location of this ExtendedBlockStorage. +func_76663_a,isEmpty,2,"Returns whether or not this block storage's Chunk is fully empty, based on its internal reference count." +func_76664_a,setBlockLSBArray,2,Sets the array of block ID least significant bits for this ExtendedBlockStorage. +func_76665_b,getExtBlockMetadata,2,Returns the metadata associated with the block at the given coordinates in this ExtendedBlockStorage. +func_76666_d,setSkylightArray,2,Sets the NibbleArray instance used for Sky-light values in this particular storage block. +func_76667_m,createBlockMSBArray,0,Called by a Chunk to initialize the MSB array if getBlockMSBArray returns null. Returns the newly-created NibbleArray instance. +func_76668_b,setBlockMetadataArray,2,Sets the NibbleArray of block metadata (blockMetadataArray) for this ExtendedBlockStorage. +func_76669_j,getMetadataArray,2, +func_76670_c,getExtSkylightValue,2,Gets the saved Sky-light value in the extended block storage structure. +func_76671_l,getSkylightArray,2,Returns the NibbleArray instance containing Sky-light data. +func_76672_e,removeInvalidBlocks,2, +func_76673_a,setBlockMSBArray,2,Sets the array of blockID most significant bits (blockMSBArray) for this ExtendedBlockStorage. +func_76674_d,getExtBlocklightValue,2,Gets the saved Block-light value in the extended block storage structure. +func_76675_b,getNeedsRandomTick,2,"Returns whether or not this block storage's Chunk will require random ticking, used to avoid looping through random block ticks when there are no blocks that would randomly tick." +func_76676_h,clearMSBArray,0, +func_76677_d,setExtBlocklightValue,2,Sets the saved Block-light value in the extended block storage structure. +func_76686_a,get,2, +func_76690_a,convertToAnvilFormat,2, +func_76691_a,load,2, +func_76704_a,getChunkDataInputStream,2,"args: x, y - get uncompressed chunk stream from the region file" +func_76705_d,outOfBounds,2,"args: x, z - check region bounds" +func_76706_a,write,2,"args: x, z, data, length - write chunk data at (x, z) to disk" +func_76707_e,getOffset,2,"args: x, y - get chunk's offset in region file" +func_76708_c,close,2,close this RegionFile and prevent further writes +func_76709_c,isChunkSaved,2,"args: x, z, - true if chunk has been saved / converted" +func_76710_b,getChunkDataOutputStream,2,"args: x, z - get an output stream used to write chunk data, data is on disk when the returned stream is closed" +func_76711_a,setOffset,2,"args: x, z, offset - sets the chunk's offset in the region file" +func_76712_a,write,2,"args: sectorNumber, data, length - write the chunk data to this RegionFile" +func_76713_b,setChunkTimestamp,2,"args: x, z, timestamp - sets the chunk's write timestamp" +func_76727_i,getFloatRainfall,0,Gets a floating point representation of this biome's rainfall +func_76728_a,decorate,2, +func_76729_a,createBiomeDecorator,2,Allocate a new BiomeDecorator for this BiomeGenBase +func_76730_b,getRandomWorldGenForGrass,2,Gets a WorldGen appropriate for this biome. +func_76731_a,getSkyColorByTemp,0,"takes temperature, returns color" +func_76732_a,setTemperatureRainfall,2,Sets the temperature and rainfall of this biome. +func_76735_a,setBiomeName,2, +func_76736_e,isHighHumidity,2,Checks to see if the rainfall level of the biome is extremely high +func_76738_d,canSpawnLightningBolt,2,"Return true if the biome supports lightning bolt spawn, either by have the bolts enabled and have rain enabled." +func_76739_b,setColor,2, +func_76741_f,getSpawningChance,2,returns the chance a creature has to spawn. +func_76742_b,setEnableSnow,2,sets enableSnow to true during biome initialization. returns BiomeGenBase. +func_76744_g,getIntRainfall,2,Gets an integer representation of this biome's rainfall +func_76745_m,setDisableRain,2,Disable the rain for the biome. +func_76746_c,getEnableSnow,2,Returns true if the biome have snowfall instead a normal rain. +func_76747_a,getSpawnableList,2,Returns the correspondent list of the EnumCreatureType informed. +func_76793_b,genStandardOre2,2,Standard ore generation helper. Generates Lapis Lazuli. +func_76795_a,genStandardOre1,2,Standard ore generation helper. Generates most ores. +func_76797_b,generateOres,2,Generates ores in the current chunk +func_76837_b,getBiomeGenAt,2,"Returns the BiomeGenBase related to the x, z position from the cache." +func_76838_a,cleanupCache,2,Removes BiomeCacheBlocks from this cache that haven't been accessed in at least 30 seconds. +func_76839_e,getCachedBiomes,2,Returns the array of cached biome types in the BiomeCacheBlock at the given location. +func_76840_a,getBiomeCacheBlock,2,Returns a biome cache block at location specified. +func_76885_a,getBiomeGenAt,2,"Returns the BiomeGenBase related to the x, z position from the cache block." +func_76931_a,getBiomeGenAt,2,"Return a list of biomes for the specified blocks. Args: listToReuse, x, y, width, length, cacheFlag (if false, don't check biomeCache to avoid infinite loop in BiomeCacheBlock)" +func_76932_a,getBiomesToSpawnIn,2,Gets the list of valid biomes for the player to spawn in. +func_76933_b,loadBlockGeneratorData,2,"Returns biomes to use for the blocks and loads the other data like temperature and humidity onto the WorldChunkManager Args: oldBiomeList, x, z, width, depth" +func_76935_a,getBiomeGenAt,2,"Returns the BiomeGenBase related to the x, z position on the world." +func_76936_a,getRainfall,2,"Returns a list of rainfall values for the specified blocks. Args: listToReuse, x, z, width, length." +func_76937_a,getBiomesForGeneration,2,Returns an array of biomes for the location input. +func_76938_b,cleanupCache,2,Calls the WorldChunkManager's biomeCache.cleanupCache() +func_76939_a,getTemperatureAtHeight,0,Return an adjusted version of a given temperature based on the y height +func_76940_a,areBiomesViable,2,checks given Chunk's Biomes against List of allowed ones +func_76975_c,renderShadow,0,"Renders the entity shadows at the position, shadow alpha and partialTickTime. Args: entity, x, y, z, shadowAlpha, partialTickTime" +func_76976_a,setRenderManager,0,Sets the RenderManager. +func_76977_a,renderEntityOnFire,0,"Renders fire on top of the entity. Args: entity, x, y, z, partialTickTime" +func_76978_a,renderOffsetAABB,0,"Renders a white box with the bounds of the AABB translated by the offset. Args: aabb, x, y, z" +func_76979_b,doRenderShadowAndFire,0,"Renders the entity's shadow and fire (if its on fire). Args: entity, x, y, z, yaw, partialTickTime" +func_76980_a,renderAABB,0,Adds to the tesselator a box using the aabb for the bounds. Args: aabb +func_76982_b,getWorldFromRenderManager,0,Returns the render manager's world object +func_76983_a,getFontRendererFromRenderManager,0,Returns the font renderer from the set render manager +func_76986_a,doRender,0,"Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic (Render of all recipes +func_77594_a,getInstance,2,Returns the static instance of this class +func_77596_b,addShapelessRecipe,2, +func_77599_b,getSmeltingList,2, +func_77602_a,instance,2, +func_77607_a,addRecipes,2,Adds the dye recipes to the CraftingManager. +func_77608_a,addRecipes,2,Adds the food recipes to the CraftingManager. +func_77609_a,addRecipes,2,Adds the armor recipes to the CraftingManager. +func_77612_l,getMaxDurability,2,Returns the maximum damage an item can take. +func_77613_e,getRarity,2,Return an item rarity from EnumRarity +func_77614_k,getHasSubtypes,2, +func_77615_a,onPlayerStoppedUsing,2,"called when the player releases the use item button. Args: itemstack, world, entityplayer, itemInUseCount" +func_77616_k,isItemTool,2,Checks isDamagable and if it cannot be stacked +func_77617_a,getIconFromDamage,0,Gets an icon index based on an item's damage value +func_77618_c,getIconFromDamageForRenderPass,0,Gets an icon index based on an item's damage value and the given render pass +func_77619_b,getItemEnchantability,2,"Return the enchantability factor of the item, most of the time is based on material." +func_77620_a,getColorFromDamage,0, +func_77621_a,getMovingObjectPositionFromPlayer,2, +func_77622_d,onCreated,2,Called when item is crafted/smelted. Used only by maps so far. +func_77623_v,requiresMultipleRenderPasses,0, +func_77624_a,addInformation,0,allows items to add custom lines of information to the mouseover description +func_77625_d,setMaxStackSize,2, +func_77626_a,getMaxItemUseDuration,2,How long it takes to use or consume an item +func_77627_a,setHasSubtypes,2, +func_77629_n_,shouldRotateAroundWhenRendering,0,Returns true if this item should be rotated by 180 degrees around the Y axis when being held in an entities hands. +func_77630_h,doesContainerItemLeaveCraftingGrid,2,"If this returns true, after a recipe involving this item is crafted the container item will be added to the player's inventory instead of remaining in the crafting grid." +func_77631_c,setPotionEffect,2,Sets the string representing this item's effect on a potion when used as an ingredient. +func_77634_r,hasContainerItem,2,True if this Item has a container item (a.k.a. crafting result) +func_77636_d,hasEffect,0, +func_77637_a,setCreativeTab,2,returns this; +func_77639_j,getItemStackLimit,2,Returns the maximum size of the stack for a specific item. *Isn't this more a Set than a Get?* +func_77640_w,getCreativeTab,0,gets the CreativeTab this item is displayed on +func_77642_a,setContainerItem,2, +func_77643_m_,isMap,2,false for all Items except sub-classes of ItemMapBase +func_77644_a,hitEntity,2,Current implementations of this method in child classes do not use the entry argument beside ev. They just raise the damage on the stack. +func_77645_m,isDamageable,2, +func_77647_b,getMetadata,2,Returns the metadata of the block which this Item (ItemBlock) can place +func_77648_a,onItemUse,2,"Description : Callback for item usage. If the item does something special on right clicking, he will have one of those. Return True if something happen and false if it don't. This is for ITEMS, not BLOCKS. Args : stack, player, world, x, y, z, side, hitX, hitY, hitZ" +func_77650_f,getIconIndex,0,Returns the icon index of the stack given as argument. +func_77651_p,getShareTag,2,"If this function returns true (or the item is damageable), the ItemStack's NBT tag will be sent to the client." +func_77653_i,getItemStackDisplayName,2, +func_77654_b,onItemUseFinish,2,"Called when the item in use count reach 0, e.g. item food eaten. Return the new ItemStack. Args : stack, world, entity" +func_77655_b,setUnlocalizedName,2,"Sets the unlocalized name of this item to the string passed as the parameter, prefixed by ""item.""" +func_77656_e,setMaxDurability,2,set max damage of an Item +func_77657_g,getUnlocalizedNameInefficiently,2,"Translates the unlocalized name of this item, but without the .name suffix, so the translation fails and the unlocalized name itself is returned." +func_77658_a,getUnlocalizedName,2,Returns the unlocalized name of this item. +func_77659_a,onItemRightClick,2,"Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer" +func_77661_b,getItemUseAction,2,returns the action that specifies what animation to play when the items is being used +func_77662_d,isFull3D,0,Returns True is the item is renderer in full 3D when hold. +func_77663_a,onUpdate,2,Called each tick as long the item is on a player inventory. Uses by maps to check if is on a player hand and update it's contents. +func_77664_n,setFull3D,2,Sets bFull3D to True and return the object. +func_77667_c,getUnlocalizedName,2,Returns the unlocalized name of this item. This version accepts an ItemStack so different stacks can have different names based on their damage or NBT. +func_77668_q,getContainerItem,2, +func_77828_a,validBookTagContents,2, +func_77831_g,isSplash,2,returns wether or not a potion is a throwable splash potion based on damage value +func_77832_l,getEffects,2,Returns a list of potion effects for the specified itemstack. +func_77833_h,isEffectInstant,0, +func_77834_f,getEffects,2,Returns a list of effects for the specified potion damage value. +func_77840_a,spawnCreature,2,"Spawns the creature specified by the egg's type in the location specified by the last three parameters. Parameters: world, entityID, x, y, z." +func_77842_f,getMaterialName,2,"Returns the name of the material this tool is made from as it is declared in EnumToolMaterial (meaning diamond would return ""EMERALD"")" +func_77844_a,setPotionEffect,2,"sets a potion effect on the item. Args: int potionId, int duration (will be multiplied by 20), int amplifier, float probability of effect happening\n \n@param duration Specified in seconds (will be multiplied by 20)" +func_77845_h,isWolfsFavoriteMeat,2,Whether wolves like this food (true for raw and cooked porkchop). +func_77848_i,setAlwaysEdible,2,"Set the field 'alwaysEdible' to true, and make the food edible even if the player don't need to eat." +func_77849_c,onFoodEaten,2, +func_77861_e,getToolMaterialName,2,Return the name for this tool's material. +func_77872_a,updateMapData,2, +func_77873_a,getMapData,2, +func_77875_a,tryPlaceContainedLiquid,2,Attempts to place the liquid contained inside the bucket. +func_77906_a,brewBitOperations,2,Manipulates the specified bit of the potion damage value according to the rules passed from applyIngredient. +func_77907_h,countSetFlags,2,Returns the number of 1 bits in the given integer. +func_77910_c,isFlagSet,2,"Returns 1 if the flag is set, 0 if it is not set." +func_77911_a,calcPotionLiquidColor,2,Given a {@link Collection}<{@link PotionEffect}> will return an Integer color. +func_77912_a,parsePotionEffects,2, +func_77913_a,applyIngredient,2,Returns the new potion damage value after the specified ingredient info is applied to the specified potion. +func_77914_a,checkFlag,2,Checks if the bit at 1 << j is on in i. +func_77916_d,isFlagUnset,2,"Returns 0 if the flag is set, 1 if it is not set." +func_77917_b,getPotionEffects,2,Returns a list of effects for the specified potion damage value. +func_77942_o,hasTagCompound,2,Returns true if the ItemStack has an NBTTagCompound. Currently used to store enchantments. +func_77943_a,tryPlaceItemIntoWorld,2, +func_77944_b,copyItemStack,2,"Creates a copy of a ItemStack, a null parameters will return a null." +func_77945_a,updateAnimation,2,Called each tick as long the ItemStack in on player inventory. Used to progress the pickup animation and update maps. +func_77946_l,copy,2,Returns a new stack with the same properties. +func_77948_v,isItemEnchanted,2,True if the item has enchantment data +func_77949_a,loadItemStackFromNBT,2, +func_77950_b,onItemUseFinish,2,"Called when the item in use count reach 0, e.g. item food eaten. Return the new ItemStack. Args : world, entity" +func_77951_h,isItemDamaged,2,returns true when a damageable item is damaged +func_77952_i,getCurrentDurability,2, +func_77953_t,getRarity,2, +func_77954_c,getIconIndex,0,Returns the icon index of the current stack. +func_77955_b,writeToNBT,2,Write the stack fields to a NBT object. Return the new NBT object. +func_77956_u,isItemEnchantable,2,True if it is a tool and has no enchantments to begin with +func_77957_a,useItemRightClick,2,"Called whenever this item stack is equipped and right clicked. Returns the new item stack to put in the position where this item is. Args: world, player" +func_77958_k,getMaxDurability,2,Returns the max damage an item in the stack can take. +func_77959_d,isItemStackEqual,2,compares ItemStack argument to the instance ItemStack; returns true if both ItemStacks are equal +func_77960_j,getMetadata,2, +func_77961_a,hitEntity,2,Calls the corresponding fct in di +func_77962_s,hasEffect,0, +func_77963_c,readFromNBT,2,Read the stack fields from a NBT object. +func_77964_b,setMetadata,2, +func_77966_a,addEnchantment,2,Adds an enchantment with a desired level on the ItemStack. +func_77969_a,isItemEqual,2,compares ItemStack argument to the instance ItemStack; returns true if the Items contained in both ItemStacks are equal +func_77970_a,areItemStackTagsEqual,2, +func_77972_a,damageItem,2,Damages the item in the ItemStack +func_77973_b,getItem,2,Returns the object corresponding to the stack. +func_77974_b,onPlayerStoppedUsing,2,"Called when the player releases the use item button. Args: world, entityplayer, itemInUseCount" +func_77975_n,getItemUseAction,2, +func_77976_d,getMaxStackSize,2,Returns maximum size of the stack. +func_77977_a,getUnlocalizedName,2, +func_77978_p,getTagCompound,2,Returns the NBTTagCompound of the ItemStack. +func_77979_a,splitStack,2,Remove the argument from the stack size. Return a new stack object with argument size. +func_77980_a,onCrafting,2, +func_77981_g,getHasSubtypes,2, +func_77982_d,setTagCompound,2,"Assigns a NBTTagCompound to the ItemStack, minecraft validates that only non-stackable items can have it." +func_77983_a,setTagInfo,2, +func_77984_f,isItemStackDamageable,2,true if this itemStack is damageable +func_77985_e,isStackable,2,Returns true if the ItemStack can hold 2 or more units of the item. +func_77986_q,getEnchantmentTagList,2, +func_77988_m,getMaxItemUseDuration,2, +func_77989_b,areItemStacksEqual,2,compares ItemStack argument1 with ItemStack argument2; returns true if both ItemStacks are equal +func_77995_e,getEnchantability,2,Return the natural enchantability factor of the material. +func_77996_d,getHarvestLevel,2,"The level of material this tool can harvest (3 = DIAMOND, 2 = IRON, 1 = STONE, 0 = IRON/GOLD)" +func_77997_a,getMaxUses,2,"The number of uses this material allows. (wood = 59, stone = 131, iron = 250, diamond = 1561, gold = 32)" +func_77998_b,getEfficiencyOnProperMaterial,2,The strength of this tool material against blocks which it is effective against. +func_78000_c,getDamageVsEntity,2,Returns the damage against a given entity. +func_78013_b,getTabLabel,0, +func_78014_h,setNoTitle,2, +func_78015_f,getBackgroundImageName,0, +func_78016_d,getTabIconItem,0, +func_78017_i,shouldHidePlayerInventory,0, +func_78018_a,displayAllReleventItems,0,only shows items which have tabToDisplayOn == this +func_78019_g,drawInForegroundOfTab,0, +func_78020_k,getTabColumn,0,returns index % 6 +func_78021_a,getTabIndex,0, +func_78022_j,setNoScrollbar,2, +func_78023_l,isTabInFirstRow,0,returns tabIndex < 6 +func_78024_c,getTranslatedTabLabel,0,Gets the translated Label. +func_78025_a,setBackgroundImageName,2, +func_78044_b,getDamageReductionAmount,2,"Return the damage reduction (each 1 point is a half a shield on gui) of the piece index passed (0 = helmet, 1 = plate, 2 = legs and 3 = boots)" +func_78045_a,getEnchantability,2,Return the enchantability factor of the material. +func_78046_a,getDurability,2,Returns the durability for a armor slot of for this type. +func_78084_a,getTextureOffset,0, +func_78085_a,setTextureOffset,0, +func_78086_a,setLivingAnimations,0,Used for easily adding entity-dependent animations. The second and third float params here are the same second and third as in the setRotationAngles method. +func_78087_a,setRotationAngles,0,"Sets the model's various rotation angles. For bipeds, par1 and par2 are used for animating the movement of arms and legs, where par1 represents the time(so that arms and legs swing back and forth) and par2 represents how ""far"" arms and legs can swing at most." +func_78088_a,render,0,Sets the models various rotation angles then renders the model. +func_78110_b,renderEars,0,"renders the ears (specifically, deadmau5's)" +func_78111_c,renderCloak,0,"Renders the cloak of the current biped (in most cases, it's a player)" +func_78164_a,renderSign,0,Renders the sign model through TileEntitySignRenderer +func_78214_a,updateRotations,0,"Updates the rotations in the parameters for rotations greater than 180 degrees or less than -180 degrees. It adds or subtracts 360 degrees, so that the appearance is the same, although the numbers are then simplified to range -180 to 180" +func_78231_a,renderAll,0,This method renders out all parts of the chest model. +func_78235_a,flipFace,0, +func_78236_a,draw,0, +func_78240_a,setTexturePosition,0, +func_78245_a,render,0,Draw the six sided box defined by this ModelBox +func_78255_a,renderStringAtPos,0,"Render a single line string at the current (posX,posY) and update posX" +func_78256_a,getStringWidth,0,Returns the width of this string. Equivalent of FontMetrics.stringWidth(String s). +func_78257_a,loadGlyphTexture,0,Load one of the /font/glyph_XX.png into a new GL texture and store the texture ID in glyphTextureName array. +func_78258_a,renderString,0,"Render single line string by setting GL color, current (posX,posY), and calling renderStringAtPos()" +func_78259_e,sizeStringToWidth,0,Determines how many characters from the string will fit into the specified width. +func_78260_a,getBidiFlag,0,Get bidiFlag that controls if the Unicode Bidirectional Algorithm should be run before rendering any string +func_78261_a,drawStringWithShadow,0,Draws the specified string with a shadow. +func_78262_a,trimStringToWidth,0,"Trims a string to a specified width, and will reverse it if par3 is set." +func_78263_a,getCharWidth,0,Returns the width of this character as rendered. +func_78264_a,setUnicodeFlag,0,Set unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. +func_78265_b,resetStyles,0,Reset all style flag fields in the class to false; called at the start of string rendering +func_78266_a,renderDefaultChar,0,"Render a single character with the default.png font at current (posX,posY) location..." +func_78267_b,splitStringWidth,0,Returns the width of the wordwrapped String (maximum length is parameter k) +func_78268_b,renderSplitString,0,Perform actual work of rendering a multi-line string with wordwrap and with darker drop shadow color if flag is set +func_78269_a,trimStringToWidth,0,Trims a string to fit a specified Width. +func_78270_c,isFormatSpecial,0,Checks if the char code is O-K...lLrRk-o... used to set special formatting. +func_78271_c,listFormattedStringToWidth,0,Breaks a string into a list of pieces that will fit a specified width. +func_78272_b,isFormatColor,0,"Checks if the char code is a hexadecimal character, used to set colour." +func_78273_d,trimStringNewline,0,Remove all newline characters from the end of the string +func_78274_b,renderStringAligned,0,Render string either left or right aligned depending on bidiFlag +func_78275_b,setBidiFlag,0,Set bidiFlag to control if the Unicode Bidirectional Algorithm should be run before rendering any string. +func_78276_b,drawString,0,Draws the specified string. +func_78277_a,renderUnicodeChar,0,"Render a single Unicode character at current (posX,posY) location using one of the /font/glyph_XX.png files..." +func_78278_a,renderCharAtPos,0,Pick how to render a single character and return the width used. +func_78279_b,drawSplitString,0,Splits and draws a String with wordwrap (maximum length is parameter k) +func_78280_d,wrapFormattedStringToWidth,0,Inserts newline and formatting into a string to wrap it within the specified width. +func_78282_e,getFormatFromString,0,Digests a string for nonprinting formatting characters then returns a string containing only that formatting. +func_78324_d,getScaledHeight_double,0, +func_78325_e,getScaleFactor,0, +func_78326_a,getScaledWidth,0, +func_78327_c,getScaledWidth_double,0, +func_78328_b,getScaledHeight,0, +func_78369_a,setColorRGBA_F,0,"Sets the RGBA values for the color, converting from floats between 0 and 1 to integers from 0-255." +func_78370_a,setColorRGBA,0,Sets the RGBA values for the color. Also clamps them to 0-255. +func_78371_b,startDrawing,0,Resets tessellator state and prepares for drawing (with the specified draw mode). +func_78372_c,addTranslation,0,Offsets the translation for all vertices in the current draw call. +func_78373_b,setTranslation,0,Sets the translation for all vertices in the current draw call. +func_78374_a,addVertexWithUV,0,"Adds a vertex specifying both x,y,z and the texture u,v for it." +func_78375_b,setNormal,0,Sets the normal for the current draw call. +func_78376_a,setColorOpaque,0,"Sets the RGB values as specified, and sets alpha to opaque." +func_78377_a,addVertex,0,"Adds a vertex with the specified x,y,z to the current draw call. It will trigger a draw() if the buffer gets full." +func_78378_d,setColorOpaque_I,0,Sets the color to the given opaque value (stored as byte values packed in an integer). +func_78379_d,reset,0,Clears the tessellator state in preparation for new drawing. +func_78380_c,setBrightness,0, +func_78381_a,draw,0,Draws the data set up in this tessellator and resets the state to prepare for new drawing. +func_78382_b,startDrawingQuads,0,Sets draw mode in the tessellator to draw quads. +func_78383_c,disableColor,0,Disables colors for the current draw call. +func_78384_a,setColorRGBA_I,0,Sets the color to the given color (packed as bytes in integer) and alpha values. +func_78385_a,setTextureUV,0,Sets the texture coordinates. +func_78386_a,setColorOpaque_F,0,"Sets the RGB values as specified, converting from floats between 0 and 1 to integers from 0-255." +func_78418_a,rendersChunk,0, +func_78419_a,callLists,0, +func_78420_a,addGLRenderList,0, +func_78421_b,resetList,0,Resets this RenderList to an uninitialized state. +func_78422_a,setupRenderList,0, +func_78432_a,parseUserSkin,0, +func_78433_b,setAreaOpaque,0,Makes the given area of the image opaque +func_78434_a,setAreaTransparent,0,Makes the given area of the image transparent if it was previously completely opaque (used to remove the outer layer of a skin around the head if it was saved all opaque; this would be redundant so it's assumed that the skin maker is just using an image editor without an alpha channel) +func_78435_c,hasTransparency,0,Returns true if the given area of the image contains transparent pixels +func_78439_a,renderItemIn2D,0,Renders an item held in hand as a 2D texture with thickness +func_78440_a,renderItemInFirstPerson,0,Renders the active item in the player's hand when in first person mode. Args: partialTickTime +func_78441_a,updateEquippedItem,0, +func_78442_d,renderFireInFirstPerson,0,Renders the fire on the screen for first person mode. Arg: partialTickTime +func_78443_a,renderItem,0,Renders the item stack for being in an entity's hand Args: itemStack +func_78444_b,resetEquippedProgress,0,Resets equippedProgress +func_78445_c,resetEquippedProgress2,0,Resets equippedProgress +func_78446_a,renderInsideOfBlock,0,"Renders the texture of the block the player is inside as an overlay. Args: partialTickTime, blockTextureIndex" +func_78447_b,renderOverlays,0,Renders all the overlays that are in first person mode. Args: partialTickTime +func_78448_c,renderWaterOverlayTexture,0,Renders a texture that warps around based on the direction the player is looking. Texture needs to be bound before being called. Used for the water overlay. Args: parialTickTime +func_78463_b,enableLightmap,0,Enable lightmap in secondary texture unit +func_78464_a,updateRenderer,0,Updates the entity renderer +func_78466_h,updateFogColor,0,calculates fog and calls glClearColor +func_78467_g,orientCamera,0,sets up player's eye (or camera in third person mode) +func_78468_a,setupFog,0,Sets up the fog to be rendered. If the arg passed in is -1 the fog starts at 0 and goes to 80% of far plane distance and is used for sky rendering. +func_78469_a,setFogColorBuffer,0,Update and return fogColorBuffer with the RGBA values passed as arguments +func_78470_f,updateTorchFlicker,0,Recompute a random value that is applied to block color in updateLightmap() +func_78471_a,renderWorld,0, +func_78472_g,updateLightmap,0, +func_78473_a,getMouseOver,0,Finds what block or object the mouse is over at the specified partial tick time. Args: partialTickTime +func_78474_d,renderRainSnow,0,Render rain and snow +func_78475_f,setupViewBobbing,0,Setups all the GL settings for view bobbing. Args: partialTickTime +func_78476_b,renderHand,0,Render player hand +func_78477_e,updateFovModifierHand,0,Update FOV modifier hand +func_78478_c,setupOverlayRendering,0,Setup orthogonal projection for rendering GUI screen overlays +func_78479_a,setupCameraTransform,0,"sets up projection, view effects, camera position/rotation" +func_78480_b,updateCameraAndRender,0,Will update any inputs that effect the camera angle (mouse) and then render the world and GUI +func_78481_a,getFOVModifier,0,Changes the field of view of the player depending on if they are underwater or not +func_78482_e,hurtCameraEffect,0, +func_78483_a,disableLightmap,0,Disable secondary texture unit used by lightmap +func_78484_h,addRainParticles,0, +func_78546_a,isBoundingBoxInFrustum,0,"Returns true if the bounding box is inside all 6 clipping planes, otherwise returns false." +func_78547_a,setPosition,0, +func_78548_b,isBoxInFrustum,0,"Calls the clipping helper. Returns true if the box is inside all 6 clipping planes, otherwise returns false." +func_78553_b,isBoxInFrustum,0,"Returns true if the box is inside all 6 clipping planes, otherwise returns false." +func_78558_a,getInstance,0,Initialises the ClippingHelper object then returns an instance of it. +func_78559_a,normalize,0,Normalize the frustum. +func_78560_b,init,0, +func_78713_a,getEntityRenderObject,0, +func_78714_a,getDistanceToCamera,0, +func_78715_a,getEntityClassRenderObject,0, +func_78716_a,getFontRenderer,0,Returns the font renderer +func_78717_a,set,0,World sets this RenderManager's worldObj to the world provided +func_78738_b,createNextComponentRandom,2, +func_78743_b,clickBlock,0,Called by Minecraft class when the player is hitting a block with an item. +func_78744_a,clickBlockCreative,0,Block dig operation in creative mode (instantly digs the block). +func_78745_b,flipPlayer,0,Flips the player around. +func_78746_a,setGameType,0,Sets the game type for the player. +func_78747_a,enableEverythingIsScrewedUpMode,0,"If modified to return true, the player spins around slowly around (0, 68.5, 0). The GUI is disabled, the view is set to first person, and both chat and menu are disabled. Unless the server is modified to ignore illegal stances, attempting to enter a world at all will result in an immediate kick due to an illegal stance. Appears to be left-over debug, or demo code." +func_78748_a,setPlayerCapabilities,0,Sets player capabilities depending on current gametype. params: player +func_78749_i,extendedReach,0,true for hitting entities far away. +func_78750_j,syncCurrentPlayItem,0,Syncs the current player item with the server +func_78751_a,onPlayerDestroyBlock,0,Called when a player completes the destruction of a block +func_78752_a,sendPacketDropItem,0,Sends a Packet107 to the server to drop the item on the ground +func_78753_a,windowClick,0,Handles slot clicks sends a packet to the server. +func_78755_b,shouldDrawHUD,0, +func_78756_a,sendEnchantPacket,0,GuiEnchantment uses this during multiplayer to tell PlayerControllerMP to send a packet indicating the enchantment action the player has taken. +func_78757_d,getBlockReachDistance,0,player reach distance = 4F +func_78758_h,isInCreativeMode,0,returns true if player is in creative mode +func_78759_c,onPlayerDamageBlock,0,Called when a player damages a block and updates damage counters +func_78760_a,onPlayerRightClick,0,Handles a player's right click. +func_78761_a,sendSlotPacket,0,Used in PlayerControllerMP to update the server with an ItemStack in a slot. +func_78762_g,isNotCreative,0,"Checks if the player is not creative, used for checking if it should break a block instantly" +func_78763_f,gameIsSurvivalOrAdventure,0, +func_78764_a,attackEntity,0,Attacks an entity +func_78765_e,updateController,0, +func_78766_c,onStoppedUsingItem,0, +func_78767_c,resetBlockRemoving,0,Resets current block damage and field_78778_j +func_78768_b,interactWithEntitySendPacket,0,Send packet to server - player is interacting with another entity (left click) +func_78769_a,sendUseItem,0,"Notifies the server of things like consuming food, etc..." +func_78784_a,setTextureOffset,0, +func_78785_a,render,0, +func_78786_a,addBox,0, +func_78787_b,setTextureSize,0,Returns the model renderer with the new texture parameters. +func_78788_d,compileDisplayList,0,Compiles a GL display list for this model +func_78789_a,addBox,0, +func_78790_a,addBox,0,"Creates a textured box. Args: originX, originY, originZ, width, height, depth, scaleFactor." +func_78791_b,renderWithRotation,0, +func_78792_a,addChild,0,Sets the current box's rotation points and rotation angles to another box. +func_78793_a,setRotationPoint,0, +func_78794_c,postRender,0,Allows the changing of Angles after a box has been rendered +func_78815_a,getRandomComponent,2, +func_78817_b,getNextMineShaftComponent,2, +func_78836_a,getNBTCompound,0,"Returns an NBTTagCompound with the server's name, IP and maybe acceptTextures." +func_78837_a,getServerDataFromNBTCompound,0,"Takes an NBTTagCompound with 'name' and 'ip' keys, returns a ServerData instance." +func_78849_a,addServerData,0,Adds the given ServerData instance to the list. +func_78850_a,getServerData,0,Gets the ServerData instance stored for the given index in the list. +func_78851_b,removeServerData,0,Removes the ServerData instance stored for the given index in the list. +func_78853_a,loadServerList,0,"Loads a list of servers from servers.dat, by running ServerData.getServerDataFromNBTCompound on each NBT compound found in the ""servers"" tag list." +func_78855_b,saveServerList,0,"Runs getNBTCompound on each ServerData instance, puts everything into a ""servers"" NBT list and writes it to servers.dat." +func_78856_c,countServers,0,Counts the number of ServerData instances in the list. +func_78857_a,swapServers,0,"Takes two list indexes, and swaps their order around." +func_78861_a,getIP,0, +func_78862_a,parseIntWithDefault,0, +func_78863_b,getServerAddress,0,"Returns a server's address and port for the specified hostname, looking up the SRV record if possible" +func_78864_b,getPort,0, +func_78867_a,addBlockHitEffects,0,"Adds block hit particles for the specified block. Args: x, y, z, sideHit" +func_78868_a,updateEffects,0, +func_78869_b,getStatistics,0, +func_78870_a,clearEffects,0, +func_78872_b,renderLitParticles,0, +func_78873_a,addEffect,0, +func_78874_a,renderParticles,0,"Renders all current particles. Args player, partialTickTime" +func_78879_f,getCenterY,2, +func_78880_d,getZSize,2,Get dimension of the bounding box in the z direction. +func_78881_e,getCenterX,2, +func_78882_c,getYSize,2,Get dimension of the bounding box in the y direction. +func_78883_b,getXSize,2,Get dimension of the bounding box in the x direction. +func_78884_a,intersectsWith,2,Discover if bounding box can fit within the current bounding box object. +func_78885_a,intersectsWith,2,Discover if a coordinate is inside the bounding box area. +func_78886_a,offset,2,"Offsets the current bounding box by the specified coordinates. Args: x, y, z" +func_78887_a,getNewBoundingBox,2,returns a new StructureBoundingBox with MAX values +func_78888_b,expandTo,2,Expands a bounding box's dimensions to include the supplied bounding box. +func_78889_a,getComponentToAddBoundingBox,2,used to project a possible new component Bounding Box - to check if it would cut anything already spawned +func_78890_b,isVecInside,2,Discover if a coordinate is inside the bounding box volume. +func_78891_g,getCenterZ,2, +func_78898_a,updatePlayerMoveState,0, +func_78904_d,callOcclusionQueryList,0,Renders the occlusion query GL List +func_78905_g,setupGLTranslation,0, +func_78906_e,skipAllRenderPasses,0,Checks if all render passes are to be skipped. Returns false if the renderer is not initialized +func_78908_a,updateInFrustum,0, +func_78909_a,getGLCallListForPass,0,Takes in the pass the call list is being requested for. Args: renderPass +func_78910_b,setDontDraw,0,When called this renderer won't draw anymore until its gets initialized again +func_78911_c,stopRendering,0, +func_78912_a,distanceToEntitySquared,0,"Returns the distance of this chunk renderer to the entity without performing the final normalizing square root, for performance reasons." +func_78913_a,setPosition,0,Sets a new position for the renderer and setting it up so it can be reloaded with the new data for that position +func_78914_f,markDirty,0,Marks the current renderer data as dirty and needing to be updated. +func_80003_ah,getPlayerUsageSnooper,0, +func_80006_f,getUniqueID,0, +func_80007_l,getDimensionName,2,"Returns the dimension's name, e.g. ""The End"", ""Nether"", or ""Overworld""." +func_82114_b,getCommandSenderPosition,2,Return the position for this command sender. +func_82141_a,copyDataFrom,2,"Copies important data from another entity to this entity. Used when teleporting entities between worlds, as this actually deletes the teleporting entity and re-creates it on the other side. Params: Entity to copy from, unused (always true)" +func_82142_c,setInvisible,2, +func_82143_as,getMaxFallHeight,2,The maximum height from where the entity is alowed to jump (used in pathfinder) +func_82145_z,getMaxInPortalTime,2,Return the amount of time this entity should stay in a portal before being transported. +func_82147_ab,getPortalCooldown,2,Return the amount of cooldown before this entity can use a portal again. +func_82148_at,getTeleportDirection,2, +func_82149_j,copyLocationAndAnglesFrom,2,Sets this entity's location and angles to the location and angles of the passed in entity. +func_82150_aj,isInvisible,2, +func_82159_b,getArmorPosition,2, +func_82160_b,dropEquipment,2,Drop the equipment for this entity. +func_82161_a,getArmorItemForSlot,2,"Gets the vanilla armor Item that can go in the slot specified for the given tier.\n \n@param armorSlot The armor slot number (1-4)\n@param itemTier Vanilla item material tier (0=leather, 1=gold, 2=chain, 3=iron, 4=diamond)" +func_82162_bC,enchantEquipment,2,Enchants the entity's armor and held item based on difficulty +func_82164_bB,addRandomArmor,2,Makes entity wear random armor based on difficulty +func_82165_m,isPotionActive,2, +func_82166_i,getArmSwingAnimationEnd,2,"Returns an integer indicating the end point of the swing animation, used by {@link #swingProgress} to provide a progress indicator. Takes dig speed enchantments into account." +func_82167_n,collideWithEntity,2, +func_82168_bl,updateArmSwingProgress,2,Updates the arm swing progress counters and animation progress +func_82169_q,getCurrentArmor,2, +func_82170_o,removePotionEffect,2,Remove the specified potion effect from this entity. +func_82171_bF,canBeSteered,2,"returns true if all the conditions for steering the entity are met. For pigs, this is true if it is being ridden by a player and the player is holding a carrot-on-a-stick" +func_82183_n,getAIControlledByPlayer,2,Return the AI task for player control. +func_82185_r,setCollarColor,2,Set this wolf's collar color. +func_82186_bH,getCollarColor,2,Return this wolf's collar color. +func_82187_q,setLookingForHome,2, +func_82188_j,adjustProbability,2,Adjusts the probability of obtaining a given recipe being offered by a villager +func_82196_d,attackEntityWithRangedAttack,2,Attack the specified entity using a ranged attack. +func_82197_f,setAggressive,2,Set whether this witch is aggressive at an entity. +func_82198_m,getAggressive,2,Return whether this witch is aggressive at an entity. +func_82201_a,setSkeletonType,2,Set this skeleton's type. +func_82202_m,getSkeletonType,2,Return this skeleton's type. +func_82203_t,getWatchedTargetId,2,"Returns the target entity ID if present, or -1 if not @param par1 The target offset, should be from 0-2" +func_82205_o,isArmored,2,Returns whether the wither is armored with its boss armor or not by checking whether its health is below half of its maximum. +func_82209_a,launchWitherSkullToCoords,2,"Launches a Wither skull toward (par2, par4, par6)" +func_82212_n,getInvulTime,2, +func_82215_s,setInvulTime,2, +func_82216_a,launchWitherSkullToEntity,2, +func_82227_f,setChild,2,Set whether this zombie is a child. +func_82228_a,startConversion,2,Starts converting this zombie into a villager. The zombie converts into a villager after the specified time in ticks. +func_82229_g,setVillager,2,Set whether this zombie is a villager. +func_82230_o,isConverting,2,Returns whether this zombie is in the process of converting to a villager +func_82231_m,isVillager,2,Return whether this zombie is a villager. +func_82232_p,convertToVillager,2,Convert this zombie into a villager. +func_82233_q,getConversionTimeBoost,2,Return the amount of time decremented from conversionTime every tick. +func_82235_h,getIsBatHanging,2, +func_82236_f,setIsBatHanging,2, +func_82238_cc,getHideCape,0, +func_82239_b,setHideCape,2, +func_82241_s,getHideCape,0, +func_82242_a,addExperienceLevel,2,Add experience levels to this player. +func_82243_bO,getArmorVisibility,2,"When searching for vulnerable players, if a player is invisible, the return value of this is the chance of seeing them anyway." +func_82244_d,displayGUIAnvil,2,Displays the GUI for interacting with an anvil. +func_82245_bX,isSpawnForced,2, +func_82246_f,isCurrentToolAdventureModeExempt,2,Returns true if the given block can be mined with the current tool in adventure mode. +func_82247_a,canPlayerEdit,2, +func_82328_a,setDirection,2, +func_82329_d,getWidthPixels,2, +func_82330_g,getHeightPixels,2, +func_82333_j,getRotation,2,Return the rotation of the item currently on this frame. +func_82334_a,setDisplayedItem,2, +func_82335_i,getDisplayedItem,2, +func_82336_g,setItemRotation,2, +func_82338_g,setAlphaF,0,Sets the particle alpha (float) +func_82340_a,setPotionDamage,2, +func_82341_c,getMotionFactor,2,Return the motion factor for this projectile. The factor is multiplied by the original motion. +func_82342_d,isInvulnerable,2,Return whether this skull comes from an invulnerable (aura) wither boss. +func_82343_e,setInvulnerable,2,Set whether this skull comes from an invulnerable (aura) wither boss. +func_82356_Z,isCommandBlockEnabled,2,Return whether command blocks are enabled. +func_82357_ak,getSpawnProtectionSize,2,Return the spawn protection area's size. +func_82358_a,isUsernameIndex,2,Return whether the specified command parameter index is a username parameter. +func_82359_c,getPlayer,2, +func_82360_a,getStringFromNthArg,2, +func_82362_a,getRequiredPermissionLevel,2,Return the required permission level for this command. +func_82363_b,parseDouble,2,Parses a double from the given string or throws an exception if it's not a double. +func_82366_d,getGameRules,2,Return the game rule set this command should be able to manipulate. +func_82370_a,getUsernameIndex,2,Return a command's first parameter index containing a valid username. +func_82371_e,getDistanceSquaredToChunkCoordinates,2,Return the squared distance between this coordinates and the ChunkCoordinates given as argument. +func_82372_a,getMovementDirection,2,Returns the movement direction from a velocity vector. +func_82375_f,getDefaultMinimumLevel,2,Gets the default minimum experience level (argument lm) +func_82376_e,getDefaultMaximumLevel,2,Gets the default maximum experience level (argument l) +func_82377_a,matchesMultiplePlayers,2,Returns whether the given pattern can match more than one player. +func_82378_b,hasArguments,2,Returns whether the given token has any arguments set. +func_82379_d,getDefaultMaximumRange,2,Gets the default maximum range (argument r). +func_82380_c,matchPlayers,2,Returns an array of all players matched by the given at-token. +func_82381_h,getArgumentMap,2,"Parses the given argument string, turning it into a HashMap<String, String> of name->value." +func_82382_g,getDefaultCount,2,"Gets the default number of players to return (argument c, 0 for infinite)" +func_82383_a,hasTheseArguments,2,Returns whether the given token (parameter 1) has exactly the given arguments (parameter 2). +func_82384_c,getDefaultMinimumRange,2,Gets the default minimum range (argument rm). +func_82386_a,matchOnePlayer,2,Returns the one player that matches the given at-token. Returns null if more than one player matches. +func_82403_a,renderFrameItemAsBlock,0,Render the item frame's item as a block. +func_82406_b,renderItemAndEffectIntoGUI,0,"Render the item's icon or block into the GUI, including the glint effect." +func_82441_a,renderFirstPersonArm,0, +func_82448_a,transferEntityToWorld,2,Transfers an entity from a world to another world. +func_82449_a,findPlayers,2,Find all players in a specified range and narrowing down by other parameters +func_82482_a,dispense,2,Dispenses the specified ItemStack from a dispenser. +func_82485_a,playDispenseSound,2,Play the dispense sound from the specified block. +func_82486_a,doDispense,2, +func_82487_b,dispenseStack,2,"Dispense the specified stack, play the dispense sound and spawn particles." +func_82489_a,spawnDispenseParticles,2,Order clients to display dispense particles from the specified block and facing. +func_82499_a,getProjectileEntity,2,Return the projectile entity spawned by this dispense behavior. +func_82565_a,canEntityStandAt,2,"Checks if an entity collides with blocks at a position. Returns : 1 = clear, 0 = blocked, -1 = water (if avoiding water), -2 = lava (if not already in lava), -3 = fence or rails, -4 = closed trapdoor, 2 = open trapdoor or water (if not avoiding) or open door (if can pass trhough). Args : entity, posX, posY, posZ, entitySize, avoidsWater, canPassClosedWoodenDoor, scanPassOpe" +func_82571_y,getGeneratorOptions,2, +func_82572_b,incrementTotalWorldTime,2, +func_82573_f,getWorldTotalTime,2, +func_82574_x,getGameRulesInstance,2,Gets the GameRules class Instance. +func_82580_o,removeTag,2,Remove the specified tag. +func_82581_a,createCrashReport,2,Create a crash report which indicates a NBT read error. +func_82582_d,hasNoTags,2,Return whether this compound has no tags. +func_82594_a,getObject,2, +func_82595_a,putObject,2,Register an object on this registry. +func_82599_e,getFrontOffsetZ,2,Returns a offset that addresses the block in front of this facing. +func_82600_a,getFront,2,Returns the facing that represents the block in front of it. +func_82601_c,getFrontOffsetX,2,Returns a offset that addresses the block in front of this facing. +func_82615_a,getX,2, +func_82616_c,getZ,2, +func_82617_b,getY,2, +func_82618_k,getWorld,2, +func_82620_h,getBlockMetadata,2, +func_82621_f,getZInt,2, +func_82622_e,getYInt,2, +func_82623_d,getXInt,2, +func_82632_g,boostSpeed,2,Boost the entity's movement speed. +func_82633_h,isControlledByPlayer,2,Return whether the entity is being controlled by a player. +func_82634_f,isSpeedBoosted,2,Return whether the entity's speed is boosted. +func_82644_b,getWorldFeatures,2,Return the list of world features enabled on this preset. +func_82647_a,setBiome,2,Set the biome used on this preset. +func_82648_a,getBiome,2,Return the biome used on this preset. +func_82649_e,getDefaultFlatGenerator,2, +func_82650_c,getFlatLayers,2,Return the list of layers on this preset. +func_82651_a,createFlatGeneratorFromString,2, +func_82656_d,getMinY,2,"Return the minimum Y coordinate for this layer, set during generation." +func_82657_a,getLayerCount,2,Return the amount of layers for this set of layers. +func_82658_c,getFillBlockMeta,2,Return the block metadata used on this set of layers. +func_82660_d,setMinY,2,Set the minimum Y coordinate for this layer. +func_82667_a,getScatteredFeatureSpawnList,2,returns possible spawns for scattered features +func_82683_b,setDefaultPlayerReputation,2, +func_82684_a,getReputationForPlayer,2,Return the village reputation for a player +func_82686_i,isMatingSeason,2,Return whether villagers mating refractory period has passed +func_82687_d,isPlayerReputationTooLow,2,Return whether this player has a too low reputation with this village. +func_82688_a,setReputationForPlayer,2,Set the village reputation for a player. +func_82689_b,writeVillageDataToNBT,2,Write this village's data to NBT. +func_82690_a,readVillageDataFromNBT,2,Read this village's data from NBT. +func_82692_h,endMatingSeason,2,Prevent villager breeding for a fixed interval of time +func_82695_e,recreateStructures,2, +func_82704_a,isEntityApplicable,2,Return whether the specified entity is applicable to this filter. +func_82705_e,getAnimal,2,Return whether this creature type is an animal. +func_82708_h,setObjectWatched,2, +func_82709_a,addObjectByDataType,2,"Add a new object for the DataWatcher to watch, using the specified data type." +func_82710_f,getWatchableObjectItemStack,2,Get a watchable object as an ItemStack. +func_82712_a,parseDoubleWithDefault,2,parses the string as double or returns the second parameter if it fails. +func_82713_a,parseDoubleWithDefaultAndMax,2, +func_82714_a,parseIntWithDefaultAndMax,2,parses the string as integer or returns the second parameter if it fails. this value is capped to par2 +func_82715_a,parseIntWithDefault,2,parses the string as integer or returns the second parameter if it fails +func_82716_a,getRandomDoubleInRange,2, +func_82719_a,writeCustomPotionEffectToNBT,2,Write a custom potion effect to a potion item's NBT data. +func_82720_e,getIsAmbient,2,Gets whether this potion effect originated from a beacon +func_82721_a,setSplashPotion,2,Set whether this potion is a splash potion. +func_82722_b,readCustomPotionEffectFromNBT,2,Read a custom potion effect from a potion item's NBT data. +func_82725_o,isMagicDamage,2,Returns true if the damage is magic based. +func_82726_p,setMagicDamage,2,Define the damage type as magic based. +func_82733_a,selectEntitiesWithinAABB,2, +func_82734_g,getChunkHeightMapMinimum,2,"Gets the heightMapMinimum field of the given chunk, or 0 if the chunk is not loaded. Coords are in blocks. Args: X, Z" +func_82736_K,getGameRules,2,Gets the GameRules instance. +func_82737_E,getTotalWorldTime,2, +func_82739_e,playBroadcastSound,2, +func_82742_i,resetUpdateEntityTick,2,Resets the updateEntityTick field to 0 +func_82743_f,getCreationCloudUpdateTick,0,retrieves the 'date' at which the PartiallyDestroyedBlock was created +func_82744_b,setCloudUpdateTick,0,saves the current Cloud update tick into the PartiallyDestroyedBlock +func_82746_a,broadcastSound,2, +func_82747_f,getWorldTypeID,2, +func_82750_a,setWorldName,2, +func_82752_c,isAdventure,2,Returns true if this is the ADVENTURE game type +func_82753_a,setPriority,2, +func_82756_a,getGameRuleStringValue,2,Gets the GameRule's value as String. +func_82757_a,setValue,2,Set this game rule value. +func_82758_b,getGameRuleBooleanValue,2,Gets the GameRule's value as boolean. +func_82763_b,getRules,2,Return the defined game rules. +func_82764_b,setOrCreateGameRule,2, +func_82765_e,hasRule,2,Return whether the specified game rule is defined. +func_82766_b,getGameRuleBooleanValue,2,Gets the boolean Game Rule value. +func_82767_a,getGameRuleStringValue,2,Gets the string Game Rule value. +func_82768_a,readGameRulesFromNBT,2,Set defined game rules from NBT. +func_82769_a,addGameRule,2,Define a game rule and its default value. +func_82770_a,writeGameRulesToNBT,2,Return the defined game rules as NBT. +func_82781_a,getEnchantments,2,Return the enchantments for the specified stack. +func_82782_a,setEnchantments,2,Set the enchantments for the specified stack. +func_82784_g,isRecipeDisabled,2, +func_82787_a,findMatchingRecipe,2, +func_82788_x,canItemEditBlocks,2,"Returns true if players can use this item to affect the world (e.g. placing blocks, placing ender eyes in portal) when not in creative" +func_82789_a,getIsRepairable,2,Return whether this item is repairable in an anvil. +func_82790_a,getColorFromItemStack,0, +func_82810_a,createHangingEntity,2,Create the hanging entity associated to this item. +func_82812_d,getArmorMaterial,2,Return the armor material for this armor item. +func_82814_b,getColor,2,Return the color for the specified armor ItemStack. +func_82815_c,removeColor,2,Remove the color from the specified armor ItemStack. +func_82816_b_,hasColor,2,Return whether the specified armor ItemStack has a color. +func_82824_a,setBossStatus,0, +func_82829_a,renderCloudsCheck,0,Render clouds if enabled +func_82830_a,getNightVisionBrightness,0,Gets the night vision brightness +func_82833_r,getDisplayName,2,returns the display name of the itemstack +func_82835_x,canEditBlocks,2, +func_82836_z,getItemFrame,2,Return the item frame this stack is on. Returns null if not on an item frame. +func_82837_s,hasDisplayName,2,Returns true if the itemstack has a display name +func_82838_A,getRepairCost,2,"Get this stack's repair cost, or 0 if no repair cost is defined." +func_82839_y,isOnItemFrame,2,Return whether this stack is on an item frame. +func_82840_a,getTooltip,0,Return a list of strings containing information about the item +func_82841_c,setRepairCost,2,Set this stack's repair cost. +func_82842_a,setItemFrame,2,Set the item frame this stack is on. +func_82846_b,transferStackInSlot,2,Take a stack from the specified inventory slot. +func_82847_b,removeCraftingFromCrafters,0,Remove this crafting listener from the listener list. +func_82848_d,updateRepairOutput,2,"called when the Anvil Input Slot changes, calculates the new result and puts it in the output slot" +func_82850_a,updateItemName,2,used by the Anvil GUI to update the Item Name being typed by the player +func_82869_a,canTakeStack,2,Return whether this slot's stack can be taken from this slot. +func_82870_a,onPickupFromSlot,2, +func_82877_b,setPlayerWalkSpeed,0, +func_82879_c,sendSettingsToServer,0,Send a client info packet with settings information to the server +func_82883_a,getUnicodeFlag,0,Get unicodeFlag controlling whether strings should be rendered with Unicode fonts instead of the default.png font. +func_82889_a,getBatSize,0,"not actually sure this is size, is not used as of now, but the model would be recreated if the value changed and it seems a good match for a bats size" +func_83015_S,getCurrentDate,2,returns a calendar object containing the current date +func_85029_a,addEntityCrashInfo,2, +func_85030_a,playSound,2, +func_85031_j,hitByEntity,2,Called when a player attacks an entity. If this returns true the attack will not happen. +func_85032_ar,isEntityInvulnerable,2,Return whether this entity is invulnerable to damage. +func_85033_bc,collideWithNearbyEntities,2, +func_85034_r,setArrowCountInEntity,2,sets the amount of arrows stuck in the entity. used for rendering those +func_85035_bI,getArrowCountInEntity,2,"counts the amount of arrows stuck in the entity. getting hit by arrows increases this, used in rendering" +func_85036_m,setCombatTask,2,sets this entity's combat AI. +func_85039_t,addScore,2,Add to player's score +func_85040_s,setScore,2,Set player's score +func_85052_h,getThrower,2, +func_85054_d,searchForOtherItemsNearby,2,Looks for other itemstacks nearby and tries to stack them together +func_85055_a,makeCrashReport,2,Creates a crash report for the exception +func_85056_g,getCategory,2, +func_85057_a,makeCategoryDepth,2,Creates a CrashReportCategory for the given stack trace depth +func_85058_a,makeCategory,2,Creates a CrashReportCategory +func_85069_a,firstTwoElementsOfStackTraceMatch,2,"Do the deepest two elements of our saved stack trace match the given elements, in order from the deepest?" +func_85070_b,trimStackTraceEntriesFromBottom,2,Removes the given number entries from the bottom of the stack trace. +func_85071_a,getLocationInfo,2,"Returns a string with world information on location.Args:x,y,z" +func_85072_a,appendToStringBuilder,2, +func_85073_a,getPrunedStackTrace,2,"Resets our stack trace according to the current trace, pruning the deepest 3 entries. The parameter indicates how many additional deepest entries to prune. Returns the number of entries in the resulting pruned stack trace." +func_85093_e,renderArrowsStuckInEntity,0,"renders arrows the Entity has been attacked with, attached to it" +func_85094_b,renderDebugBoundingBox,0,Renders the bounding box around an entity when F3+B is pressed +func_85102_a,playSoundToNearExcept,2,Plays sound to all near players except the player reference given +func_85118_a,addToCrashReport,2,Adds this WorldInfo instance to the crash report. +func_85144_b,getCacheSizes,2,Gets a human-readable string that indicates the sizes of all the cache fields. Basically a synchronized static toString. +func_85151_d,getLowerChestInventory,2,Return this chest container's lower chest inventory. +func_85156_a,removeTask,2,removes the indicated task from the entity's AI tasks. +func_85157_q,isAdventureModeExempt,2,Returns true if blocks with this material can always be mined in adventure mode. +func_85158_p,setAdventureModeExempt,2,@see #isAdventureModeExempt() +func_85173_a,playSoundToNearExcept,2,Plays sound to all near players except the player reference given +func_85176_s,getDefaultTeleporter,2, +func_85181_a,getRandomModelBox,0, +func_85182_a,sameToolAndBlock,0, +func_85187_a,drawString,0,"Draws the specified string. Args: string, x, y, color, dropShadow" +func_85188_a,makePortal,2, +func_85189_a,removeStalePortalLocations,2,called periodically to remove out-of-date portal locations from the cache list. Argument par1 is a WorldServer.getTotalWorldTime() value. +func_90010_a,isPartOfLargeChest,2,Return whether the given inventory is part of this large chest. +func_90011_a,createChild,2, +func_90013_b,getDyeFromFleeceColor,2,Returns the data value for the dye that matches the sheep's fleece color +func_90014_a,getDyeBasedOnParents,2, +func_90019_g,applyRenderColor,0,Creates a new EntityDiggingFX with the block render color applied to the base particle color +func_90020_K,getLimitFramerate,0, +func_90022_d,getListOfPlayers,2, +func_90033_f,canLoadWorld,0,Return whether the given world can be loaded. +func_90035_a,getClassFromID,2,Return the class assigned to this entity ID. +func_90036_a,getFireAspectModifier,2, +func_90999_ad,canRenderOnFire,0,Return whether this entity should be rendered as on fire. +func_92015_f,closeScreenNoPacket,0,Closes the GUI screen without sending a packet to the server +func_92034_a,createParticle,0,"Creates a single particle. Args: x, y, z, x velocity, y velocity, z velocity, colours, fade colours, whether to trail, whether to twinkle" +func_92035_a,createBall,0,"Creates a small ball or large ball type explosion. Args: particle speed, size, colours, fade colours, whether to trail, whether to flicker" +func_92036_a,createBurst,0,"Creates a burst type explosion. Args: colours, fade colours, whether to trail, whether to flicker" +func_92038_a,createShaped,0,"Creates a creeper-shaped or star-shaped explosion. Args: particle speed, shape, colours, fade colours, whether to trail, whether to flicker, unknown" +func_92043_f,setTwinkle,0, +func_92044_a,setColour,0, +func_92045_e,setTrail,0, +func_92046_g,setFadeColour,0, +func_92058_a,setEntityItemStack,2,Sets the ItemStack for this entity +func_92059_d,getEntityItem,2,"Returns the ItemStack corresponding to the Entity (Note: if no item exists, will log an error but still return an ItemStack containing Block.stone)" +func_92085_d,getIsBlank,2, +func_92087_a,causeThornsDamage,2,Returns the EntityDamageSource of the Thorns enchantment +func_92088_a,makeFireworks,0, +func_92089_a,canApply,2, +func_92093_a,getFireTimeForEntity,2,"Gets the amount of ticks an entity should be set fire, adjusted for fire protection." +func_92097_a,negateDamage,2,"Used by ItemStack.attemptDamageItem. Randomly determines if a point of damage should be negated using the enchantment level (par1). If the ItemStack is Armor then there is a flat 60% chance for damage to be negated no matter the enchantment level, otherwise there is a 1-(par/1) chance for damage to be negated." +func_92103_a,addRecipe,2, +func_92111_a,getEnchantedItemStack,2,Returns the ItemStack of an enchanted version of this item. +func_92115_a,addEnchantment,2,Adds an stored enchantment to an enchanted book ItemStack +func_92116_a,addEnchantmentBooksToList,0,Adds the enchantment books from the supplied EnumEnchantmentType to the given list. +func_94041_b,isItemValidForSlot,2,Returns true if automation is allowed to insert the given stack (ignoring stack size) into the given slot. +func_94053_h,nextTextureIndexX,0, +func_94056_bM,hasCustomNameTag,2, +func_94057_bL,getCustomNameTag,2, +func_94058_c,setCustomNameTag,2, +func_94059_bO,getAlwaysRenderNameTagForRender,0, +func_94061_f,setAlwaysRenderNameTag,2, +func_94062_bN,getAlwaysRenderNameTag,2, +func_94065_a,drawTexturedModelRectFromIcon,0,"Draws a textured rectangle at the stored z-value. Args : x, y, icon, width, height" +func_94083_c,getTntPlacedBy,2,returns null or the entityliving it was placed or ignited by +func_94085_r,getDefaultDisplayTileOffset,2, +func_94086_l,setDisplayTileOffset,2, +func_94087_l,getMinecartType,2, +func_94090_a,createMinecart,2,"Creates a new minecart of the specified type in the specified location in the given world. par0World - world to create the minecart in, double par1,par3,par5 represent x,y,z respectively. int par7 specifies the type: 1 for MinecartChest, 2 for MinecartFurnace, 3 for MinecartTNT, 4 for MinecartMobSpawner, 5 for MinecartHopper and 0 for a standard empty minecart" +func_94092_k,setDisplayTileData,2, +func_94095_a,killMinecart,2, +func_94096_e,setHasDisplayTile,2, +func_94097_p,getDefaultDisplayTileData,2, +func_94098_o,getDisplayTileData,2, +func_94099_q,getDisplayTileOffset,2, +func_94100_s,hasDisplayTile,2, +func_94101_h,applyDrag,2, +func_94103_c,explodeCart,2,Makes the minecart explode. +func_94105_c,ignite,2,Ignites this TNT cart. +func_94107_f,setMinecartPowered,2, +func_94108_c,isMinecartPowered,2, +func_94128_d,getSlotsForFace,2,param side +func_94140_a,registerDestroyBlockIcons,0, +func_94143_a,updateIcons,0, +func_94148_a,renderItemOverlayIntoGUI,0, +func_94149_a,renderIcon,0, +func_94178_a,updateIcons,0, +func_94182_a,addSlot,0, +func_94183_a,getStitchHolder,0, +func_94184_a,getAllStitchSlots,0,Gets the slot and all its subslots +func_94185_c,getOriginY,0, +func_94186_b,getOriginX,0, +func_94194_d,rotate,0, +func_94195_e,isRotated,0, +func_94196_a,setNewDimension,0, +func_94197_a,getWidth,0, +func_94199_b,getHeight,0, +func_94206_g,getMinV,0,Returns the minimum V coordinate to use when rendering with this icon. +func_94207_b,getInterpolatedV,0,Gets a V coordinate on the icon. 0 returns vMin and 16 returns vMax. Other arguments return in-between values. +func_94209_e,getMinU,0,Returns the minimum U coordinate to use when rendering with this icon. +func_94210_h,getMaxV,0,Returns the maximum V coordinate to use when rendering with this icon. +func_94211_a,getIconWidth,0,"Returns the width of the icon, in pixels." +func_94212_f,getMaxU,0,Returns the maximum U coordinate to use when rendering with this icon. +func_94214_a,getInterpolatedU,0,Gets a U coordinate on the icon. 0 returns uMin and 16 returns uMax. Other arguments return in-between values. +func_94215_i,getIconName,0, +func_94216_b,getIconHeight,0,"Returns the height of the icon, in pixels." +func_94217_a,copyFrom,0, +func_94219_l,updateAnimation,0, +func_94241_a,updateCompass,0,"Updates the compass based on the given x,z coords and camera direction" +func_94245_a,registerIcon,0, +func_94248_c,updateAnimations,0, +func_94277_a,bindTexture,0, +func_94305_f,doStitch,0, +func_94309_g,getStichSlots,0, +func_94310_b,allocateSlot,0,Attempts to find space for specified tile +func_94311_c,expandAndAllocateSlot,0,Expand stitched texture in order to make space for specified tile +func_94520_b,isKeyTranslated,2,Returns true if the passed key is in the translation table. +func_94522_b,canTranslate,2,Determines whether or not translateToLocal will find a translation for the given key. +func_94525_a,computeStackSize,2,"Compute the new stack size, Returns the stack with the new size. Args : dragSlots, dragMode, dragStack, slotStackSize" +func_94526_b,calcRedstoneFromInventory,2, +func_94527_a,canAddItemToSlot,2,Checks if it's possible to add the given itemstack to the given slot.\n \n@param stackSizeMatters Will check if adding items to the slot will stack larger than the max stack size +func_94528_d,isValidDragMode,2,Args : dragMode. Returns true if dragMode = 0 (evenly split) or = 1 (one item by slot) +func_94529_b,extractDragMode,2,"Extracts the drag mode. Args : eventButton. Return (0 : evenly split, 1 : one item by slot, 2 : not used ?)" +func_94531_b,canDragIntoSlot,2,"Returns true if the player can ""drag-spilt"" items into this slot,. returns true by default. Called to check if the slot can be added to a list of Slots to split the held ItemStack across." +func_94532_c,getDragEvent,2,"Args : clickedButton, Returns (0 : start drag, 1 : add slot, 2 : end drag)" +func_94533_d,resetDrag,2,Reset the drag fields +func_94539_a,setExplosionSource,2, +func_94540_d,setExplosion,2, +func_94541_c,isExplosion,2, +func_94560_a,getDamageSrc,2,Get the DamageSource of the CombatEntry instance. +func_94572_D,getStrongestIndirectPower,2, +func_94574_k,getIndirectPowerOutput,2,"Returns the indirect signal strength being outputted by the given block in the *opposite* of the given direction. Args: X, Y, Z, direction" +func_94576_a,getEntitiesWithinAABBExcludingEntity,2, +func_94577_B,getBlockPowerInput,2,"Returns the highest redstone signal strength powering the given block. Args: X, Y, Z." +func_94581_a,registerIcons,0, +func_94599_c,getItemIconForUseDuration,0,"used to cycle through icons based on their used duration, i.e. for the bow" +func_94602_b,getBackgroundIcon,0,"Return the background icon of the Slot used to hold the armor item stack. Args : armorId (0 : helmet, 1 : chestplace, 2 : leggings, 3 : boots : other : null)" +func_94608_d,getItemSpriteNumber,0, +func_94613_c,getExplosivePlacedBy,2,"Returns either the entity that placed the explosive block, the entity that caused the explosion or null." +func_94901_k,getSpriteNumber,0,"Returns 0 for /terrain.png, 1 for /gui/items.png" +func_96092_aw,isPushedByWater,2, +func_96094_a,setMinecartName,2,Sets the minecart's name. +func_96095_a,onActivatorRailPass,2,"Called every tick the minecart is on an activator rail. Args: x, y, z, is the rail receiving power" +func_96096_ay,isIgnited,2,Returns true if the TNT minecart is ignited. +func_96107_aA,getXPos,2,Gets the world X position for this hopper entity. +func_96108_aC,getZPos,2,Gets the world Z position for this hopper entity. +func_96109_aB,getYPos,2,Gets the world Y position for this hopper entity. +func_96110_f,setBlocked,2,Set whether this hopper minecart is being blocked by an activator rail. +func_96111_ay,getBlocked,2,Get whether this hopper minecart is being blocked by an activator rail. +func_96120_a,setEquipmentDropChance,2, +func_96122_a,canAttackPlayer,2, +func_96123_co,getWorldScoreboard,2, +func_96124_cp,getTeam,2, +func_96125_a,displayGUIHopperMinecart,2, +func_96136_a,renderScoreboard,0, +func_96290_a,isBlockProtected,2,Returns true if a player does not have permission to edit the block at the given coordinates. +func_96296_a,getValidValues,2,"Gets all the valid values. Args: @param par0: Whether or not to include color values. @param par1: Whether or not to include fancy-styling values (anything that isn't a color value or the ""reset"" value)." +func_96297_d,getFriendlyName,2,Gets the friendly name of this value. +func_96298_a,getFormattingCode,2,Gets the formatting code that produces this format. +func_96300_b,getValueByName,2,Gets a value by its friendly name; null if the given name does not map to a defined value. +func_96301_b,isFancyStyling,2,False if this is just changing the color or resetting; true otherwise. +func_96302_c,isColor,2,Checks if this is a color code. +func_96332_d,getPlayerName,2, +func_96333_a,joinNiceStringFromCollection,2,"Creates a linguistic series joining together the elements of the given collection. Examples: 1) {} --> """", 2) {""Steve""} --> ""Steve"", 3) {""Steve"", ""Phil""} --> ""Steve and Phil"", 4) {""Steve"", ""Phil"", ""Mark""} --> ""Steve, Phil and Mark""" +func_96441_U,getScoreboard,2, +func_96443_a,setWorldScoreboard,0, +func_96449_a,renderOffsetLivingLabel,0, +func_96457_a,matchesScoreboardCriteria,2, +func_96508_e,getTeam,2,Retrieve the ScorePlayerTeam instance identified by the passed team name +func_96509_i,getPlayersTeam,2,Gets the ScorePlayerTeam object for the given username. +func_96511_d,removeTeam,2,"Removes the team from the scoreboard, updates all player memberships and broadcasts the deletion to all players" +func_96512_b,removePlayerFromTeam,2,Removes the given username from the given ScorePlayerTeam. If the player is not on the team then an IllegalStateException is thrown. +func_96514_c,getScoreObjectives,2, +func_96517_b,getObjectiveDisplaySlot,2,"Returns 'list' for 0, 'sidebar' for 1, 'belowName for 2, otherwise null." +func_96518_b,getObjective,2,Returns a ScoreObjective for the objective name +func_96523_a,broadcastTeamCreated,2,"This packet will notify the players that this team is created, and that will register it on the client" +func_96524_g,removePlayerFromTeams,2, +func_96525_g,getTeams,2,Retrieve all registered ScorePlayerTeam instances +func_96526_d,getObjectiveNames,2, +func_96527_f,createTeam,2, +func_96529_a,getValueFromObjective,2, +func_96530_a,setObjectiveInDisplaySlot,2,"0 is tab menu, 1 is sidebar, 2 is below name" +func_96531_f,getTeamNames,2,Retrieve all registered ScorePlayerTeam names +func_96534_i,getSortedScores,2,"Returns an array of Score objects, sorting by Score.getScorePoints()" +func_96535_a,addScoreObjective,2, +func_96537_j,getObjectiveDisplaySlotNumber,2,"Returns 0 for (case-insensitive) 'list', 1 for 'sidebar', 2 for 'belowName', otherwise -1." +func_96538_b,broadcastTeamRemoved,2,This packet will notify the players that this team is removed +func_96539_a,getObjectiveInDisplaySlot,2,"0 is tab menu, 1 is sidebar, 2 is below name" +func_96559_d,getFrontOffsetY,2, +func_96631_a,attemptDamageItem,2,"Attempts to damage the ItemStack with par1 amount of damage, If the ItemStack has the Unbreaking enchantment there is a chance for each point of damage to be negated. Returns true if it takes more damage than getMaxDamage(). Returns false otherwise or if the ItemStack can't be damaged or if all points of damage are negated." +func_96636_a,getName,2, +func_96637_b,isReadOnly,2, +func_96646_b,decreaseScore,2, +func_96647_c,setScorePoints,2, +func_96649_a,increseScore,2, +func_96650_f,getScoreScoreboard,2, +func_96652_c,getScorePoints,2, +func_96653_e,getPlayerName,2,Returns the name of the player this score belongs to +func_96660_a,setAllowFriendlyFire,2, +func_96661_b,getRegisteredName,2,Retrieve the name by which this team is registered in the scoreboard +func_96662_c,setNameSuffix,2, +func_96663_f,getColorSuffix,2,Returns the color suffix for the player's team name +func_96664_a,setTeamName,2, +func_96665_g,getAllowFriendlyFire,2, +func_96666_b,setNamePrefix,2, +func_96667_a,formatPlayerName,2,Returns the player name including the color prefixes and suffixes +func_96668_e,getColorPrefix,2,Returns the color prefix for the player's team name +func_96670_d,getMembershipCollection,2, +func_96678_d,getDisplayName,2, +func_96679_b,getName,2, +func_96680_c,getCriteria,2, +func_96681_a,setDisplayName,2, +func_96682_a,getScoreboard,0, +func_98034_c,isInvisibleToPlayer,0,"Only used by renderer in EntityLivingBase subclasses.\nDetermines if an entity is visible or not to a specfic player, if the entity is normally invisible.\nFor EntityLivingBase subclasses, returning false when invisible will render the entity semitransparent." +func_98035_c,writeMountToNBT,2,Like writeToNBTOptional but does not check if the entity is ridden. Used for saving ridden entities with their riders. +func_98042_n,setTransferTicker,2,"Sets the transfer ticker, used to determine the delay between transfers." +func_98043_aE,canTransfer,2,Returns whether the hopper cart can currently transfer an item. +func_98052_bS,canPickUpLoot,2, +func_98053_h,setCanPickUpLoot,2, +func_98054_a,setScaleForAge,2,"""Sets the scale for an ageable entity according to the boolean parameter, which says if it's a child.""" +func_98055_j,setScale,2, +func_98150_a,getAtlasSprite,0, +func_98152_d,getAllUsernames,2, +func_98179_a,computeLightValue,2, +func_98265_a,spawnEntity,2, +func_98266_d,getSpawnerZ,2, +func_98268_b,setDelayToMin,2,"Sets the delay to minDelay if parameter given is 1, else return false." +func_98269_i,getRandomEntity,2, +func_98270_a,readFromNBT,2, +func_98271_a,getSpawnerWorld,2, +func_98272_a,setEntityName,2, +func_98273_j,resetTimer,2, +func_98274_c,getSpawnerY,2, +func_98275_b,getSpawnerX,2, +func_98276_e,getEntityNameToSpawn,2,Gets the entity name that should be spawned. +func_98277_a,setRandomEntity,2, +func_98278_g,updateSpawner,2, +func_98279_f,isActivated,2,Returns true if there's a player close enough to this mob spawner to activate it. +func_98280_b,writeToNBT,2, +func_98281_h,getEntityToRender,0,Returns the entity to render inside the spawner. The instance is only created once and then cached. +func_98300_b,setSeeFriendlyInvisiblesEnabled,2, +func_98306_d,readGlyphSizes,0, +func_99999_d,run,0, diff --git a/mcppatches/mappings/params.csv b/mcppatches/mappings/params.csv new file mode 100644 index 00000000..58b44093 --- /dev/null +++ b/mcppatches/mappings/params.csv @@ -0,0 +1,1885 @@ +param,name,side +p_104055_1_,force,1 +p_110162_1_,entityIn,2 +p_110162_2_,sendAttachNotification,2 +p_110304_0_,resourceLocationIn,0 +p_110304_1_,username,0 +p_110311_0_,username,0 +p_110577_1_,resource,0 +p_110661_0_,sender,2 +p_110661_1_,str,2 +p_110661_2_,min,2 +p_110661_4_,max,2 +p_110662_0_,sender,2 +p_110662_1_,str,2 +p_110664_0_,sender,2 +p_110664_1_,str,2 +p_110664_2_,min,2 +p_110665_0_,sender,2 +p_110665_4_,min,2 +p_110665_5_,max,2 +p_110666_0_,sender,2 +p_110813_1_,targetEntity,0 +p_111207_1_,stack,2 +p_111207_2_,player,2 +p_111207_3_,target,2 +p_111229_1_,types,2 +p_111270_1_,other,2 +p_120016_0_,serverIn,1 +p_130002_1_,player,2 +p_142020_1_,brand,0 +p_142053_1_,input,2 +p_142054_1_,other,2 +p_143006_1_,idleTimeout,2 +p_145747_1_,message,2 +p_145769_1_,id,2 +p_145770_1_,x,0 +p_145770_3_,y,0 +p_145770_5_,z,0 +p_145771_1_,x,2 +p_145771_3_,y,2 +p_145771_5_,z,2 +p_145772_1_,explosionIn,2 +p_145772_2_,worldIn,2 +p_145772_3_,x,2 +p_145772_4_,y,2 +p_145772_5_,z,2 +p_145772_6_,blockIn,2 +p_145774_1_,explosionIn,2 +p_145774_2_,worldIn,2 +p_145774_3_,x,2 +p_145774_4_,y,2 +p_145774_5_,z,2 +p_145774_6_,blockIn,2 +p_145774_7_,unused,2 +p_145778_1_,itemIn,2 +p_145778_2_,size,2 +p_145779_1_,itemIn,2 +p_145779_2_,size,2 +p_145780_1_,x,2 +p_145780_2_,y,2 +p_145780_3_,z,2 +p_145780_4_,blockIn,2 +p_145826_0_,cl,2 +p_145826_1_,id,2 +p_145827_0_,nbt,2 +p_145828_1_,reportCategory,2 +p_145834_1_,worldIn,2 +p_145839_1_,compound,2 +p_145841_1_,compound,2 +p_145842_1_,id,2 +p_145842_2_,type,2 +p_146029_1_,itemIn,2 +p_146031_1_,chestTileEntity,2 +p_146110_0_,x,0 +p_146110_1_,y,0 +p_146110_2_,u,0 +p_146110_3_,v,0 +p_146110_4_,width,0 +p_146110_5_,height,0 +p_146110_6_,textureWidth,0 +p_146110_7_,textureHeight,0 +p_146111_1_,mouseX,0 +p_146111_2_,mouseY,0 +p_146112_1_,mc,0 +p_146112_2_,mouseX,0 +p_146112_3_,mouseY,0 +p_146113_1_,soundHandlerIn,0 +p_146114_1_,mouseOver,0 +p_146116_1_,mc,0 +p_146116_2_,mouseX,0 +p_146116_3_,mouseY,0 +p_146118_1_,mouseX,0 +p_146118_2_,mouseY,0 +p_146119_1_,mc,0 +p_146119_2_,mouseX,0 +p_146119_3_,mouseY,0 +p_146159_1_,mc,0 +p_146159_2_,mouseX,0 +p_146159_3_,mouseY,0 +p_146270_1_,tint,0 +p_146273_1_,mouseX,0 +p_146273_2_,mouseY,0 +p_146273_3_,clickedMouseButton,0 +p_146273_4_,timeSinceLastClick,0 +p_146275_0_,copyText,0 +p_146278_1_,tint,0 +p_146279_1_,tabName,0 +p_146279_2_,mouseX,0 +p_146279_3_,mouseY,0 +p_146280_1_,mc,0 +p_146280_2_,width,0 +p_146280_3_,height,0 +p_146283_1_,textLines,0 +p_146283_2_,x,0 +p_146283_3_,y,0 +p_146284_1_,button,0 +p_146285_1_,itemIn,0 +p_146285_2_,x,0 +p_146285_3_,y,0 +p_146286_1_,mouseX,0 +p_146286_2_,mouseY,0 +p_146286_3_,state,0 +p_146367_1_,ip,0 +p_146367_2_,port,0 +p_146790_1_,index,0 +p_146791_1_,server,0 +p_146975_1_,x,0 +p_146975_2_,y,0 +p_146976_1_,partialTicks,0 +p_146976_2_,mouseX,0 +p_146976_3_,mouseY,0 +p_146977_1_,slotIn,0 +p_146978_1_,left,0 +p_146978_2_,top,0 +p_146978_3_,right,0 +p_146978_4_,bottom,0 +p_146978_5_,pointX,0 +p_146978_6_,pointY,0 +p_146979_1_,mouseX,0 +p_146979_2_,mouseY,0 +p_146981_1_,slotIn,0 +p_146981_2_,mouseX,0 +p_146981_3_,mouseY,0 +p_146982_1_,stack,0 +p_146982_2_,x,0 +p_146982_3_,y,0 +p_146982_4_,altText,0 +p_146983_1_,keyCode,0 +p_146984_1_,slotIn,0 +p_146984_2_,slotId,0 +p_146984_3_,clickedButton,0 +p_146984_4_,clickType,0 +p_147108_1_,guiScreenIn,0 +p_147115_1_,leftClick,0 +p_147138_1_,response,2 +p_147139_1_,difficulty,2 +p_147153_0_,category,2 +p_147153_1_,x,2 +p_147153_2_,y,2 +p_147153_3_,z,2 +p_147153_4_,blockIn,2 +p_147153_5_,meta,2 +p_147176_0_,sender,2 +p_147176_1_,args,2 +p_147176_2_,index,2 +p_147177_0_,components,2 +p_147178_0_,sender,2 +p_147178_1_,args,2 +p_147179_0_,sender,2 +p_147179_1_,id,2 +p_147180_0_,sender,2 +p_147180_1_,id,2 +p_147183_1_,name,2 +p_147189_1_,name,2 +p_147189_2_,edit,2 +p_147193_1_,sender,2 +p_147193_2_,args,2 +p_147193_3_,index,2 +p_147224_1_,server,0 +p_147225_1_,server,0 +p_147231_1_,reason,2 +p_147232_1_,oldState,2 +p_147232_2_,newState,2 +p_147234_1_,packetIn,2 +p_147235_1_,packetIn,2 +p_147236_1_,packetIn,2 +p_147237_1_,packetIn,2 +p_147238_1_,packetIn,2 +p_147239_1_,packetIn,2 +p_147240_1_,packetIn,2 +p_147241_1_,packetIn,2 +p_147242_1_,packetIn,2 +p_147243_1_,packetIn,2 +p_147244_1_,packetIn,2 +p_147245_1_,packetIn,2 +p_147246_1_,packetIn,2 +p_147247_1_,packetIn,2 +p_147248_1_,packetIn,2 +p_147249_1_,packetIn,2 +p_147250_1_,packetIn,2 +p_147251_1_,packetIn,2 +p_147252_1_,packetIn,2 +p_147253_1_,packetIn,2 +p_147254_1_,packetIn,2 +p_147255_1_,packetIn,2 +p_147256_1_,packetIn,2 +p_147257_1_,packetIn,2 +p_147258_1_,packetIn,2 +p_147259_1_,packetIn,2 +p_147260_1_,packetIn,2 +p_147261_1_,packetIn,2 +p_147262_1_,packetIn,2 +p_147263_1_,packetIn,2 +p_147264_1_,packetIn,2 +p_147265_1_,packetIn,2 +p_147266_1_,packetIn,2 +p_147267_1_,packetIn,2 +p_147268_1_,packetIn,2 +p_147269_1_,packetIn,2 +p_147270_1_,packetIn,2 +p_147271_1_,packetIn,2 +p_147272_1_,packetIn,2 +p_147273_1_,packetIn,2 +p_147274_1_,packetIn,2 +p_147275_1_,packetIn,2 +p_147276_1_,packetIn,2 +p_147277_1_,packetIn,2 +p_147278_1_,packetIn,2 +p_147279_1_,packetIn,2 +p_147280_1_,packetIn,2 +p_147281_1_,packetIn,2 +p_147282_1_,packetIn,2 +p_147283_1_,packetIn,2 +p_147284_1_,packetIn,2 +p_147285_1_,packetIn,2 +p_147286_1_,packetIn,2 +p_147287_1_,packetIn,2 +p_147288_1_,packetIn,2 +p_147289_1_,packetIn,2 +p_147290_1_,packetIn,2 +p_147291_1_,packetIn,2 +p_147292_1_,packetIn,2 +p_147293_1_,packetIn,2 +p_147294_1_,packetIn,2 +p_147295_1_,packetIn,2 +p_147311_1_,packetIn,2 +p_147312_1_,packetIn,2 +p_147315_1_,packetIn,2 +p_147316_1_,packetIn,2 +p_147322_1_,reason,2 +p_147338_1_,packetIn,2 +p_147339_1_,packetIn,2 +p_147340_1_,packetIn,2 +p_147341_1_,packetIn,2 +p_147342_1_,packetIn,2 +p_147343_1_,packetIn,2 +p_147344_1_,packetIn,2 +p_147345_1_,packetIn,2 +p_147346_1_,packetIn,2 +p_147347_1_,packetIn,2 +p_147348_1_,packetIn,2 +p_147349_1_,packetIn,2 +p_147350_1_,packetIn,2 +p_147351_1_,packetIn,2 +p_147352_1_,packetIn,2 +p_147353_1_,packetIn,2 +p_147354_1_,packetIn,2 +p_147355_1_,packetIn,2 +p_147356_1_,packetIn,2 +p_147357_1_,packetIn,2 +p_147358_1_,packetIn,2 +p_147359_1_,packetIn,2 +p_147360_1_,reason,2 +p_147361_1_,command,2 +p_147364_1_,x,2 +p_147364_3_,y,2 +p_147364_5_,z,2 +p_147364_7_,yaw,2 +p_147364_8_,pitch,2 +p_147383_1_,packetIn,2 +p_147388_1_,packetIn,2 +p_147389_1_,packetIn,2 +p_147390_1_,packetIn,2 +p_147397_1_,packetIn,2 +p_147398_1_,packetIn,2 +p_147407_1_,icon,0 +p_147437_1_,x,2 +p_147437_2_,y,2 +p_147437_3_,z,2 +p_147438_1_,x,2 +p_147438_2_,y,2 +p_147438_3_,z,2 +p_147440_1_,type,2 +p_147440_2_,x,2 +p_147440_3_,y,2 +p_147440_4_,z,2 +p_147443_2_,x,2 +p_147443_3_,y,2 +p_147443_4_,z,2 +p_147443_5_,blockDamage,2 +p_147445_1_,x,2 +p_147445_2_,y,2 +p_147445_3_,z,2 +p_147445_4_,def,2 +p_147449_1_,x,2 +p_147449_2_,y,2 +p_147449_3_,z,2 +p_147449_4_,blockType,2 +p_147451_1_,x,2 +p_147451_2_,y,2 +p_147451_3_,z,2 +p_147452_1_,x,2 +p_147452_2_,y,2 +p_147452_3_,z,2 +p_147452_4_,blockIn,2 +p_147452_5_,eventId,2 +p_147452_6_,eventParameter,2 +p_147453_1_,x,2 +p_147453_2_,yPos,2 +p_147453_3_,z,2 +p_147453_4_,blockIn,2 +p_147455_1_,x,2 +p_147455_2_,y,2 +p_147455_3_,z,2 +p_147455_4_,tileEntityIn,2 +p_147457_1_,tileEntityIn,2 +p_147462_1_,x,2 +p_147462_3_,y,2 +p_147462_5_,z,2 +p_147465_1_,x,2 +p_147465_2_,y,2 +p_147465_3_,z,2 +p_147465_4_,blockIn,2 +p_147465_5_,metadataIn,2 +p_147465_6_,flags,2 +p_147466_0_,worldIn,2 +p_147466_1_,x,2 +p_147466_2_,y,2 +p_147466_3_,z,2 +p_147468_1_,x,2 +p_147468_2_,y,2 +p_147468_3_,z,2 +p_147469_1_,x,2 +p_147469_2_,y,2 +p_147469_3_,z,2 +p_147473_1_,x,2 +p_147473_2_,y,2 +p_147473_3_,z,2 +p_147474_1_,x,2 +p_147474_2_,z,2 +p_147475_1_,x,2 +p_147475_2_,y,2 +p_147475_3_,z,2 +p_147478_1_,x,2 +p_147478_2_,y,2 +p_147478_3_,z,2 +p_147478_4_,checkLight,2 +p_147480_1_,x,2 +p_147480_2_,y,2 +p_147480_3_,z,2 +p_147480_4_,dropBlock,2 +p_147493_1_,worldIn,0 +p_147493_2_,stats,0 +p_147673_0_,soundResource,0 +p_147674_0_,soundResource,0 +p_147674_1_,pitch,0 +p_147675_0_,soundResource,0 +p_147675_1_,xPosition,0 +p_147675_2_,yPosition,0 +p_147675_3_,zPosition,0 +p_147784_1_,blockType,0 +p_147784_2_,blockX,0 +p_147784_3_,blockY,0 +p_147784_4_,blockZ,0 +p_148054_1_,manager,0 +p_148056_1_,manager,0 +p_148057_0_,resourceManager,0 +p_148057_1_,type,0 +p_148057_2_,filename,0 +p_148075_1_,manager,0 +p_148537_1_,packetIn,2 +p_148537_2_,dimension,2 +p_148539_1_,component,2 +p_148540_1_,packetIn,2 +p_148541_1_,x,2 +p_148541_10_,packetIn,2 +p_148541_3_,y,2 +p_148541_5_,z,2 +p_148541_7_,radius,2 +p_148541_9_,dimension,2 +p_148542_1_,address,2 +p_148542_2_,profile,2 +p_148543_10_,dimension,2 +p_148543_2_,x,2 +p_148543_4_,y,2 +p_148543_6_,z,2 +p_148543_8_,radius,2 +p_148544_1_,component,2 +p_148544_2_,isChat,2 +p_148545_1_,profile,2 +p_148833_1_,handler,2 +p_148834_0_,buffer,2 +p_148837_1_,data,2 +p_148838_0_,buffer,2 +p_148838_1_,blob,2 +p_148839_0_,protocolMap,2 +p_148839_1_,packetId,2 +p_148840_1_,data,2 +p_149102_1_,isFlying,2 +p_149104_1_,flySpeedIn,2 +p_149108_1_,isInvulnerable,2 +p_149109_1_,isAllowFlying,2 +p_149110_1_,walkSpeedIn,2 +p_149111_1_,isCreativeMode,2 +p_149300_1_,key,2 +p_149483_1_,isFlying,2 +p_149485_1_,flySpeedIn,2 +p_149490_1_,isInvulnerable,2 +p_149491_1_,isAllowFlying,2 +p_149492_1_,walkSpeedIn,2 +p_149493_1_,isCreativeMode,2 +p_149564_1_,worldIn,2 +p_149633_1_,worldIn,0 +p_149633_2_,x,0 +p_149633_3_,y,0 +p_149633_4_,z,0 +p_149634_0_,itemIn,2 +p_149636_1_,worldIn,2 +p_149636_2_,player,2 +p_149636_3_,x,2 +p_149636_4_,y,2 +p_149636_5_,z,2 +p_149636_6_,meta,2 +p_149638_1_,exploder,2 +p_149639_1_,worldIn,2 +p_149639_2_,x,2 +p_149639_3_,y,2 +p_149639_4_,z,2 +p_149640_1_,worldIn,2 +p_149640_2_,x,2 +p_149640_3_,y,2 +p_149640_4_,z,2 +p_149640_5_,entityIn,2 +p_149640_6_,velocity,2 +p_149642_1_,worldIn,2 +p_149642_2_,x,2 +p_149642_3_,y,2 +p_149642_4_,z,2 +p_149642_5_,itemIn,2 +p_149643_1_,worldIn,2 +p_149643_2_,x,2 +p_149643_3_,y,2 +p_149643_4_,z,2 +p_149644_1_,meta,2 +p_149646_1_,worldIn,0 +p_149646_2_,x,0 +p_149646_3_,y,0 +p_149646_4_,z,0 +p_149646_5_,side,0 +p_149647_1_,tab,2 +p_149650_1_,meta,2 +p_149650_2_,random,2 +p_149650_3_,fortune,2 +p_149651_1_,reg,0 +p_149654_1_,point,2 +p_149655_1_,worldIn,2 +p_149655_2_,x,2 +p_149655_3_,y,2 +p_149655_4_,z,2 +p_149657_1_,worldIn,2 +p_149657_2_,x,2 +p_149657_3_,y,2 +p_149657_4_,z,2 +p_149657_5_,amount,2 +p_149658_1_,textureName,2 +p_149659_1_,explosionIn,2 +p_149660_1_,worldIn,2 +p_149660_2_,x,2 +p_149660_3_,y,2 +p_149660_4_,z,2 +p_149660_5_,side,2 +p_149660_6_,subX,2 +p_149660_7_,subY,2 +p_149660_8_,subZ,2 +p_149660_9_,meta,2 +p_149661_1_,point,2 +p_149663_1_,name,2 +p_149664_1_,worldIn,2 +p_149664_2_,x,2 +p_149664_3_,y,2 +p_149664_4_,z,2 +p_149664_5_,meta,2 +p_149666_1_,itemIn,0 +p_149666_2_,tab,0 +p_149666_3_,list,0 +p_149667_1_,other,2 +p_149668_1_,worldIn,2 +p_149668_2_,x,2 +p_149668_3_,y,2 +p_149668_4_,z,2 +p_149670_1_,worldIn,2 +p_149670_2_,x,2 +p_149670_3_,y,2 +p_149670_4_,z,2 +p_149670_5_,entityIn,2 +p_149672_1_,sound,2 +p_149673_1_,worldIn,0 +p_149673_2_,x,0 +p_149673_3_,y,0 +p_149673_4_,z,0 +p_149673_5_,side,0 +p_149674_1_,worldIn,2 +p_149674_2_,x,2 +p_149674_3_,y,2 +p_149674_4_,z,2 +p_149674_5_,random,2 +p_149675_1_,shouldTick,2 +p_149676_1_,minX,2 +p_149676_2_,minY,2 +p_149676_3_,minZ,2 +p_149676_4_,maxX,2 +p_149676_5_,maxY,2 +p_149676_6_,maxZ,2 +p_149677_1_,worldIn,0 +p_149677_2_,x,0 +p_149677_3_,y,0 +p_149677_4_,z,0 +p_149678_1_,meta,2 +p_149678_2_,includeLiquid,2 +p_149679_1_,maxBonus,2 +p_149679_2_,random,2 +p_149680_0_,blockIn,2 +p_149680_1_,other,2 +p_149681_1_,worldIn,2 +p_149681_2_,x,2 +p_149681_3_,y,2 +p_149681_4_,z,2 +p_149681_5_,meta,2 +p_149681_6_,player,2 +p_149682_0_,blockIn,2 +p_149684_0_,name,2 +p_149687_1_,point,2 +p_149689_1_,worldIn,2 +p_149689_2_,x,2 +p_149689_3_,y,2 +p_149689_4_,z,2 +p_149689_5_,placer,2 +p_149689_6_,itemIn,2 +p_149690_1_,worldIn,2 +p_149690_2_,x,2 +p_149690_3_,y,2 +p_149690_4_,z,2 +p_149690_5_,meta,2 +p_149690_6_,chance,2 +p_149690_7_,fortune,2 +p_149691_1_,side,0 +p_149691_2_,meta,0 +p_149692_1_,meta,2 +p_149694_1_,worldIn,0 +p_149694_2_,x,0 +p_149694_3_,y,0 +p_149694_4_,z,0 +p_149695_1_,worldIn,2 +p_149695_2_,x,2 +p_149695_3_,y,2 +p_149695_4_,z,2 +p_149695_5_,neighbor,2 +p_149696_1_,worldIn,2 +p_149696_2_,x,2 +p_149696_3_,y,2 +p_149696_4_,z,2 +p_149696_5_,eventId,2 +p_149696_6_,eventData,2 +p_149697_1_,worldIn,2 +p_149697_2_,x,2 +p_149697_3_,y,2 +p_149697_4_,z,2 +p_149697_5_,meta,2 +p_149697_6_,fortune,2 +p_149699_1_,worldIn,2 +p_149699_2_,x,2 +p_149699_3_,y,2 +p_149699_4_,z,2 +p_149699_5_,player,2 +p_149705_1_,worldIn,2 +p_149705_2_,x,2 +p_149705_3_,y,2 +p_149705_4_,z,2 +p_149705_5_,side,2 +p_149705_6_,itemIn,2 +p_149707_1_,worldIn,2 +p_149707_2_,x,2 +p_149707_3_,y,2 +p_149707_4_,z,2 +p_149707_5_,side,2 +p_149709_1_,worldIn,2 +p_149709_2_,x,2 +p_149709_3_,y,2 +p_149709_4_,z,2 +p_149709_5_,side,2 +p_149711_1_,hardness,2 +p_149712_1_,worldIn,2 +p_149712_2_,x,2 +p_149712_3_,y,2 +p_149712_4_,z,2 +p_149713_1_,opacity,2 +p_149714_1_,worldIn,2 +p_149714_2_,x,2 +p_149714_3_,y,2 +p_149714_4_,z,2 +p_149714_5_,meta,2 +p_149715_1_,value,2 +p_149718_1_,worldIn,2 +p_149718_2_,x,2 +p_149718_3_,y,2 +p_149718_4_,z,2 +p_149719_1_,worldIn,2 +p_149719_2_,x,2 +p_149719_3_,y,2 +p_149719_4_,z,2 +p_149720_1_,worldIn,0 +p_149720_2_,x,0 +p_149720_3_,y,0 +p_149720_4_,z,0 +p_149723_1_,worldIn,2 +p_149723_2_,x,2 +p_149723_3_,y,2 +p_149723_4_,z,2 +p_149723_5_,explosionIn,2 +p_149724_1_,worldIn,2 +p_149724_2_,x,2 +p_149724_3_,y,2 +p_149724_4_,z,2 +p_149724_5_,entityIn,2 +p_149725_1_,worldIn,2 +p_149725_2_,x,2 +p_149725_3_,y,2 +p_149725_4_,z,2 +p_149725_5_,meta,2 +p_149726_1_,worldIn,2 +p_149726_2_,x,2 +p_149726_3_,y,2 +p_149726_4_,z,2 +p_149727_1_,worldIn,2 +p_149727_2_,x,2 +p_149727_3_,y,2 +p_149727_4_,z,2 +p_149727_5_,player,2 +p_149727_6_,side,2 +p_149727_7_,subX,2 +p_149727_8_,subY,2 +p_149727_9_,subZ,2 +p_149728_1_,meta,2 +p_149729_0_,id,2 +p_149731_1_,worldIn,2 +p_149731_2_,x,2 +p_149731_3_,y,2 +p_149731_4_,z,2 +p_149731_5_,startVec,2 +p_149731_6_,endVec,2 +p_149733_1_,side,0 +p_149734_1_,worldIn,0 +p_149734_2_,x,0 +p_149734_3_,y,0 +p_149734_4_,z,0 +p_149734_5_,random,0 +p_149735_1_,side,0 +p_149735_2_,meta,0 +p_149736_1_,worldIn,2 +p_149736_2_,x,2 +p_149736_3_,y,2 +p_149736_4_,z,2 +p_149736_5_,side,2 +p_149737_1_,player,2 +p_149737_2_,worldIn,2 +p_149737_3_,x,2 +p_149737_4_,y,2 +p_149737_5_,z,2 +p_149738_1_,worldIn,2 +p_149741_1_,meta,0 +p_149742_1_,worldIn,2 +p_149742_2_,x,2 +p_149742_3_,y,2 +p_149742_4_,z,2 +p_149743_1_,worldIn,2 +p_149743_2_,x,2 +p_149743_3_,y,2 +p_149743_4_,z,2 +p_149743_5_,mask,2 +p_149743_6_,list,2 +p_149743_7_,collider,2 +p_149745_1_,random,2 +p_149746_1_,worldIn,2 +p_149746_2_,x,2 +p_149746_3_,y,2 +p_149746_4_,z,2 +p_149746_5_,entityIn,2 +p_149746_6_,fallDistance,2 +p_149747_1_,worldIn,2 +p_149747_2_,x,2 +p_149747_3_,y,2 +p_149747_4_,z,2 +p_149747_5_,side,2 +p_149748_1_,worldIn,2 +p_149748_2_,x,2 +p_149748_3_,y,2 +p_149748_4_,z,2 +p_149748_5_,side,2 +p_149749_1_,worldIn,2 +p_149749_2_,x,2 +p_149749_3_,y,2 +p_149749_4_,z,2 +p_149749_5_,blockBroken,2 +p_149749_6_,meta,2 +p_149752_1_,resistance,2 +p_149851_1_,worldIn,2 +p_149851_2_,x,2 +p_149851_3_,y,2 +p_149851_4_,z,2 +p_149851_5_,isClient,2 +p_149852_1_,worldIn,2 +p_149852_2_,random,2 +p_149852_3_,x,2 +p_149852_4_,y,2 +p_149852_5_,z,2 +p_149853_1_,worldIn,2 +p_149853_2_,random,2 +p_149853_3_,x,2 +p_149853_4_,y,2 +p_149853_5_,z,2 +p_149854_1_,ground,2 +p_149855_1_,worldIn,2 +p_149855_2_,x,2 +p_149855_3_,y,2 +p_149855_4_,z,2 +p_149915_1_,worldIn,2 +p_149915_2_,meta,2 +p_149952_1_,worldIn,2 +p_149952_2_,x,2 +p_149952_3_,y,2 +p_149952_4_,z,2 +p_149975_0_,meta,2 +p_149976_0_,meta,2 +p_149977_0_,worldIn,2 +p_149977_1_,x,2 +p_149977_2_,y,2 +p_149977_3_,z,2 +p_149977_4_,safeIndex,2 +p_149979_0_,worldIn,2 +p_149979_1_,x,2 +p_149979_2_,y,2 +p_149979_3_,z,2 +p_149979_4_,occupied,2 +p_150024_1_,worldIn,2 +p_150024_2_,x,2 +p_150024_3_,y,2 +p_150024_4_,z,2 +p_150024_5_,level,2 +p_150025_0_,meta,0 +p_150026_0_,iconName,0 +p_150027_0_,meta,2 +p_150042_1_,worldIn,2 +p_150042_2_,x,2 +p_150042_3_,y,2 +p_150042_4_,z,2 +p_150043_1_,meta,2 +p_150044_1_,worldIn,2 +p_150044_2_,x,2 +p_150044_3_,y,2 +p_150044_4_,z,2 +p_150045_1_,worldIn,2 +p_150045_2_,x,2 +p_150045_3_,y,2 +p_150045_4_,z,2 +p_150046_1_,worldIn,2 +p_150046_2_,x,2 +p_150046_3_,y,2 +p_150046_4_,z,2 +p_150061_1_,x,2 +p_150061_2_,y,2 +p_150061_3_,z,2 +p_150062_1_,worldIn,2 +p_150062_2_,x,2 +p_150062_3_,y,2 +p_150062_4_,z,2 +p_150062_5_,power,2 +p_150063_1_,meta,2 +p_150064_1_,worldIn,2 +p_150064_2_,x,2 +p_150064_3_,y,2 +p_150064_4_,z,2 +p_150089_1_,meta,2 +p_150238_1_,colorIn,2 +p_150255_1_,style,2 +p_150257_1_,component,2 +p_150258_1_,text,2 +p_150262_0_,components,2 +p_150269_1_,format,2 +p_150272_1_,index,2 +p_150284_0_,id,2 +p_150295_1_,key,2 +p_150295_2_,type,2 +p_150297_1_,key,2 +p_150297_2_,type,2 +p_150298_0_,name,2 +p_150298_1_,data,2 +p_150298_2_,output,2 +p_150299_1_,key,2 +p_150304_1_,i,0 +p_150305_1_,i,2 +p_150306_1_,i,2 +p_150307_1_,i,2 +p_150308_1_,i,2 +p_150309_1_,i,2 +p_150503_1_,ctx,2 +p_150503_2_,buffer,2 +p_150695_1_,style,2 +p_150695_2_,object,2 +p_150695_3_,ctx,2 +p_150696_0_,component,2 +p_150699_0_,json,2 +p_150718_1_,message,2 +p_150719_1_,handler,2 +p_150723_1_,newState,2 +p_150725_1_,inPacket,2 +p_150725_2_,futureListeners,2 +p_150727_1_,key,2 +p_150732_1_,inPacket,2 +p_150732_2_,futureListeners,2 +p_150752_0_,packetIn,2 +p_150760_0_,stateId,2 +p_150785_1_,str,2 +p_150786_1_,nbt,2 +p_150787_1_,input,2 +p_150788_1_,stack,2 +p_150789_1_,maxLength,2 +p_150790_0_,input,2 +p_150894_1_,stack,2 +p_150894_2_,worldIn,2 +p_150894_3_,blockIn,2 +p_150905_1_,itemStackIn,2 +p_150906_1_,itemStackIn,2 +p_150919_0_,stack,2 +p_150919_1_,worldIn,2 +p_150919_2_,x,2 +p_150919_3_,y,2 +p_150919_4_,z,2 +p_151223_0_,packFile,0 +p_151223_1_,packName,0 +p_151223_2_,completionListener,0 +p_151223_3_,requestData,0 +p_151223_4_,maxSize,0 +p_151223_5_,loadingScreen,0 +p_151223_6_,proxy,0 +p_151225_0_,url,2 +p_151225_1_,content,2 +p_151225_2_,skipLoggingErrors,2 +p_151226_0_,url,2 +p_151226_1_,data,2 +p_151226_2_,skipLoggingErrors,2 +p_151255_1_,string,2 +p_151256_1_,ctx,2 +p_151256_2_,data,2 +p_151265_1_,address,2 +p_151265_2_,port,2 +p_151315_1_,motd,2 +p_151319_1_,countData,2 +p_151320_1_,faviconBlob,2 +p_151321_1_,protocolVersionData,2 +p_151330_1_,playersIn,2 +p_151462_1_,keyCode,0 +p_151538_1_,worldIn,2 +p_151616_0_,biomeIDA,2 +p_151616_1_,biomeIDB,2 +p_152121_1_,skinPart,0 +p_152121_2_,skinLoc,0 +p_152125_0_,x,0 +p_152125_1_,y,0 +p_152125_2_,u,0 +p_152125_3_,v,0 +p_152125_4_,uWidth,0 +p_152125_5_,vHeight,0 +p_152125_6_,width,0 +p_152125_7_,height,0 +p_152125_8_,tileWidth,0 +p_152125_9_,tileHeight,0 +p_152340_1_,imageStream,0 +p_152343_1_,callableToSchedule,0 +p_152344_1_,runnableToSchedule,0 +p_152361_1_,configManager,2 +p_152372_1_,sender,2 +p_152372_2_,command,2 +p_152372_4_,msgFormat,2 +p_152372_5_,msgParams,2 +p_152373_0_,sender,2 +p_152373_1_,command,2 +p_152373_2_,msgFormat,2 +p_152373_3_,msgParams,2 +p_152374_0_,sender,2 +p_152374_1_,command,2 +p_152374_3_,msgFormat,2 +p_152374_4_,msgParams,2 +p_152378_1_,uuid,2 +p_152446_1_,input,2 +p_152446_2_,depth,2 +p_152446_3_,sizeTracker,2 +p_152447_0_,input,2 +p_152447_1_,sizeTracker,2 +p_152448_0_,input,2 +p_152448_1_,sizeTracker,2 +p_152449_0_,id,2 +p_152449_1_,key,2 +p_152449_2_,input,2 +p_152449_3_,depth,2 +p_152449_4_,sizeTracker,2 +p_152450_1_,size,2 +p_152459_0_,compound,2 +p_152460_0_,compound,2 +p_152460_1_,profile,2 +p_152506_1_,original,2 +p_152583_1_,serverDataIn,0 +p_152584_1_,mode,0 +p_152596_1_,profile,2 +p_152597_1_,profile,2 +p_152601_1_,profile,2 +p_152602_1_,player,2 +p_152605_1_,profile,2 +p_152607_1_,profile,2 +p_152609_1_,includeUuid,2 +p_152610_1_,profile,2 +p_152611_1_,distance,2 +p_152612_1_,username,2 +p_152641_1_,data,2 +p_152681_1_,obj,2 +p_152682_1_,entryData,2 +p_152683_1_,obj,2 +p_152686_1_,state,2 +p_152687_1_,entry,2 +p_152692_1_,entry,2 +p_152701_1_,profile,2 +p_152702_1_,profile,2 +p_152703_1_,username,2 +p_152707_1_,address,2 +p_152708_1_,address,2 +p_152709_1_,address,2 +p_152710_0_,server,1 +p_152711_0_,dir,1 +p_152712_0_,properties,1 +p_152713_0_,input,1 +p_152713_1_,defaultValue,1 +p_152714_0_,properties,1 +p_152715_0_,properties,1 +p_152717_0_,server,2 +p_152717_1_,names,2 +p_152717_2_,callback,2 +p_152718_0_,server,1 +p_152721_0_,inFile,1 +p_152721_1_,read,1 +p_152722_0_,server,1 +p_152723_0_,server,1 +p_152724_0_,server,1 +p_152725_0_,properties,1 +p_152727_0_,convertedFile,1 +p_152754_0_,base,0 +p_152754_1_,key,0 +p_152755_0_,url,0 +p_154347_1_,inFile,1 +p_155759_1_,resourcePackUrl,1 +p_70000_1_,playerSnooper,2 +p_70001_1_,playerSnooper,2 +p_70003_1_,permissionLevel,2 +p_70003_2_,command,2 +p_70011_1_,x,2 +p_70011_3_,y,2 +p_70011_5_,z,2 +p_70012_1_,x,2 +p_70012_3_,y,2 +p_70012_5_,z,2 +p_70012_7_,yaw,2 +p_70012_8_,pitch,2 +p_70014_1_,tagCompound,2 +p_70015_1_,seconds,2 +p_70016_1_,x,0 +p_70016_3_,y,0 +p_70016_5_,z,0 +p_70019_1_,eating,2 +p_70020_1_,tagCompund,2 +p_70024_1_,x,2 +p_70024_3_,y,2 +p_70024_5_,z,2 +p_70028_1_,entityIn,2 +p_70029_1_,worldIn,2 +p_70031_1_,sprinting,2 +p_70032_1_,entityIn,2 +p_70034_1_,rotation,0 +p_70037_1_,tagCompund,2 +p_70038_1_,x,2 +p_70038_3_,y,2 +p_70038_5_,z,2 +p_70039_1_,tagCompund,2 +p_70049_1_,numbers,2 +p_70050_1_,air,2 +p_70052_1_,flag,2 +p_70052_2_,set,2 +p_70055_1_,materialIn,2 +p_70056_1_,x,0 +p_70056_3_,y,0 +p_70056_5_,z,0 +p_70056_7_,yaw,0 +p_70056_8_,pitch,0 +p_70056_9_,rotationIncrements,0 +p_70060_1_,strafe,2 +p_70060_2_,forward,2 +p_70060_3_,friction,2 +p_70062_1_,slotIn,2 +p_70062_2_,itemStackIn,2 +p_70064_1_,distanceFallenThisTick,2 +p_70064_3_,isOnGround,2 +p_70068_1_,entityIn,2 +p_70069_1_,distance,2 +p_70074_1_,entityLivingIn,2 +p_70077_1_,lightningBolt,2 +p_70078_1_,entityIn,2 +p_70080_1_,x,2 +p_70080_3_,y,2 +p_70080_5_,z,2 +p_70080_7_,yaw,2 +p_70080_8_,pitch,2 +p_70081_1_,amount,2 +p_70082_1_,yaw,0 +p_70082_2_,pitch,0 +p_70083_1_,flag,2 +p_70084_1_,entityIn,2 +p_70084_2_,amount,2 +p_70087_1_,numbers,2 +p_70091_1_,x,2 +p_70091_3_,y,2 +p_70091_5_,z,2 +p_70092_1_,x,2 +p_70092_3_,y,2 +p_70092_5_,z,2 +p_70095_1_,sneaking,2 +p_70097_1_,source,2 +p_70097_2_,amount,2 +p_70099_1_,itemStackIn,2 +p_70099_2_,offsetY,2 +p_70100_1_,entityIn,2 +p_70101_1_,yaw,2 +p_70101_2_,pitch,2 +p_70105_1_,width,2 +p_70105_2_,height,2 +p_70107_1_,x,2 +p_70107_3_,y,2 +p_70107_5_,z,2 +p_70108_1_,entityIn,2 +p_70109_1_,tagCompund,2 +p_70112_1_,distance,0 +p_70114_1_,entityIn,2 +p_70298_1_,index,2 +p_70298_2_,count,2 +p_70299_1_,index,2 +p_70299_2_,stack,2 +p_70300_1_,player,2 +p_70301_1_,slotIn,2 +p_70304_1_,index,2 +p_70620_1_,itemStackIn,0 +p_70999_2_,updateWorldFlag,2 +p_70999_3_,setSpawn,2 +p_71010_1_,itemStackIn,2 +p_71018_1_,x,2 +p_71018_2_,y,2 +p_71018_3_,z,2 +p_71019_1_,itemStackIn,2 +p_71027_1_,dimensionId,2 +p_71033_1_,gameType,2 +p_71059_1_,targetEntity,2 +p_71188_1_,allowPvp,2 +p_71189_1_,host,1 +p_71191_1_,maxBuildHeight,2 +p_71192_1_,message,2 +p_71194_1_,enable,2 +p_71198_1_,msg,1 +p_71201_1_,msg,1 +p_71204_1_,demo,2 +p_71205_1_,motdIn,2 +p_71206_1_,type,2 +p_71206_2_,allowCheats,2 +p_71208_1_,port,1 +p_71209_1_,fileName,2 +p_71216_1_,message,2 +p_71216_2_,percent,2 +p_71218_1_,dimension,2 +p_71224_1_,owner,2 +p_71228_1_,report,2 +p_71229_1_,online,2 +p_71230_1_,report,2 +p_71235_1_,gameMode,2 +p_71236_1_,msg,2 +p_71244_1_,msg,1 +p_71245_1_,allow,2 +p_71248_1_,sender,2 +p_71248_2_,input,2 +p_71251_1_,spawnAnimals,2 +p_71252_1_,command,1 +p_71253_1_,keyPair,2 +p_71257_1_,spawnNpcs,2 +p_71261_1_,name,2 +p_71267_1_,dontLog,2 +p_71327_1_,key,1 +p_71327_2_,defaultValue,1 +p_71328_1_,key,1 +p_71328_2_,value,1 +p_71330_1_,key,1 +p_71330_2_,defaultValue,1 +p_71331_1_,input,1 +p_71331_2_,sender,1 +p_71332_1_,key,1 +p_71332_2_,defaultValue,1 +p_71351_1_,serverDataIn,0 +p_71353_1_,worldClientIn,0 +p_71353_2_,loadingMessage,0 +p_71354_1_,dimension,0 +p_71361_1_,message,0 +p_71366_1_,elapsedTicksTime,0 +p_71367_1_,serverHostname,0 +p_71367_2_,serverPort,0 +p_71370_1_,width,0 +p_71370_2_,height,0 +p_71371_1_,folderName,0 +p_71371_2_,worldName,0 +p_71371_3_,worldSettingsIn,0 +p_71377_1_,crashReportIn,0 +p_71383_1_,keyCount,0 +p_71392_1_,width,0 +p_71392_2_,height,0 +p_71392_3_,width2,0 +p_71392_4_,height2,0 +p_71392_5_,stdTextureWidth,0 +p_71392_6_,stdTextureHeight,0 +p_71396_1_,theCrash,0 +p_71403_1_,worldClientIn,0 +p_71404_1_,crash,0 +p_71515_1_,sender,2 +p_71515_2_,args,2 +p_71516_1_,sender,2 +p_71516_2_,args,2 +p_71518_1_,sender,2 +p_71519_1_,sender,2 +p_71521_0_,sender,2 +p_71523_0_,original,2 +p_71523_1_,region,2 +p_71526_0_,sender,2 +p_71526_1_,str,2 +p_71527_0_,elements,2 +p_71528_0_,sender,2 +p_71528_1_,str,2 +p_71528_2_,min,2 +p_71529_0_,command,2 +p_71530_0_,args,2 +p_71530_1_,possibilities,2 +p_71531_0_,args,2 +p_71531_1_,possibilities,2 +p_71532_0_,sender,2 +p_71532_1_,str,2 +p_71532_2_,min,2 +p_71532_3_,max,2 +p_71565_0_,input,2 +p_71566_0_,character,2 +p_71569_1_,x,2 +p_71569_2_,y,2 +p_71569_3_,z,2 +p_71571_1_,x,2 +p_71571_2_,y,2 +p_71571_3_,z,2 +p_72314_1_,x,2 +p_72314_3_,y,2 +p_72314_5_,z,2 +p_72315_1_,vec,2 +p_72316_1_,other,2 +p_72317_1_,x,2 +p_72317_3_,y,2 +p_72317_5_,z,2 +p_72318_1_,vec,2 +p_72319_1_,vec,2 +p_72321_1_,x,2 +p_72321_3_,y,2 +p_72321_5_,z,2 +p_72322_1_,other,2 +p_72323_1_,other,2 +p_72324_1_,x1,2 +p_72324_11_,z2,2 +p_72324_3_,y1,2 +p_72324_5_,z1,2 +p_72324_7_,x2,2 +p_72324_9_,y2,2 +p_72325_1_,x,2 +p_72325_3_,y,2 +p_72325_5_,z,2 +p_72326_1_,other,2 +p_72328_1_,other,2 +p_72330_0_,x1,2 +p_72330_10_,z2,2 +p_72330_2_,y1,2 +p_72330_4_,z1,2 +p_72330_6_,x2,2 +p_72330_8_,y2,2 +p_72331_1_,x,2 +p_72331_3_,y,2 +p_72331_5_,z,2 +p_72333_1_,vec,2 +p_72354_1_,player,2 +p_72354_2_,worldIn,2 +p_72355_1_,netManager,2 +p_72355_2_,player,2 +p_72356_1_,player,2 +p_72356_2_,dimension,2 +p_72358_1_,player,2 +p_72367_1_,player,2 +p_72368_1_,player,2 +p_72368_2_,dimension,2 +p_72368_3_,conqueredEnd,2 +p_72371_1_,whitelistEnabled,2 +p_72375_1_,player,2 +p_72375_2_,worldIn,2 +p_72377_1_,player,2 +p_72380_1_,player,2 +p_72382_1_,address,2 +p_72385_1_,player,2 +p_72391_1_,player,2 +p_72429_1_,vec,2 +p_72429_2_,x,2 +p_72430_1_,vec,2 +p_72431_1_,vec,0 +p_72434_1_,vec,2 +p_72434_2_,z,2 +p_72435_1_,vec,2 +p_72435_2_,y,2 +p_72436_1_,vec,2 +p_72438_1_,vec,2 +p_72439_1_,x,2 +p_72439_3_,y,2 +p_72439_5_,z,2 +p_72440_1_,angle,2 +p_72441_1_,x,2 +p_72441_3_,y,2 +p_72441_5_,z,2 +p_72442_1_,angle,2 +p_72443_0_,x,2 +p_72443_2_,y,2 +p_72443_4_,z,2 +p_72444_1_,vec,0 +p_72445_1_,x,2 +p_72445_3_,y,2 +p_72445_5_,z,2 +p_72446_1_,angle,0 +p_72593_1_,currentTime,1 +p_72601_1_,socket,1 +p_72604_1_,socket,1 +p_72604_2_,removeFromList,1 +p_72605_1_,socket,1 +p_72605_2_,removeFromList,1 +p_72606_1_,msg,1 +p_72607_1_,msg,1 +p_72608_1_,socket,1 +p_72609_1_,msg,1 +p_72610_1_,msg,1 +p_72612_1_,logWarning,1 +p_72620_1_,data,1 +p_72620_2_,requestPacket,1 +p_72621_1_,requestPacket,1 +p_72622_1_,requestPacket,1 +p_72623_1_,exception,1 +p_72624_1_,requestPacket,1 +p_72625_1_,address,1 +p_72627_1_,requestPacket,1 +p_72654_3_,message,1 +p_72663_0_,input,1 +p_72667_1_,data,1 +p_72668_1_,data,1 +p_72670_1_,data,1 +p_72671_1_,data,1 +p_72704_1_,soundName,2 +p_72704_2_,x,2 +p_72704_4_,y,2 +p_72704_6_,z,2 +p_72704_8_,volume,2 +p_72704_9_,pitch,2 +p_72807_1_,x,2 +p_72807_2_,z,2 +p_72834_1_,x,2 +p_72834_2_,y,2 +p_72834_3_,z,2 +p_72834_4_,byWater,2 +p_72850_1_,x,2 +p_72850_2_,y,2 +p_72850_3_,z,2 +p_72856_1_,entityIn,2 +p_72856_2_,distance,2 +p_72864_1_,x,2 +p_72864_2_,y,2 +p_72864_3_,z,2 +p_72869_1_,particleName,2 +p_72869_10_,velocityY,2 +p_72869_12_,velocityZ,2 +p_72869_2_,x,2 +p_72869_4_,y,2 +p_72869_6_,z,2 +p_72869_8_,velocityX,2 +p_72877_1_,time,2 +p_72878_1_,x,2 +p_72878_2_,y,2 +p_72878_3_,z,2 +p_72878_4_,directionIn,2 +p_72879_1_,x,2 +p_72879_2_,y,2 +p_72879_3_,z,2 +p_72879_4_,directionIn,2 +p_72884_1_,x,2 +p_72884_2_,y,2 +p_72884_3_,z,2 +p_72886_1_,player,2 +p_72886_2_,x,2 +p_72886_3_,y,2 +p_72886_4_,z,2 +p_72886_5_,side,2 +p_72889_1_,player,2 +p_72889_3_,x,2 +p_72889_4_,y,2 +p_72889_5_,z,2 +p_72890_1_,entityIn,2 +p_72890_2_,distance,2 +p_72891_1_,hostile,2 +p_72891_2_,peaceful,2 +p_72894_1_,strength,0 +p_72897_1_,entityIn,0 +p_72908_1_,x,2 +p_72908_3_,y,2 +p_72908_5_,z,2 +p_72908_7_,soundName,2 +p_72908_8_,volume,2 +p_72908_9_,pitch,2 +p_72914_1_,report,2 +p_72924_1_,name,2 +p_72926_2_,x,2 +p_72926_3_,y,2 +p_72926_4_,z,2 +p_72934_1_,recordName,2 +p_72934_2_,x,2 +p_72934_3_,y,2 +p_72934_4_,z,2 +p_72951_1_,x,2 +p_72951_2_,y,2 +p_72951_3_,z,2 +p_72958_1_,x,2 +p_72958_2_,y,2 +p_72958_3_,z,2 +p_72960_1_,entityIn,2 +p_72962_1_,player,2 +p_72962_2_,x,2 +p_72962_3_,y,2 +p_72962_4_,z,2 +p_72977_1_,x,2 +p_72977_3_,y,2 +p_72977_5_,z,2 +p_72977_7_,distance,2 +p_72980_1_,x,2 +p_72980_10_,distanceDelay,2 +p_72980_3_,y,2 +p_72980_5_,z,2 +p_72980_7_,soundName,2 +p_72980_8_,volume,2 +p_72980_9_,pitch,2 +p_73078_1_,player,2 +p_73078_2_,worldIn,2 +p_73078_3_,stack,2 +p_73107_1_,damage,0 +p_73667_1_,key,1 +p_73667_2_,value,1 +p_73669_1_,key,1 +p_73669_2_,defaultValue,1 +p_73670_1_,key,1 +p_73670_2_,defaultValue,1 +p_73671_1_,key,1 +p_73671_2_,defaultValue,1 +p_73728_1_,x,0 +p_73728_2_,startY,0 +p_73728_3_,endY,0 +p_73728_4_,color,0 +p_73729_1_,x,0 +p_73729_2_,y,0 +p_73729_3_,textureX,0 +p_73729_4_,textureY,0 +p_73729_5_,width,0 +p_73729_6_,height,0 +p_73730_1_,startX,0 +p_73730_2_,endX,0 +p_73730_3_,y,0 +p_73730_4_,color,0 +p_73731_1_,fontRendererIn,0 +p_73731_2_,text,0 +p_73731_3_,x,0 +p_73731_4_,y,0 +p_73731_5_,color,0 +p_73732_1_,fontRendererIn,0 +p_73732_2_,text,0 +p_73732_3_,x,0 +p_73732_4_,y,0 +p_73732_5_,color,0 +p_73733_1_,left,0 +p_73733_2_,top,0 +p_73733_3_,right,0 +p_73733_4_,bottom,0 +p_73733_5_,startColor,0 +p_73733_6_,endColor,0 +p_73734_0_,left,0 +p_73734_1_,top,0 +p_73734_2_,right,0 +p_73734_3_,bottom,0 +p_73734_4_,color,0 +p_73863_1_,mouseX,0 +p_73863_2_,mouseY,0 +p_73863_3_,partialTicks,0 +p_73864_1_,mouseX,0 +p_73864_2_,mouseY,0 +p_73864_3_,mouseButton,0 +p_73869_1_,typedChar,0 +p_73869_2_,keyCode,0 +p_73878_1_,result,0 +p_73878_2_,id,0 +p_74507_0_,keyCode,0 +p_74510_0_,keyCode,0 +p_74510_1_,pressed,0 +p_74734_1_,output,2 +p_74744_1_,i,0 +p_74757_1_,key,2 +p_74757_2_,value,2 +p_74759_1_,key,2 +p_74760_1_,key,2 +p_74762_1_,key,2 +p_74763_1_,key,2 +p_74764_1_,key,2 +p_74765_1_,key,2 +p_74767_1_,key,2 +p_74768_1_,key,2 +p_74768_2_,value,2 +p_74769_1_,key,2 +p_74770_1_,key,2 +p_74771_1_,key,2 +p_74772_1_,key,2 +p_74772_2_,value,2 +p_74773_1_,key,2 +p_74773_2_,value,2 +p_74774_1_,key,2 +p_74774_2_,value,2 +p_74775_1_,key,2 +p_74776_1_,key,2 +p_74776_2_,value,2 +p_74777_1_,key,2 +p_74777_2_,value,2 +p_74778_1_,key,2 +p_74778_2_,value,2 +p_74779_1_,key,2 +p_74780_1_,key,2 +p_74780_2_,value,2 +p_74781_1_,key,2 +p_74782_1_,key,2 +p_74782_2_,value,2 +p_74783_1_,key,2 +p_74783_2_,value,2 +p_75140_1_,player,2 +p_75140_2_,id,2 +p_75144_1_,slotId,2 +p_75144_2_,clickedButton,2 +p_75144_3_,mode,2 +p_75144_4_,player,2 +p_75145_1_,player,2 +p_75214_1_,stack,2 +p_75230_1_,trade,2 +p_75230_2_,firstItem,2 +p_75230_3_,secondItem,2 +p_75849_1_,point,2 +p_75904_1_,areaX,2 +p_75904_2_,areaY,2 +p_75904_3_,areaWidth,2 +p_75904_4_,areaHeight,2 +p_76179_0_,data,2 +p_76318_1_,name,2 +p_76320_1_,name,2 +p_76600_1_,x,2 +p_76600_2_,z,2 +p_76611_1_,x,2 +p_76611_2_,z,2 +p_77124_1_,enable,2 +p_77130_0_,type,2 +p_77132_1_,version,2 +p_77621_1_,worldIn,2 +p_77621_2_,player,2 +p_77621_3_,useLiquids,2 +p_77644_1_,stack,2 +p_77659_1_,itemStackIn,2 +p_77659_2_,worldIn,2 +p_77659_3_,player,2 +p_77661_1_,stack,2 +p_77663_1_,stack,2 +p_77663_2_,worldIn,2 +p_77663_3_,entityIn,2 +p_77667_1_,stack,2 +p_77844_2_,duration,2 +p_77844_3_,amplifier,2 +p_77844_4_,probability,2 +p_78025_1_,texture,2 +p_78259_1_,str,0 +p_78259_2_,wrapWidth,0 +p_78261_1_,text,0 +p_78261_2_,x,0 +p_78261_3_,y,0 +p_78261_4_,color,0 +p_78268_1_,str,0 +p_78268_2_,x,0 +p_78268_3_,y,0 +p_78268_4_,wrapWidth,0 +p_78268_5_,addShadow,0 +p_78270_0_,formatChar,0 +p_78271_1_,str,0 +p_78271_2_,wrapWidth,0 +p_78272_0_,colorChar,0 +p_78276_1_,text,0 +p_78276_2_,x,0 +p_78276_3_,y,0 +p_78276_4_,color,0 +p_78279_1_,str,0 +p_78279_2_,x,0 +p_78279_3_,y,0 +p_78279_4_,wrapWidth,0 +p_78279_5_,textColor,0 +p_78280_1_,str,0 +p_78280_2_,wrapWidth,0 +p_78370_1_,red,0 +p_78370_2_,green,0 +p_78370_3_,blue,0 +p_78370_4_,alpha,0 +p_78743_1_,x,0 +p_78743_2_,y,0 +p_78743_3_,z,0 +p_78743_4_,side,0 +p_78744_0_,minecraftIn,0 +p_78744_1_,playerController,0 +p_78744_2_,x,0 +p_78744_3_,y,0 +p_78744_4_,z,0 +p_78744_5_,side,0 +p_78745_1_,player,0 +p_78751_1_,x,0 +p_78751_2_,y,0 +p_78751_3_,z,0 +p_78751_4_,side,0 +p_78752_1_,itemStackIn,0 +p_78753_1_,windowId,0 +p_78753_2_,slotId,0 +p_78753_5_,player,0 +p_78759_1_,x,0 +p_78759_2_,y,0 +p_78759_3_,z,0 +p_78759_4_,side,0 +p_78760_1_,player,0 +p_78760_2_,worldIn,0 +p_78760_3_,itemStackIn,0 +p_78760_4_,x,0 +p_78760_5_,y,0 +p_78760_6_,z,0 +p_78760_7_,side,0 +p_78760_8_,hitVector,0 +p_78761_1_,itemStackIn,0 +p_78761_2_,slotId,0 +p_78764_1_,player,0 +p_78764_2_,targetEntity,0 +p_78766_1_,player,0 +p_78768_1_,player,0 +p_78768_2_,targetEntity,0 +p_78769_1_,player,0 +p_78769_2_,worldIn,0 +p_78769_3_,itemStackIn,0 +p_78837_0_,nbtCompound,0 +p_82141_1_,entityIn,2 +p_82141_2_,unused,2 +p_82142_1_,invisible,2 +p_82149_1_,entityIn,2 +p_82161_0_,armorSlot,2 +p_82161_1_,itemTier,2 +p_82358_1_,args,2 +p_82358_2_,index,2 +p_82359_0_,sender,2 +p_82359_1_,username,2 +p_82360_0_,sender,2 +p_82360_1_,args,2 +p_82360_2_,index,2 +p_82363_0_,sender,2 +p_82363_1_,str,2 +p_82371_1_,other,2 +p_82448_1_,entityIn,2 +p_82449_1_,coordinates,2 +p_82449_10_,teamName,2 +p_82449_11_,worldIn,2 +p_82449_2_,minRadius,2 +p_82449_3_,maxRadius,2 +p_82449_4_,maxAmount,2 +p_82449_5_,gameMode,2 +p_82449_6_,minXp,2 +p_82449_7_,maxXp,2 +p_82449_8_,scoreboardData,2 +p_82449_9_,username,2 +p_82482_1_,source,2 +p_82482_2_,stack,2 +p_82485_1_,source,2 +p_82486_0_,worldIn,2 +p_82486_1_,stack,2 +p_82486_2_,speed,2 +p_82486_4_,position,2 +p_82487_1_,source,2 +p_82487_2_,stack,2 +p_82488_1_,facingIn,2 +p_82489_1_,source,2 +p_82489_2_,facingIn,2 +p_82499_1_,worldIn,2 +p_82499_2_,position,2 +p_82580_1_,key,2 +p_82733_1_,clazz,2 +p_82733_2_,bb,2 +p_82733_3_,selector,2 +p_82846_1_,player,2 +p_82846_2_,index,2 +p_85029_1_,category,2 +p_85030_1_,name,2 +p_85030_2_,volume,2 +p_85030_3_,pitch,2 +p_85031_1_,entityIn,2 +p_85182_1_,x,0 +p_85182_2_,y,0 +p_85182_3_,z,0 +p_85187_1_,text,0 +p_85187_2_,x,0 +p_85187_3_,y,0 +p_85187_4_,color,0 +p_85187_5_,dropShadow,0 +p_92088_1_,x,0 +p_92088_11_,motionZ,0 +p_92088_13_,compund,0 +p_92088_3_,y,0 +p_92088_5_,z,0 +p_92088_7_,motionX,0 +p_92088_9_,motionY,0 +p_94041_1_,index,2 +p_94041_2_,stack,2 +p_94065_1_,x,0 +p_94065_2_,y,0 +p_94065_3_,icon,0 +p_94065_4_,width,0 +p_94065_5_,height,0 +p_94527_0_,slotIn,2 +p_94527_1_,stack,2 +p_94527_2_,stackSizeMatters,2 +p_94572_1_,x,2 +p_94572_2_,y,2 +p_94572_3_,z,2 +p_94574_1_,x,2 +p_94574_2_,y,2 +p_94574_3_,z,2 +p_94574_4_,directionIn,2 +p_94577_1_,x,2 +p_94577_2_,y,2 +p_94577_3_,z,2 +p_94581_1_,register,0 +p_96290_1_,inWorld,2 +p_96290_2_,x,2 +p_96290_3_,y,2 +p_96290_4_,z,2 +p_96290_5_,player,2 +p_96332_0_,sender,2 +p_96332_1_,query,2 +p_96333_0_,strings,2 +p_96456_1_,scoreboardIn,2 +p_96456_2_,player,2 +p_96457_1_,player,2 +p_96457_2_,scoreboardCriteria,2 +p_98034_1_,player,0 +p_98035_1_,tagCompund,2 +p_98179_1_,x,2 +p_98179_2_,y,2 +p_98179_3_,z,2 +p_i1020_1_,buttonId,0 +p_i1020_2_,x,0 +p_i1020_3_,y,0 +p_i1020_4_,buttonText,0 +p_i1021_1_,stateName,0 +p_i1021_2_,id,0 +p_i1040_1_,parentScreen,0 +p_i1044_1_,textureManagerInstance,0 +p_i1044_2_,skinCacheDirectory,0 +p_i1044_3_,sessionService,0 +p_i1052_2_,width,0 +p_i1052_3_,height,0 +p_i1063_1_,mc,0 +p_i1085_1_,selectionListIn,0 +p_i1103_1_,sessionIn,0 +p_i1103_10_,version,0 +p_i1103_11_,twitchDetails,0 +p_i1103_12_,assetsJsonVersion,0 +p_i1103_2_,displayWidth,0 +p_i1103_3_,displayHeight,0 +p_i1103_4_,fullscreen,0 +p_i1103_5_,isDemo,0 +p_i1103_6_,dataDir,0 +p_i1103_7_,assetsDir,0 +p_i1103_8_,resourcePackDir,0 +p_i1103_9_,proxy,0 +p_i1108_1_,x,2 +p_i1108_3_,y,2 +p_i1108_5_,z,2 +p_i1138_1_,bansFile,2 +p_i1144_1_,saveFile,2 +p_i1188_1_,id,2 +p_i1188_2_,statData,2 +p_i1203_1_,worldIn,0 +p_i1206_1_,message,1 +p_i1206_2_,cause,1 +p_i1207_1_,message,1 +p_i1354_1_,x,2 +p_i1354_2_,y,2 +p_i1354_3_,z,2 +p_i1355_1_,coords,2 +p_i1368_1_,xCoord,2 +p_i1368_3_,yCoord,2 +p_i1368_5_,zCoord,2 +p_i1490_1_,bansFile,2 +p_i1500_1_,server,2 +p_i1503_1_,server,1 +p_i1508_1_,workDir,1 +p_i1530_1_,server,2 +p_i1530_2_,networkManagerIn,2 +p_i1530_3_,player,2 +p_i1533_1_,size,1 +p_i1535_2_,requestPacket,1 +p_i1537_2_,socket,1 +p_i1582_1_,worldIn,2 +p_i1709_1_,worldIn,2 +p_i1709_2_,x,2 +p_i1709_4_,y,2 +p_i1709_6_,z,2 +p_i1710_1_,worldIn,2 +p_i1710_2_,x,2 +p_i1710_4_,y,2 +p_i1710_6_,z,2 +p_i1710_8_,stack,2 +p_i1812_1_,invPlayer,2 +p_i1812_2_,teFurnace,2 +p_i1853_1_,index,2 +p_i1853_2_,label,2 +p_i1960_1_,id,2 +p_i1960_2_,name,2 +p_i1960_3_,version,2 +p_i1963_1_,worldIn,2 +p_i2300_1_,x1,2 +p_i2300_11_,z2,2 +p_i2300_3_,y1,2 +p_i2300_5_,z1,2 +p_i2300_7_,x2,2 +p_i2300_9_,y2,2 +p_i2362_1_,serverIn,1 +p_i45001_1_,description,0 +p_i45001_2_,keyCode,0 +p_i45001_3_,category,0 +p_i45087_1_,resourceManager,0 +p_i45087_2_,programName,0 +p_i45091_1_,type,0 +p_i45091_2_,shaderId,0 +p_i45091_3_,filename,0 +p_i45092_1_,name,0 +p_i45092_2_,type,0 +p_i45092_3_,count,0 +p_i45092_4_,manager,0 +p_i45103_1_,soundResource,0 +p_i45107_1_,soundResource,0 +p_i45107_2_,volume,0 +p_i45107_3_,pitch,0 +p_i45107_4_,xPosition,0 +p_i45107_5_,yPosition,0 +p_i45107_6_,zPosition,0 +p_i45108_1_,soundResource,0 +p_i45108_2_,volume,0 +p_i45108_3_,pitch,0 +p_i45108_4_,repeat,0 +p_i45108_5_,repeatDelay,0 +p_i45108_6_,attenuationType,0 +p_i45108_7_,xPosition,0 +p_i45108_8_,yPosition,0 +p_i45108_9_,zPosition,0 +p_i45140_1_,cipherIn,2 +p_i45141_1_,cipher,2 +p_i45142_1_,cipher,2 +p_i45146_1_,inPacket,2 +p_i45146_2_,inFutureListeners,2 +p_i45147_1_,isClient,2 +p_i45152_3_,protocolId,2 +p_i45154_1_,wrapped,2 +p_i45159_1_,msg,2 +p_i45160_1_,translationKey,2 +p_i45160_2_,args,2 +p_i45161_1_,component,2 +p_i45161_2_,message,2 +p_i45162_1_,component,2 +p_i45162_2_,index,2 +p_i45163_1_,component,2 +p_i45163_2_,cause,2 +p_i45172_1_,ent,2 +p_i45172_2_,animationType,2 +p_i45175_1_,xcoord,2 +p_i45175_2_,ycoord,2 +p_i45175_3_,zcoord,2 +p_i45175_4_,meta,2 +p_i45175_5_,nbtTag,2 +p_i45179_1_,component,2 +p_i45180_1_,component,2 +p_i45180_2_,chat,2 +p_i45189_1_,channelName,2 +p_i45189_2_,dataIn,2 +p_i45190_1_,channelName,2 +p_i45190_2_,dataIn,2 +p_i45194_1_,stateIn,2 +p_i45208_1_,capabilities,2 +p_i45210_1_,player,2 +p_i45210_2_,xPos,2 +p_i45210_3_,yPos,2 +p_i45210_4_,zPos,2 +p_i45223_1_,healthIn,2 +p_i45223_2_,foodLevelIn,2 +p_i45223_3_,saturationIn,2 +p_i45239_1_,msg,2 +p_i45240_1_,messageIn,2 +p_i45241_3_,statusId,2 +p_i45242_1_,statusIn,2 +p_i45250_3_,actionId,2 +p_i45257_1_,capabilities,2 +p_i45267_1_,profileIn,2 +p_i45268_1_,serverId,2 +p_i45268_2_,key,2 +p_i45269_1_,reasonIn,2 +p_i45270_1_,profileIn,2 +p_i45272_1_,time,2 +p_i45273_1_,responseIn,2 +p_i45275_1_,nameIn,2 +p_i45275_2_,protocolIn,2 +p_i45281_1_,workDir,1 +p_i45281_2_,proxy,1 +p_i45286_1_,networkSystemIn,2 +p_i45292_1_,server,2 +p_i45295_1_,serverIn,2 +p_i45295_2_,netManager,2 +p_i45299_1_,serverIn,2 +p_i45299_2_,netManager,2 +p_i45300_2_,threadName,1 +p_i45387_1_,name,2 +p_i45387_2_,materialIn,2 +p_i45393_1_,name,2 +p_i45393_2_,volume,2 +p_i45393_3_,frequency,2 +p_i45394_1_,materialIn,2 +p_i45395_1_,materialIn,2 +p_i45396_1_,wooden,2 +p_i45397_1_,type,2 +p_i45411_1_,name,2 +p_i45411_2_,materialIn,2 +p_i45411_3_,ignoreSimilarity,2 +p_i46314_1_,mc,0 +p_i46323_1_,buttonId,0 +p_i46323_2_,x,0 +p_i46323_3_,y,0 +p_i46323_4_,widthIn,0 +p_i46323_5_,heightIn,0 +p_i46323_6_,buttonText,0 +p_i46336_1_,reasonIn,2 +p_i46342_1_,size,2 +p_i46372_1_,propertiesFile,1 +p_i46373_1_,eulaFile,1 +p_i46400_1_,workDir,2 +p_i46400_2_,proxy,2 diff --git a/mcppatches/mappings/version b/mcppatches/mappings/version new file mode 100644 index 00000000..c5ae7fc4 --- /dev/null +++ b/mcppatches/mappings/version @@ -0,0 +1 @@ +MCP-STABLE-12-1.7.10 \ No newline at end of file diff --git a/mcppatches/mcp.cfg.patch b/mcppatches/mcp.cfg.patch new file mode 100644 index 00000000..0b9cc090 --- /dev/null +++ b/mcppatches/mcp.cfg.patch @@ -0,0 +1,12 @@ +diff -u a/mcp.cfg b/mcp.cfg +--- a/mcp.cfg ++++ b/mcp.cfg +@@ -166,7 +166,7 @@ + CmdSS = %s -cp "{classpath}" -jar %s -i {injar} -o {outjar} -m {mapfile} --kill-source + CmdSSReobf = %s -cp "{classpath}" -jar %s -i {injar} -o {outjar} -r -m {mapfile} -d {identifier} -e %s + CmdJadretro = %s -jar %s {targetdir} +-CmdFernflower = %s -jar %s -din=1 -rbr=0 -dgs=1 -asc=1 -log=WARN {indir} {outdir} ++CmdFernflower = %s -Xincgc -Xms1024M -Xmx1024M -jar %s -din=1 -rbr=0 -dgs=1 -asc=1 -log=WARN {indir} {outdir} + CmdExceptor = %s -jar %s --jarIn {input} --jarOut {output} --mapIn {conf} --log {log} --jsonIn {json} --applyMarkers --generateParams + CmdExceptorDry = %s -jar %s --jarIn {input} --mapIn {conf} --log {log} --jsonIn {json} --applyMarkers + CmdRecomp = %s -Xlint:-options -deprecation -g -source 1.6 -target 1.6 -classpath "{classpath}" -sourcepath {sourcepath} -d {outpath} {pkgs} diff --git a/mcppatches/patches/net/minecraft/client/entity/AbstractClientPlayer.java.patch b/mcppatches/patches/net/minecraft/client/entity/AbstractClientPlayer.java.patch new file mode 100644 index 00000000..cf8edbe0 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/entity/AbstractClientPlayer.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/client/entity/AbstractClientPlayer.java ++++ b/net/minecraft/client/entity/AbstractClientPlayer.java +@@ -29,7 +29,6 @@ + private static final String __OBFID = "CL_00000935"; + private ResourceLocation ofLocationCape = null; + private String nameClear = null; +- private static final String __OBFID = "CL_00000935"; + + public AbstractClientPlayer(World p_i45074_1_, GameProfile p_i45074_2_) + { +@@ -179,7 +178,6 @@ + { + static final int[] SKIN_PART_TYPES = new int[Type.values().length]; + private static final String __OBFID = "CL_00001832"; +- private static final String __OBFID = "CL_00001832"; + + static + { diff --git a/mcppatches/patches/net/minecraft/client/gui/FontRenderer.java.patch b/mcppatches/patches/net/minecraft/client/gui/FontRenderer.java.patch new file mode 100644 index 00000000..0e79ee58 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/gui/FontRenderer.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/gui/FontRenderer.java ++++ b/net/minecraft/client/gui/FontRenderer.java +@@ -105,7 +105,6 @@ + public ResourceLocation locationFontTextureBase; + public boolean enabled = true; + public float scaleFactor = 1.0F; +- private static final String __OBFID = "CL_00000660"; + + public FontRenderer(GameSettings par1GameSettings, ResourceLocation par2ResourceLocation, TextureManager par3TextureManager, boolean par4) + { diff --git a/mcppatches/patches/net/minecraft/client/gui/GuiVideoSettings.java.patch b/mcppatches/patches/net/minecraft/client/gui/GuiVideoSettings.java.patch new file mode 100644 index 00000000..50552807 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/gui/GuiVideoSettings.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/gui/GuiVideoSettings.java ++++ b/net/minecraft/client/gui/GuiVideoSettings.java +@@ -22,7 +22,6 @@ + private int lastMouseX = 0; + private int lastMouseY = 0; + private long mouseStillTime = 0L; +- private static final String __OBFID = "CL_00000718"; + + public GuiVideoSettings(GuiScreen par1GuiScreen, GameSettings par2GameSettings) + { diff --git a/mcppatches/patches/net/minecraft/client/model/ModelRenderer.java.patch b/mcppatches/patches/net/minecraft/client/model/ModelRenderer.java.patch new file mode 100644 index 00000000..220e446f --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/model/ModelRenderer.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/model/ModelRenderer.java ++++ b/net/minecraft/client/model/ModelRenderer.java +@@ -45,7 +45,6 @@ + private static final String __OBFID = "CL_00000874"; + public List spriteList; + public boolean mirrorV; +- private static final String __OBFID = "CL_00000874"; + + public ModelRenderer(ModelBase par1ModelBase, String par2Str) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/EntityRenderer.java.patch b/mcppatches/patches/net/minecraft/client/renderer/EntityRenderer.java.patch new file mode 100644 index 00000000..bf5a215a --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/EntityRenderer.java.patch @@ -0,0 +1,52 @@ +--- a/net/minecraft/client/renderer/EntityRenderer.java ++++ b/net/minecraft/client/renderer/EntityRenderer.java +@@ -242,7 +242,6 @@ + private boolean lastShowDebugInfo = false; + private boolean showExtendedDebugInfo = false; + private long lastErrorCheckTimeMs = 0L; +- private static final String __OBFID = "CL_00000947"; + + public EntityRenderer(Minecraft p_i45076_1_, IResourceManager p_i45076_2_) + { +@@ -1391,41 +1390,26 @@ + var11.addCrashSectionCallable("Screen name", new Callable() + { + private static final String __OBFID = "CL_00000948"; +- private static final String __OBFID = "CL_00000948"; + public String call() + { + return EntityRenderer.this.mc.currentScreen.getClass().getCanonicalName(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + var11.addCrashSectionCallable("Mouse location", new Callable() + { + private static final String __OBFID = "CL_00000950"; +- private static final String __OBFID = "CL_00000950"; + public String call() + { + return String.format("Scaled: (%d, %d). Absolute: (%d, %d)", new Object[] {Integer.valueOf(var161), Integer.valueOf(var171), Integer.valueOf(Mouse.getX()), Integer.valueOf(Mouse.getY())}); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + var11.addCrashSectionCallable("Screen size", new Callable() + { + private static final String __OBFID = "CL_00000951"; +- private static final String __OBFID = "CL_00000951"; + public String call() + { + return String.format("Scaled: (%d, %d). Absolute: (%d, %d). Scale factor of %d", new Object[] {Integer.valueOf(var133.getScaledWidth()), Integer.valueOf(var133.getScaledHeight()), Integer.valueOf(EntityRenderer.this.mc.displayWidth), Integer.valueOf(EntityRenderer.this.mc.displayHeight), Integer.valueOf(var133.getScaleFactor())}); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + throw new ReportedException(var10); + } diff --git a/mcppatches/patches/net/minecraft/client/renderer/ImageBufferDownload.java.patch b/mcppatches/patches/net/minecraft/client/renderer/ImageBufferDownload.java.patch new file mode 100644 index 00000000..a8494941 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/ImageBufferDownload.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/ImageBufferDownload.java ++++ b/net/minecraft/client/renderer/ImageBufferDownload.java +@@ -11,7 +11,6 @@ + private int imageWidth; + private int imageHeight; + private static final String __OBFID = "CL_00000956"; +- private static final String __OBFID = "CL_00000956"; + + public BufferedImage parseUserSkin(BufferedImage par1BufferedImage) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/OpenGlHelper.java.patch b/mcppatches/patches/net/minecraft/client/renderer/OpenGlHelper.java.patch new file mode 100644 index 00000000..2cc6bbfa --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/OpenGlHelper.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/OpenGlHelper.java ++++ b/net/minecraft/client/renderer/OpenGlHelper.java +@@ -63,7 +63,6 @@ + private static final String __OBFID = "CL_00001179"; + public static float lastBrightnessX = 0.0F; + public static float lastBrightnessY = 0.0F; +- private static final String __OBFID = "CL_00001179"; + + /** + * Initializes the texture constants to be used when rendering lightmap values diff --git a/mcppatches/patches/net/minecraft/client/renderer/RenderBlocks.java.patch b/mcppatches/patches/net/minecraft/client/renderer/RenderBlocks.java.patch new file mode 100644 index 00000000..8b7c5880 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/RenderBlocks.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/RenderBlocks.java ++++ b/net/minecraft/client/renderer/RenderBlocks.java +@@ -325,7 +325,6 @@ + public float aoLightValueOpaque = 0.2F; + public boolean betterSnowEnabled = true; + private static RenderBlocks instance; +- private static final String __OBFID = "CL_00000940"; + + public RenderBlocks(IBlockAccess par1IBlockAccess) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/RenderGlobal.java.patch b/mcppatches/patches/net/minecraft/client/renderer/RenderGlobal.java.patch new file mode 100644 index 00000000..1db0410e --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/RenderGlobal.java.patch @@ -0,0 +1,59 @@ +--- a/net/minecraft/client/renderer/RenderGlobal.java ++++ b/net/minecraft/client/renderer/RenderGlobal.java +@@ -265,7 +265,6 @@ + private long lastMovedTime = System.currentTimeMillis(); + private long lastActionTime = System.currentTimeMillis(); + private static AxisAlignedBB AABB_INFINITE = AxisAlignedBB.getBoundingBox(Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY); +- private static final String __OBFID = "CL_00000954"; + + public RenderGlobal(Minecraft par1Minecraft) + { +@@ -1821,7 +1820,7 @@ + float var19 = this.theWorld.provider.getCloudHeight() - var21 + 0.33F; + var19 += this.mc.gameSettings.ofCloudsHeight * 128.0F; + float var20 = (float)(dc * (double)var10); +- float var21 = (float)(cdx * (double)var10); ++ float var21a = (float)(cdx * (double)var10); + var5.startDrawingQuads(); + var5.setColorRGBA_F(exactPlayerX, var8, exactPlayerY, 0.8F); + +@@ -1829,10 +1828,10 @@ + { + for (int var23 = -var3 * var4; var23 < var3 * var4; var23 += var3) + { +- var5.addVertexWithUV((double)(var22 + 0), (double)var19, (double)(var23 + var3), (double)((float)(var22 + 0) * var10 + var20), (double)((float)(var23 + var3) * var10 + var21)); +- var5.addVertexWithUV((double)(var22 + var3), (double)var19, (double)(var23 + var3), (double)((float)(var22 + var3) * var10 + var20), (double)((float)(var23 + var3) * var10 + var21)); +- var5.addVertexWithUV((double)(var22 + var3), (double)var19, (double)(var23 + 0), (double)((float)(var22 + var3) * var10 + var20), (double)((float)(var23 + 0) * var10 + var21)); +- var5.addVertexWithUV((double)(var22 + 0), (double)var19, (double)(var23 + 0), (double)((float)(var22 + 0) * var10 + var20), (double)((float)(var23 + 0) * var10 + var21)); ++ var5.addVertexWithUV((double)(var22 + 0), (double)var19, (double)(var23 + var3), (double)((float)(var22 + 0) * var10 + var20), (double)((float)(var23 + var3) * var10 + var21a)); ++ var5.addVertexWithUV((double)(var22 + var3), (double)var19, (double)(var23 + var3), (double)((float)(var22 + var3) * var10 + var20), (double)((float)(var23 + var3) * var10 + var21a)); ++ var5.addVertexWithUV((double)(var22 + var3), (double)var19, (double)(var23 + 0), (double)((float)(var22 + var3) * var10 + var20), (double)((float)(var23 + 0) * var10 + var21a)); ++ var5.addVertexWithUV((double)(var22 + 0), (double)var19, (double)(var23 + 0), (double)((float)(var22 + 0) * var10 + var20), (double)((float)(var23 + 0) * var10 + var21a)); + } + } + +@@ -2509,15 +2508,10 @@ + var16.addCrashSectionCallable("Position", new Callable() + { + private static final String __OBFID = "CL_00000955"; +- private static final String __OBFID = "CL_00000955"; + public String call() + { + return CrashReportCategory.func_85074_a(par2, par4, par6); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + throw new ReportedException(var15); + } +@@ -2540,7 +2534,7 @@ + double var15 = this.mc.renderViewEntity.posX - par2; + double var17 = this.mc.renderViewEntity.posY - par4; + double var19 = this.mc.renderViewEntity.posZ - par6; +- Object var21 = null; ++ EntityFX var21 = null; + + if (par1Str.equals("hugeexplosion")) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/Tessellator.java.patch b/mcppatches/patches/net/minecraft/client/renderer/Tessellator.java.patch new file mode 100644 index 00000000..0b977aa0 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/Tessellator.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/Tessellator.java ++++ b/net/minecraft/client/renderer/Tessellator.java +@@ -112,7 +112,6 @@ + private VertexData[] vertexDatas; + private boolean[] drawnIcons; + private TextureAtlasSprite[] vertexQuadIcons; +- private static final String __OBFID = "CL_00000960"; + + public Tessellator() + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/ThreadDownloadImageData.java.patch b/mcppatches/patches/net/minecraft/client/renderer/ThreadDownloadImageData.java.patch new file mode 100644 index 00000000..27489d79 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/ThreadDownloadImageData.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/client/renderer/ThreadDownloadImageData.java ++++ b/net/minecraft/client/renderer/ThreadDownloadImageData.java +@@ -37,7 +37,6 @@ + private static final String __OBFID = "CL_00001049"; + public Boolean imageFound = null; + public boolean pipeline = false; +- private static final String __OBFID = "CL_00001049"; + + public ThreadDownloadImageData(File par1GuiCreateFlatWorld, String p_i1049_2_, ResourceLocation p_i1049_3_, IImageBuffer p_i1049_4_) + { +@@ -121,7 +120,6 @@ + this.imageThread = new Thread("Texture Downloader #" + threadDownloadCounter.incrementAndGet()) + { + private static final String __OBFID = "CL_00001050"; +- private static final String __OBFID = "CL_00001050"; + public void run() + { + HttpURLConnection var1 = null; diff --git a/mcppatches/patches/net/minecraft/client/renderer/WorldRenderer.java.patch b/mcppatches/patches/net/minecraft/client/renderer/WorldRenderer.java.patch new file mode 100644 index 00000000..039d9558 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/WorldRenderer.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/WorldRenderer.java ++++ b/net/minecraft/client/renderer/WorldRenderer.java +@@ -110,7 +110,6 @@ + public RenderGlobal renderGlobal; + public static int globalChunkOffsetX = 0; + public static int globalChunkOffsetZ = 0; +- private static final String __OBFID = "CL_00000942"; + + public WorldRenderer(World par1World, List par2List, int par3, int par4, int par5, int par6) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/culling/ClippingHelper.java.patch b/mcppatches/patches/net/minecraft/client/renderer/culling/ClippingHelper.java.patch new file mode 100644 index 00000000..578280a2 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/culling/ClippingHelper.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/culling/ClippingHelper.java ++++ b/net/minecraft/client/renderer/culling/ClippingHelper.java +@@ -7,7 +7,6 @@ + public float[] modelviewMatrix = new float[16]; + public float[] clippingMatrix = new float[16]; + private static final String __OBFID = "CL_00000977"; +- private static final String __OBFID = "CL_00000977"; + + /** + * Returns true if the box is inside all 6 clipping planes, otherwise returns false. diff --git a/mcppatches/patches/net/minecraft/client/renderer/culling/Frustrum.java.patch b/mcppatches/patches/net/minecraft/client/renderer/culling/Frustrum.java.patch new file mode 100644 index 00000000..5f3ef233 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/culling/Frustrum.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/culling/Frustrum.java ++++ b/net/minecraft/client/renderer/culling/Frustrum.java +@@ -9,7 +9,6 @@ + private double yPosition; + private double zPosition; + private static final String __OBFID = "CL_00000976"; +- private static final String __OBFID = "CL_00000976"; + + public void setPosition(double par1, double par3, double par5) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/texture/Stitcher.java.patch b/mcppatches/patches/net/minecraft/client/renderer/texture/Stitcher.java.patch new file mode 100644 index 00000000..1ac2fc17 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/texture/Stitcher.java.patch @@ -0,0 +1,26 @@ +--- a/net/minecraft/client/renderer/texture/Stitcher.java ++++ b/net/minecraft/client/renderer/texture/Stitcher.java +@@ -24,7 +24,6 @@ + /** Max size (width or height) of a single tile */ + private final int maxTileDimension; + private static final String __OBFID = "CL_00001054"; +- private static final String __OBFID = "CL_00001054"; + + public Stitcher(int p_i45095_1_, int p_i45095_2_, boolean p_i45095_3_, int p_i45095_4_, int p_i45095_5_) + { +@@ -233,7 +232,6 @@ + private boolean rotated; + private float scaleFactor = 1.0F; + private static final String __OBFID = "CL_00001055"; +- private static final String __OBFID = "CL_00001055"; + + public Holder(TextureAtlasSprite p_i45094_1_, int p_i45094_2_) + { +@@ -323,7 +321,6 @@ + private List subSlots; + private Stitcher.Holder holder; + private static final String __OBFID = "CL_00001056"; +- private static final String __OBFID = "CL_00001056"; + + public Slot(int par1, int par2, int par3, int par4) + { diff --git a/mcppatches/patches/net/minecraft/client/renderer/texture/TextureAtlasSprite.java.patch b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureAtlasSprite.java.patch new file mode 100644 index 00000000..4d8c0763 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureAtlasSprite.java.patch @@ -0,0 +1,29 @@ +--- a/net/minecraft/client/renderer/texture/TextureAtlasSprite.java ++++ b/net/minecraft/client/renderer/texture/TextureAtlasSprite.java +@@ -47,7 +47,6 @@ + private int uploadedOwnFrameIndex = -1; + public IntBuffer[] frameBuffers; + public Mipmaps[] frameMipmaps; +- private static final String __OBFID = "CL_00001062"; + + protected TextureAtlasSprite(String par1Str) + { +@@ -330,7 +329,6 @@ + var7.addCrashSectionCallable("Frame sizes", new Callable() + { + private static final String __OBFID = "CL_00001063"; +- private static final String __OBFID = "CL_00001063"; + public String call() + { + StringBuilder var1 = new StringBuilder(); +@@ -351,10 +349,6 @@ + + return var1.toString(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + throw new ReportedException(var6); + } diff --git a/mcppatches/patches/net/minecraft/client/renderer/texture/TextureManager.java.patch b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureManager.java.patch new file mode 100644 index 00000000..c3d1bebf --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureManager.java.patch @@ -0,0 +1,26 @@ +--- a/net/minecraft/client/renderer/texture/TextureManager.java ++++ b/net/minecraft/client/renderer/texture/TextureManager.java +@@ -29,7 +29,6 @@ + private final Map mapTextureCounters = Maps.newHashMap(); + private IResourceManager theResourceManager; + private static final String __OBFID = "CL_00001064"; +- private static final String __OBFID = "CL_00001064"; + + public TextureManager(IResourceManager par1ResourceManager) + { +@@ -109,15 +108,10 @@ + var6.addCrashSectionCallable("Texture object class", new Callable() + { + private static final String __OBFID = "CL_00001065"; +- private static final String __OBFID = "CL_00001065"; + public String call() + { + return par2TextureObject.getClass().getName(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + throw new ReportedException(var5); + } diff --git a/mcppatches/patches/net/minecraft/client/renderer/texture/TextureMap.java.patch b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureMap.java.patch new file mode 100644 index 00000000..c8ef13d9 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureMap.java.patch @@ -0,0 +1,52 @@ +--- a/net/minecraft/client/renderer/texture/TextureMap.java ++++ b/net/minecraft/client/renderer/texture/TextureMap.java +@@ -67,7 +67,6 @@ + private double iconGridSizeV; + private static final boolean ENABLE_SKIP = Boolean.parseBoolean(System.getProperty("fml.skipFirstTextureLoad", "true")); + private boolean skipFirst; +- private static final String __OBFID = "CL_00001058"; + + public TextureMap(int par1, String par2Str) + { +@@ -267,41 +266,26 @@ + var261.addCrashSectionCallable("Sprite name", new Callable() + { + private static final String __OBFID = "CL_00001059"; +- private static final String __OBFID = "CL_00001059"; + public String call() + { + return sheetWidth1.getIconName(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + var261.addCrashSectionCallable("Sprite size", new Callable() + { + private static final String __OBFID = "CL_00001060"; +- private static final String __OBFID = "CL_00001060"; + public String call() + { + return sheetWidth1.getIconWidth() + " x " + sheetWidth1.getIconHeight(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + var261.addCrashSectionCallable("Sprite frames", new Callable() + { + private static final String __OBFID = "CL_00001061"; +- private static final String __OBFID = "CL_00001061"; + public String call() + { + return sheetWidth1.getFrameCount() + " frames"; + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + var261.addCrashSection("Mipmap levels", Integer.valueOf(this.mipmapLevels)); + throw new ReportedException(debugImage1); diff --git a/mcppatches/patches/net/minecraft/client/renderer/texture/TextureUtil.java.patch b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureUtil.java.patch new file mode 100644 index 00000000..166fddad --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/renderer/texture/TextureUtil.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/renderer/texture/TextureUtil.java ++++ b/net/minecraft/client/renderer/texture/TextureUtil.java +@@ -28,7 +28,6 @@ + private static float field_152779_g = -1.0F; + private static final int[] field_147957_g; + private static final String __OBFID = "CL_00001067"; +- private static final String __OBFID = "CL_00001067"; + + public static int glGenTextures() + { diff --git a/mcppatches/patches/net/minecraft/client/settings/GameSettings.java.patch b/mcppatches/patches/net/minecraft/client/settings/GameSettings.java.patch new file mode 100644 index 00000000..80a6b410 --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/settings/GameSettings.java.patch @@ -0,0 +1,43 @@ +--- a/net/minecraft/client/settings/GameSettings.java ++++ b/net/minecraft/client/settings/GameSettings.java +@@ -49,7 +49,6 @@ + private static final ParameterizedType typeListString = new ParameterizedType() + { + private static final String __OBFID = "CL_00000651"; +- private static final String __OBFID = "CL_00000651"; + public Type[] getActualTypeArguments() + { + return new Type[] {String.class}; +@@ -275,7 +274,6 @@ + public String language; + public boolean forceUnicodeFont; + private static final String __OBFID = "CL_00000650"; +- private static final String __OBFID = "CL_00000650"; + + public GameSettings(Minecraft par1Minecraft, File par2File) + { +@@ -3072,7 +3070,6 @@ + ANISOTROPIC_FILTERING("ANISOTROPIC_FILTERING", 32, "ANISOTROPIC_FILTERING", 32, "options.anisotropicFiltering", true, false, 1.0F, 16.0F, 0.0F, (Object)null, null) + { + private static final String __OBFID = "CL_00000654"; +- private static final String __OBFID = "CL_00000654"; + protected float snapToStep(float p_148264_1_) + { + return (float)MathHelper.roundUpToPowerOfTwo((int)p_148264_1_); +@@ -3164,7 +3161,7 @@ + private static final String __OBFID = "CL_00000653"; + + private static final GameSettings.Options[] $VALUES$ = new GameSettings.Options[]{INVERT_MOUSE, SENSITIVITY, FOV, GAMMA, SATURATION, RENDER_DISTANCE, VIEW_BOBBING, ANAGLYPH, ADVANCED_OPENGL, FRAMERATE_LIMIT, FBO_ENABLE, DIFFICULTY, GRAPHICS, AMBIENT_OCCLUSION, GUI_SCALE, RENDER_CLOUDS, PARTICLES, CHAT_VISIBILITY, CHAT_COLOR, CHAT_LINKS, CHAT_OPACITY, CHAT_LINKS_PROMPT, SNOOPER_ENABLED, USE_FULLSCREEN, ENABLE_VSYNC, SHOW_CAPE, TOUCHSCREEN, CHAT_SCALE, CHAT_WIDTH, CHAT_HEIGHT_FOCUSED, CHAT_HEIGHT_UNFOCUSED, MIPMAP_LEVELS, ANISOTROPIC_FILTERING, FORCE_UNICODE_FONT, STREAM_BYTES_PER_PIXEL, STREAM_VOLUME_MIC, STREAM_VOLUME_SYSTEM, STREAM_KBPS, STREAM_FPS, STREAM_COMPRESSION, STREAM_SEND_METADATA, STREAM_CHAT_ENABLED, STREAM_CHAT_USER_FILTER, STREAM_MIC_TOGGLE_BEHAVIOR, FOG_FANCY, FOG_START, MIPMAP_TYPE, LOAD_FAR, PRELOADED_CHUNKS, SMOOTH_FPS, CLOUDS, CLOUD_HEIGHT, TREES, GRASS, RAIN, WATER, ANIMATED_WATER, ANIMATED_LAVA, ANIMATED_FIRE, ANIMATED_PORTAL, AO_LEVEL, LAGOMETER, SHOW_FPS, AUTOSAVE_TICKS, BETTER_GRASS, ANIMATED_REDSTONE, ANIMATED_EXPLOSION, ANIMATED_FLAME, ANIMATED_SMOKE, WEATHER, SKY, STARS, SUN_MOON, VIGNETTE, CHUNK_UPDATES, CHUNK_UPDATES_DYNAMIC, TIME, CLEAR_WATER, SMOOTH_WORLD, DEPTH_FOG, VOID_PARTICLES, WATER_PARTICLES, RAIN_SPLASH, PORTAL_PARTICLES, POTION_PARTICLES, PROFILER, DRIPPING_WATER_LAVA, BETTER_SNOW, FULLSCREEN_MODE, ANIMATED_TERRAIN, ANIMATED_ITEMS, SWAMP_COLORS, RANDOM_MOBS, SMOOTH_BIOMES, CUSTOM_FONTS, CUSTOM_COLORS, SHOW_CAPES, CONNECTED_TEXTURES, AA_LEVEL, ANIMATED_TEXTURES, NATURAL_TEXTURES, CHUNK_LOADING, HELD_ITEM_TOOLTIPS, DROPPED_ITEMS, LAZY_CHUNK_LOADING, CUSTOM_SKY, FAST_MATH, FAST_RENDER, TRANSLUCENT_BLOCKS}; +- private static final String __OBFID = "CL_00000653"; ++ + + public static GameSettings.Options getEnumOptions(int par0) + { +@@ -3270,7 +3267,6 @@ + { + static final int[] optionIds = new int[GameSettings.Options.values().length]; + private static final String __OBFID = "CL_00000652"; +- private static final String __OBFID = "CL_00000652"; + + static + { diff --git a/mcppatches/patches/net/minecraft/client/shader/TesselatorVertexState.java.patch b/mcppatches/patches/net/minecraft/client/shader/TesselatorVertexState.java.patch new file mode 100644 index 00000000..66f74d8b --- /dev/null +++ b/mcppatches/patches/net/minecraft/client/shader/TesselatorVertexState.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/client/shader/TesselatorVertexState.java ++++ b/net/minecraft/client/shader/TesselatorVertexState.java +@@ -10,7 +10,6 @@ + private boolean hasNormals; + private boolean hasColor; + private static final String __OBFID = "CL_00000961"; +- private static final String __OBFID = "CL_00000961"; + + public TesselatorVertexState(int[] p_i45079_1_, int p_i45079_2_, int p_i45079_3_, boolean p_i45079_4_, boolean p_i45079_5_, boolean p_i45079_6_, boolean p_i45079_7_) + { diff --git a/mcppatches/patches/net/minecraft/crash/CrashReport.java.patch b/mcppatches/patches/net/minecraft/crash/CrashReport.java.patch new file mode 100644 index 00000000..adf594a2 --- /dev/null +++ b/mcppatches/patches/net/minecraft/crash/CrashReport.java.patch @@ -0,0 +1,126 @@ +--- a/net/minecraft/crash/CrashReport.java ++++ b/net/minecraft/crash/CrashReport.java +@@ -43,7 +43,6 @@ + private StackTraceElement[] stacktrace = new StackTraceElement[0]; + private static final String __OBFID = "CL_00000990"; + private boolean reported = false; +- private static final String __OBFID = "CL_00000990"; + + public CrashReport(String par1Str, Throwable par2Throwable) + { +@@ -61,59 +60,38 @@ + this.theReportCategory.addCrashSectionCallable("Minecraft Version", new Callable() + { + private static final String __OBFID = "CL_00001197"; +- private static final String __OBFID = "CL_00001197"; + public String call() + { + return "1.7.10"; + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("Operating System", new Callable() + { + private static final String __OBFID = "CL_00001222"; +- private static final String __OBFID = "CL_00001222"; + public String call() + { + return System.getProperty("os.name") + " (" + System.getProperty("os.arch") + ") version " + System.getProperty("os.version"); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("Java Version", new Callable() + { + private static final String __OBFID = "CL_00001248"; +- private static final String __OBFID = "CL_00001248"; + public String call() + { + return System.getProperty("java.version") + ", " + System.getProperty("java.vendor"); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("Java VM Version", new Callable() + { + private static final String __OBFID = "CL_00001275"; +- private static final String __OBFID = "CL_00001275"; + public String call() + { + return System.getProperty("java.vm.name") + " (" + System.getProperty("java.vm.info") + "), " + System.getProperty("java.vm.vendor"); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("Memory", new Callable() + { + private static final String __OBFID = "CL_00001302"; +- private static final String __OBFID = "CL_00001302"; + public String call() + { + Runtime var1 = Runtime.getRuntime(); +@@ -125,15 +103,10 @@ + long var12 = var6 / 1024L / 1024L; + return var6 + " bytes (" + var12 + " MB) / " + var4 + " bytes (" + var10 + " MB) up to " + var2 + " bytes (" + var8 + " MB)"; + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("JVM Flags", new Callable() + { + private static final String __OBFID = "CL_00001329"; +- private static final String __OBFID = "CL_00001329"; + public String call() + { + RuntimeMXBean var1 = ManagementFactory.getRuntimeMXBean(); +@@ -159,15 +132,10 @@ + + return String.format("%d total; %s", new Object[] {Integer.valueOf(var3), var4.toString()}); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("AABB Pool Size", new Callable() + { + private static final String __OBFID = "CL_00001355"; +- private static final String __OBFID = "CL_00001355"; + public String call() + { + byte var1 = 0; +@@ -178,23 +146,14 @@ + int var6 = var5 / 1024 / 1024; + return var1 + " (" + var2 + " bytes; " + var3 + " MB) allocated, " + var4 + " (" + var5 + " bytes; " + var6 + " MB) used"; + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + this.theReportCategory.addCrashSectionCallable("IntCache", new Callable() + { + private static final String __OBFID = "CL_00001382"; +- private static final String __OBFID = "CL_00001382"; + public String call() throws SecurityException, NoSuchFieldException, IllegalAccessException, IllegalArgumentException + { + return IntCache.getCacheSizes(); + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + + if (Reflector.FMLCommonHandler_enhanceCrashReport.exists()) diff --git a/mcppatches/patches/net/minecraft/entity/EntityLiving.java.patch b/mcppatches/patches/net/minecraft/entity/EntityLiving.java.patch new file mode 100644 index 00000000..9cee42f5 --- /dev/null +++ b/mcppatches/patches/net/minecraft/entity/EntityLiving.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/entity/EntityLiving.java ++++ b/net/minecraft/entity/EntityLiving.java +@@ -86,7 +86,6 @@ + public int randomMobsId = 0; + public BiomeGenBase spawnBiome = null; + public BlockPos spawnPosition = null; +- private static final String __OBFID = "CL_00001550"; + + public EntityLiving(World par1World) + { diff --git a/mcppatches/patches/net/minecraft/profiler/Profiler.java.patch b/mcppatches/patches/net/minecraft/profiler/Profiler.java.patch new file mode 100644 index 00000000..65492c08 --- /dev/null +++ b/mcppatches/patches/net/minecraft/profiler/Profiler.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/profiler/Profiler.java ++++ b/net/minecraft/profiler/Profiler.java +@@ -36,7 +36,6 @@ + public long timeTickNano; + private long startUpdateChunksNano; + public long timeUpdateChunksNano; +- private static final String __OBFID = "CL_00001497"; + + public Profiler() + { +@@ -247,7 +246,6 @@ + public double field_76330_b; + public String field_76331_c; + private static final String __OBFID = "CL_00001498"; +- private static final String __OBFID = "CL_00001498"; + + public Result(String par1Str, double par2, double par4) + { diff --git a/mcppatches/patches/net/minecraft/server/integrated/IntegratedServer.java.patch b/mcppatches/patches/net/minecraft/server/integrated/IntegratedServer.java.patch new file mode 100644 index 00000000..399c9f13 --- /dev/null +++ b/mcppatches/patches/net/minecraft/server/integrated/IntegratedServer.java.patch @@ -0,0 +1,42 @@ +--- a/net/minecraft/server/integrated/IntegratedServer.java ++++ b/net/minecraft/server/integrated/IntegratedServer.java +@@ -36,7 +36,6 @@ + private boolean isPublic; + private ThreadLanServerPing lanServerPing; + private static final String __OBFID = "CL_00001129"; +- private static final String __OBFID = "CL_00001129"; + + public IntegratedServer(Minecraft par1Minecraft, String par2Str, String par3Str, WorldSettings par4WorldSettings) + { +@@ -256,20 +255,14 @@ + par1CrashReport.getCategory().addCrashSectionCallable("Type", new Callable() + { + private static final String __OBFID = "CL_00001130"; +- private static final String __OBFID = "CL_00001130"; + public String call() + { + return "Integrated Server (map_client.txt)"; + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + par1CrashReport.getCategory().addCrashSectionCallable("Is Modded", new Callable() + { + private static final String __OBFID = "CL_00001131"; +- private static final String __OBFID = "CL_00001131"; + public String call() + { + String var1 = ClientBrandRetriever.getClientModName(); +@@ -284,10 +277,6 @@ + return !var1.equals("vanilla") ? "Definitely; Server brand changed to \'" + var1 + "\'" : (Minecraft.class.getSigners() == null ? "Very likely; Jar signature invalidated" : "Probably not. Jar signature remains and both client + server brands are untouched."); + } + } +- public Object call() throws Exception +- { +- return this.call(); +- } + }); + return par1CrashReport; + } diff --git a/mcppatches/patches/net/minecraft/server/management/PlayerManager.java.patch b/mcppatches/patches/net/minecraft/server/management/PlayerManager.java.patch new file mode 100644 index 00000000..ab6d7fed --- /dev/null +++ b/mcppatches/patches/net/minecraft/server/management/PlayerManager.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/server/management/PlayerManager.java ++++ b/net/minecraft/server/management/PlayerManager.java +@@ -52,7 +52,6 @@ + /** x, z direction vectors: east, south, west, north */ + private final int[][] xzDirectionsConst = new int[][] {{1, 0}, {0, 1}, { -1, 0}, {0, -1}}; + private static final String __OBFID = "CL_00001434"; +- private static final String __OBFID = "CL_00001434"; + + public PlayerManager(WorldServer par1Minecraft) + { +@@ -470,7 +469,6 @@ + private long previousWorldTime; + private static final String __OBFID = "CL_00001435"; + public boolean chunkLoaded; +- private static final String __OBFID = "CL_00001435"; + + public PlayerInstance(int par2, int par3) + { diff --git a/mcppatches/patches/net/minecraft/src/BlockUtils.java.patch b/mcppatches/patches/net/minecraft/src/BlockUtils.java.patch new file mode 100644 index 00000000..91e980cf --- /dev/null +++ b/mcppatches/patches/net/minecraft/src/BlockUtils.java.patch @@ -0,0 +1,26 @@ +--- a/net/minecraft/src/BlockUtils.java ++++ b/net/minecraft/src/BlockUtils.java +@@ -12,19 +12,11 @@ + { + if (directAccessValid) + { +- try +- { +- block.setLightOpacity(opacity); +- return; +- } +- catch (IllegalAccessError var3) +- { +- directAccessValid = false; ++ directAccessValid = false; + +- if (!ForgeBlock_setLightOpacity.exists()) +- { +- throw var3; +- } ++ if (!ForgeBlock_setLightOpacity.exists()) ++ { ++ throw new IllegalAccessError("Block.class - setLightOpacity field doesn't exist!"); + } + } + diff --git a/mcppatches/patches/net/minecraft/src/EntityUtils.java.patch b/mcppatches/patches/net/minecraft/src/EntityUtils.java.patch new file mode 100644 index 00000000..07d3798a --- /dev/null +++ b/mcppatches/patches/net/minecraft/src/EntityUtils.java.patch @@ -0,0 +1,73 @@ +--- a/net/minecraft/src/EntityUtils.java ++++ b/net/minecraft/src/EntityUtils.java +@@ -16,18 +16,11 @@ + { + if (directEntityAge) + { +- try +- { +- return elb.entityAge; +- } +- catch (IllegalAccessError var2) +- { +- directEntityAge = false; ++ directEntityAge = false; + +- if (!ForgeEntityLivingBase_entityAge.exists()) +- { +- throw var2; +- } ++ if (!ForgeEntityLivingBase_entityAge.exists()) ++ { ++ throw new IllegalAccessError("EntityLivingBase.class - entityAge field doesn't exist!"); + } + } + +@@ -38,19 +31,11 @@ + { + if (directEntityAge) + { +- try +- { +- elb.entityAge = age; +- return; +- } +- catch (IllegalAccessError var3) +- { +- directEntityAge = false; ++ directEntityAge = false; + +- if (!ForgeEntityLivingBase_entityAge.exists()) +- { +- throw var3; +- } ++ if (!ForgeEntityLivingBase_entityAge.exists()) ++ { ++ throw new IllegalAccessError("EntityLivingBase.class - entityAge field doesn't exist!"); + } + } + +@@ -61,19 +46,11 @@ + { + if (directDespawnEntity) + { +- try +- { +- el.despawnEntity(); +- return; +- } +- catch (IllegalAccessError var2) +- { +- directDespawnEntity = false; ++ directDespawnEntity = false; + +- if (!ForgeEntityLiving_despawnEntity.exists()) +- { +- throw var2; +- } ++ if (!ForgeEntityLiving_despawnEntity.exists()) ++ { ++ throw new IllegalAccessError("EntityLiving.class - despawnEntity method doesn't exist!"); + } + } + diff --git a/mcppatches/patches/net/minecraft/src/ResourceUtils.java.patch b/mcppatches/patches/net/minecraft/src/ResourceUtils.java.patch new file mode 100644 index 00000000..ca03c6c0 --- /dev/null +++ b/mcppatches/patches/net/minecraft/src/ResourceUtils.java.patch @@ -0,0 +1,25 @@ +--- a/net/minecraft/src/ResourceUtils.java ++++ b/net/minecraft/src/ResourceUtils.java +@@ -13,18 +13,11 @@ + { + if (directAccessValid) + { +- try +- { +- return arp.resourcePackFile; +- } +- catch (IllegalAccessError var2) +- { +- directAccessValid = false; ++ directAccessValid = false; + +- if (!ForgeAbstractResourcePack_resourcePackFile.exists()) +- { +- throw var2; +- } ++ if (!ForgeAbstractResourcePack_resourcePackFile.exists()) ++ { ++ throw new IllegalAccessError("AbstractResourcePack.class - resourcePackFile field doesn't exist!"); + } + } + diff --git a/mcppatches/patches/net/minecraft/util/LongHashMap.java.patch b/mcppatches/patches/net/minecraft/util/LongHashMap.java.patch new file mode 100644 index 00000000..7bc97455 --- /dev/null +++ b/mcppatches/patches/net/minecraft/util/LongHashMap.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/util/LongHashMap.java ++++ b/net/minecraft/util/LongHashMap.java +@@ -21,7 +21,6 @@ + /** count of times elements have been added/removed */ + private transient volatile int modCount; + private static final String __OBFID = "CL_00001492"; +- private static final String __OBFID = "CL_00001492"; + + public LongHashMap() + { +@@ -254,7 +253,6 @@ + LongHashMap.Entry nextEntry; + final int hash; + private static final String __OBFID = "CL_00001493"; +- private static final String __OBFID = "CL_00001493"; + + Entry(int par1, long par2, Object par4Obj, LongHashMap.Entry par5LongHashMapEntry) + { diff --git a/mcppatches/patches/net/minecraft/util/MathHelper.java.patch b/mcppatches/patches/net/minecraft/util/MathHelper.java.patch new file mode 100644 index 00000000..7bc9fc87 --- /dev/null +++ b/mcppatches/patches/net/minecraft/util/MathHelper.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/util/MathHelper.java ++++ b/net/minecraft/util/MathHelper.java +@@ -32,7 +32,6 @@ + */ + private static final int[] multiplyDeBruijnBitPosition; + private static final String __OBFID = "CL_00001496"; +- private static final String __OBFID = "CL_00001496"; + + /** + * sin looked up in a table diff --git a/mcppatches/patches/net/minecraft/world/ChunkCoordIntPair.java.patch b/mcppatches/patches/net/minecraft/world/ChunkCoordIntPair.java.patch new file mode 100644 index 00000000..7dfd0231 --- /dev/null +++ b/mcppatches/patches/net/minecraft/world/ChunkCoordIntPair.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/world/ChunkCoordIntPair.java ++++ b/net/minecraft/world/ChunkCoordIntPair.java +@@ -9,7 +9,6 @@ + public final int chunkZPos; + private static final String __OBFID = "CL_00000133"; + private int cachedHashCode = 0; +- private static final String __OBFID = "CL_00000133"; + + public ChunkCoordIntPair(int par1, int par2) + { diff --git a/mcppatches/patches/net/minecraft/world/GameRules.java.patch b/mcppatches/patches/net/minecraft/world/GameRules.java.patch new file mode 100644 index 00000000..932892ff --- /dev/null +++ b/mcppatches/patches/net/minecraft/world/GameRules.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/world/GameRules.java ++++ b/net/minecraft/world/GameRules.java +@@ -9,7 +9,6 @@ + { + private TreeMap theGameRules = new TreeMap(); + private static final String __OBFID = "CL_00000136"; +- private static final String __OBFID = "CL_00000136"; + + public GameRules() + { +@@ -121,7 +120,6 @@ + private int valueInteger; + private double valueDouble; + private static final String __OBFID = "CL_00000137"; +- private static final String __OBFID = "CL_00000137"; + + public Value(String par1Str) + { diff --git a/mcppatches/patches/net/minecraft/world/SpawnerAnimals.java.patch b/mcppatches/patches/net/minecraft/world/SpawnerAnimals.java.patch new file mode 100644 index 00000000..d4c398cc --- /dev/null +++ b/mcppatches/patches/net/minecraft/world/SpawnerAnimals.java.patch @@ -0,0 +1,10 @@ +--- a/net/minecraft/world/SpawnerAnimals.java ++++ b/net/minecraft/world/SpawnerAnimals.java +@@ -27,7 +27,6 @@ + private Map mapSampleEntitiesByClass = new HashMap(); + private int lastPlayerChunkX = Integer.MAX_VALUE; + private int lastPlayerChunkZ = Integer.MAX_VALUE; +- private static final String __OBFID = "CL_00000152"; + + protected static ChunkPosition func_151350_a(World p_151350_0_, int p_151350_1_, int p_151350_2_) + {