Posted October 17, 20205 yr public class MentalOverlayHander { public static final ResourceLocation MENTALICON = new ResourceLocation("depressionmod:textures/gui/overlay.png"); private final Minecraft mc = Minecraft.getInstance(); //private final IngameGui iGUI = mc.ingameGUI; @SubscribeEvent public void onPreRenderOverlay(RenderGameOverlayEvent.Post event) { if (event.getType() == ElementType.AIR && mc.playerController.gameIsSurvivalOrAdventure()) { int scaledWidth = this.mc.getMainWindow().getScaledWidth(); int scaledHeight = this.mc.getMainWindow().getScaledHeight(); int left_height = ForgeIngameGui.left_height; int left = scaledWidth / 2 - 91; int top = scaledHeight - left_height; int level = 9; //((PlayerMentalInterface) PlayerMentalCapabilityRegistry.PLAYER_MENTAL_CAPABILITY).getMental(); RenderSystem.enableBlend(); mc.getTextureManager().bindTexture(MENTALICON); for (int i = 0; i < 10; ++i) { //iが10未満のとき繰り返す。iは繰り返しごとに1増える。 if (i < level) { //iがMPより小さいとき普通の薬を描画。 mc.ingameGUI.blit(left, top, 0, 0, 9, 9); } else if (i == level) { //iがMPと同じとき半分の薬を描画。 mc.ingameGUI.blit(left, top, 9, 0, 9, 9); } else if (i > level) { //iがMPより大きいとき黒の薬を描画。 mc.ingameGUI.blit(left, top, 18, 0, 9, 9); } left += 8; //アイコンを描画する位置を右に一つ分ずらす RenderSystem.disableBlend(); } } } } My English may be unnatural because I use a translator. sorry. When I apply the mod with the above code, it doesn't draw correctly like the image. Can anyone please tell me this solution? The position of the texture is src / main / resources / assets / depressionmod / textures / overlay.png, which is the second image.
October 17, 20205 yr Don't know if it matters but you shouldn’t be checking for Air element type, also you’ve disabled blend in the loop which I think you meant to put it outside the loop?
October 17, 20205 yr 4 hours ago, Zemelua said: src / main / resources / assets / depressionmod / textures / overlay.png 4 hours ago, Zemelua said: depressionmod:textures/gui/overlay.png You forgot the 'gui' folder. Edited October 17, 20205 yr by Danebi
October 18, 20205 yr Author sorry. It's just a typo. The texture is neatly in the gui folder. Still it is not displayed correctly. Why?
October 18, 20205 yr Author 5 hours ago, poopoodice said: Don't know if it matters but you shouldn’t be checking for Air element type, also you’ve disabled blend in the loop which I think you meant to put it outside the loop? Why shouldn't I use the Air element type?
October 18, 20205 yr Author I don't know why, but when I restarted the computer, even the white bar disappeared, so when I restarted with the element type set to ARMOR, this time it was displayed like this. The error log was not displayed.
October 18, 20205 yr Author Here is all logs. Entry: 576, minecraft:entity.sheep.ambient, net.minecraft.util.SoundEvent@5442933f Entry: 577, minecraft:entity.sheep.death, net.minecraft.util.SoundEvent@6c5273de Entry: 578, minecraft:entity.sheep.hurt, net.minecraft.util.SoundEvent@1ae342ba Entry: 579, minecraft:entity.sheep.shear, net.minecraft.util.SoundEvent@b4cc4a4 Entry: 580, minecraft:entity.sheep.step, net.minecraft.util.SoundEvent@4b577599 Entry: 581, minecraft:item.shield.block, net.minecraft.util.SoundEvent@34e423ae Entry: 582, minecraft:item.shield.break, net.minecraft.util.SoundEvent@3492511a Entry: 583, minecraft:item.shovel.flatten, net.minecraft.util.SoundEvent@5996dac8 Entry: 584, minecraft:entity.shulker.ambient, net.minecraft.util.SoundEvent@291d97de Entry: 585, minecraft:block.shulker_box.close, net.minecraft.util.SoundEvent@3c713800 Entry: 586, minecraft:block.shulker_box.open, net.minecraft.util.SoundEvent@1acdb415 Entry: 587, minecraft:entity.shulker_bullet.hit, net.minecraft.util.SoundEvent@75626d1e Entry: 588, minecraft:entity.shulker_bullet.hurt, net.minecraft.util.SoundEvent@3004b70b Entry: 589, minecraft:entity.shulker.close, net.minecraft.util.SoundEvent@5803833 Entry: 590, minecraft:entity.shulker.death, net.minecraft.util.SoundEvent@729a498a Entry: 591, minecraft:entity.shulker.hurt, net.minecraft.util.SoundEvent@1476d05a Entry: 592, minecraft:entity.shulker.hurt_closed, net.minecraft.util.SoundEvent@1df9130 Entry: 593, minecraft:entity.shulker.open, net.minecraft.util.SoundEvent@59a6098 Entry: 594, minecraft:entity.shulker.shoot, net.minecraft.util.SoundEvent@25ecbfb8 Entry: 595, minecraft:entity.shulker.teleport, net.minecraft.util.SoundEvent@73a4f5f Entry: 596, minecraft:entity.silverfish.ambient, net.minecraft.util.SoundEvent@7a110899 Entry: 597, minecraft:entity.silverfish.death, net.minecraft.util.SoundEvent@2cd939e3 Entry: 598, minecraft:entity.silverfish.hurt, net.minecraft.util.SoundEvent@6c8852bf Entry: 599, minecraft:entity.silverfish.step, net.minecraft.util.SoundEvent@391da8c6 Entry: 600, minecraft:entity.skeleton.ambient, net.minecraft.util.SoundEvent@4bba2abc Entry: 601, minecraft:entity.skeleton.death, net.minecraft.util.SoundEvent@2e491409 Entry: 602, minecraft:entity.skeleton_horse.ambient, net.minecraft.util.SoundEvent@7ab6d5 Entry: 603, minecraft:entity.skeleton_horse.death, net.minecraft.util.SoundEvent@54756584 Entry: 604, minecraft:entity.skeleton_horse.hurt, net.minecraft.util.SoundEvent@4e005a7c Entry: 605, minecraft:entity.skeleton_horse.swim, net.minecraft.util.SoundEvent@280fe6e9 Entry: 606, minecraft:entity.skeleton_horse.ambient_water, net.minecraft.util.SoundEvent@7d962123 Entry: 607, minecraft:entity.skeleton_horse.gallop_water, net.minecraft.util.SoundEvent@2b02250 Entry: 608, minecraft:entity.skeleton_horse.jump_water, net.minecraft.util.SoundEvent@4e2f5bc0 Entry: 609, minecraft:entity.skeleton_horse.step_water, net.minecraft.util.SoundEvent@19c0d442 Entry: 610, minecraft:entity.skeleton.hurt, net.minecraft.util.SoundEvent@55137160 Entry: 611, minecraft:entity.skeleton.shoot, net.minecraft.util.SoundEvent@56b27b30 Entry: 612, minecraft:entity.skeleton.step, net.minecraft.util.SoundEvent@62f7db7d Entry: 613, minecraft:entity.slime.attack, net.minecraft.util.SoundEvent@7d8a61a5 Entry: 614, minecraft:entity.slime.death, net.minecraft.util.SoundEvent@33dc9705 Entry: 615, minecraft:entity.slime.hurt, net.minecraft.util.SoundEvent@767201b5 Entry: 616, minecraft:entity.slime.jump, net.minecraft.util.SoundEvent@2a020035 Entry: 617, minecraft:entity.slime.squish, net.minecraft.util.SoundEvent@42bdb99 Entry: 618, minecraft:block.slime_block.break, net.minecraft.util.SoundEvent@539800a6 Entry: 619, minecraft:block.slime_block.fall, net.minecraft.util.SoundEvent@3581ccc9 Entry: 620, minecraft:block.slime_block.hit, net.minecraft.util.SoundEvent@f3871e4 Entry: 621, minecraft:block.slime_block.place, net.minecraft.util.SoundEvent@55959489 Entry: 622, minecraft:block.slime_block.step, net.minecraft.util.SoundEvent@461b33ad Entry: 623, minecraft:entity.magma_cube.death_small, net.minecraft.util.SoundEvent@7d475823 Entry: 624, minecraft:entity.magma_cube.hurt_small, net.minecraft.util.SoundEvent@313ca13e Entry: 625, minecraft:entity.magma_cube.squish_small, net.minecraft.util.SoundEvent@48f44a4c Entry: 626, minecraft:entity.slime.death_small, net.minecraft.util.SoundEvent@57ed8ea4 Entry: 627, minecraft:entity.slime.hurt_small, net.minecraft.util.SoundEvent@10ac423a Entry: 628, minecraft:entity.slime.jump_small, net.minecraft.util.SoundEvent@444d3440 Entry: 629, minecraft:entity.slime.squish_small, net.minecraft.util.SoundEvent@2e81b0af Entry: 630, minecraft:block.smoker.smoke, net.minecraft.util.SoundEvent@15228375 Entry: 631, minecraft:entity.snowball.throw, net.minecraft.util.SoundEvent@676dae79 Entry: 632, minecraft:block.snow.break, net.minecraft.util.SoundEvent@4aaf69e0 Entry: 633, minecraft:block.snow.fall, net.minecraft.util.SoundEvent@6988bcd2 Entry: 634, minecraft:entity.snow_golem.ambient, net.minecraft.util.SoundEvent@68b0b3bd Entry: 635, minecraft:entity.snow_golem.death, net.minecraft.util.SoundEvent@6224d6b4 Entry: 636, minecraft:entity.snow_golem.hurt, net.minecraft.util.SoundEvent@53755379 Entry: 637, minecraft:entity.snow_golem.shoot, net.minecraft.util.SoundEvent@7fb70be9 Entry: 638, minecraft:block.snow.hit, net.minecraft.util.SoundEvent@12f772f9 Entry: 639, minecraft:block.snow.place, net.minecraft.util.SoundEvent@56229765 Entry: 640, minecraft:block.snow.step, net.minecraft.util.SoundEvent@2fb5e843 Entry: 641, minecraft:entity.spider.ambient, net.minecraft.util.SoundEvent@689a461f Entry: 642, minecraft:entity.spider.death, net.minecraft.util.SoundEvent@4153814f Entry: 643, minecraft:entity.spider.hurt, net.minecraft.util.SoundEvent@388afbf Entry: 644, minecraft:entity.spider.step, net.minecraft.util.SoundEvent@3ffa87d Entry: 645, minecraft:entity.splash_potion.break, net.minecraft.util.SoundEvent@396faca3 Entry: 646, minecraft:entity.splash_potion.throw, net.minecraft.util.SoundEvent@64eb1b38 Entry: 647, minecraft:entity.squid.ambient, net.minecraft.util.SoundEvent@2258b54d Entry: 648, minecraft:entity.squid.death, net.minecraft.util.SoundEvent@5c9a4d3b Entry: 649, minecraft:entity.squid.hurt, net.minecraft.util.SoundEvent@1854f8bf Entry: 650, minecraft:entity.squid.squirt, net.minecraft.util.SoundEvent@245a0256 Entry: 651, minecraft:block.stone.break, net.minecraft.util.SoundEvent@434f394d Entry: 652, minecraft:block.stone_button.click_off, net.minecraft.util.SoundEvent@4d32578a Entry: 653, minecraft:block.stone_button.click_on, net.minecraft.util.SoundEvent@729cdf93 Entry: 654, minecraft:block.stone.fall, net.minecraft.util.SoundEvent@6a03b24 Entry: 655, minecraft:block.stone.hit, net.minecraft.util.SoundEvent@3c1fffec Entry: 656, minecraft:block.stone.place, net.minecraft.util.SoundEvent@63ce61e2 Entry: 657, minecraft:block.stone_pressure_plate.click_off, net.minecraft.util.SoundEvent@77ba5a4f Entry: 658, minecraft:block.stone_pressure_plate.click_on, net.minecraft.util.SoundEvent@70442687 Entry: 659, minecraft:block.stone.step, net.minecraft.util.SoundEvent@33e757fc Entry: 660, minecraft:entity.stray.ambient, net.minecraft.util.SoundEvent@23b6e113 Entry: 661, minecraft:entity.stray.death, net.minecraft.util.SoundEvent@6fbbf08 Entry: 662, minecraft:entity.stray.hurt, net.minecraft.util.SoundEvent@57dac14e Entry: 663, minecraft:entity.stray.step, net.minecraft.util.SoundEvent@5e8b34fe Entry: 664, minecraft:block.sweet_berry_bush.break, net.minecraft.util.SoundEvent@4a21e845 Entry: 665, minecraft:block.sweet_berry_bush.place, net.minecraft.util.SoundEvent@11790df6 Entry: 666, minecraft:item.sweet_berries.pick_from_bush, net.minecraft.util.SoundEvent@10a87e26 Entry: 667, minecraft:enchant.thorns.hit, net.minecraft.util.SoundEvent@17038409 Entry: 668, minecraft:entity.tnt.primed, net.minecraft.util.SoundEvent@52a5256c Entry: 669, minecraft:item.totem.use, net.minecraft.util.SoundEvent@bea9473 Entry: 670, minecraft:item.trident.hit, net.minecraft.util.SoundEvent@58609266 Entry: 671, minecraft:item.trident.hit_ground, net.minecraft.util.SoundEvent@534876af Entry: 672, minecraft:item.trident.return, net.minecraft.util.SoundEvent@283db7ef Entry: 673, minecraft:item.trident.riptide_1, net.minecraft.util.SoundEvent@77abe797 Entry: 674, minecraft:item.trident.riptide_2, net.minecraft.util.SoundEvent@2b04b8a6 Entry: 675, minecraft:item.trident.riptide_3, net.minecraft.util.SoundEvent@3be94e67 Entry: 676, minecraft:item.trident.throw, net.minecraft.util.SoundEvent@7e2e043a Entry: 677, minecraft:item.trident.thunder, net.minecraft.util.SoundEvent@5691c337 Entry: 678, minecraft:block.tripwire.attach, net.minecraft.util.SoundEvent@585e80cb Entry: 679, minecraft:block.tripwire.click_off, net.minecraft.util.SoundEvent@29b567d1 Entry: 680, minecraft:block.tripwire.click_on, net.minecraft.util.SoundEvent@27b4b909 Entry: 681, minecraft:block.tripwire.detach, net.minecraft.util.SoundEvent@7fe44eb3 Entry: 682, minecraft:entity.tropical_fish.ambient, net.minecraft.util.SoundEvent@5310d15c Entry: 683, minecraft:entity.tropical_fish.death, net.minecraft.util.SoundEvent@5119bf00 Entry: 684, minecraft:entity.tropical_fish.flop, net.minecraft.util.SoundEvent@53e728db Entry: 685, minecraft:entity.tropical_fish.hurt, net.minecraft.util.SoundEvent@eab65c2 Entry: 686, minecraft:entity.turtle.ambient_land, net.minecraft.util.SoundEvent@5be4df7a Entry: 687, minecraft:entity.turtle.death, net.minecraft.util.SoundEvent@47198ab9 Entry: 688, minecraft:entity.turtle.death_baby, net.minecraft.util.SoundEvent@2dd2d371 Entry: 689, minecraft:entity.turtle.egg_break, net.minecraft.util.SoundEvent@7882267c Entry: 690, minecraft:entity.turtle.egg_crack, net.minecraft.util.SoundEvent@5e02919 Entry: 691, minecraft:entity.turtle.egg_hatch, net.minecraft.util.SoundEvent@e27375e Entry: 692, minecraft:entity.turtle.hurt, net.minecraft.util.SoundEvent@35d524b0 Entry: 693, minecraft:entity.turtle.hurt_baby, net.minecraft.util.SoundEvent@5c8d45b0 Entry: 694, minecraft:entity.turtle.lay_egg, net.minecraft.util.SoundEvent@58a107d9 Entry: 695, minecraft:entity.turtle.shamble, net.minecraft.util.SoundEvent@6f0b4654 Entry: 696, minecraft:entity.turtle.shamble_baby, net.minecraft.util.SoundEvent@73e70fa1 Entry: 697, minecraft:entity.turtle.swim, net.minecraft.util.SoundEvent@457174a8 Entry: 698, minecraft:ui.button.click, net.minecraft.util.SoundEvent@153e3c10 Entry: 699, minecraft:ui.loom.select_pattern, net.minecraft.util.SoundEvent@20b2e105 Entry: 700, minecraft:ui.loom.take_result, net.minecraft.util.SoundEvent@6be368b5 Entry: 701, minecraft:ui.cartography_table.take_result, net.minecraft.util.SoundEvent@25798555 Entry: 702, minecraft:ui.stonecutter.take_result, net.minecraft.util.SoundEvent@4143e356 Entry: 703, minecraft:ui.stonecutter.select_recipe, net.minecraft.util.SoundEvent@76ce88b2 Entry: 704, minecraft:ui.toast.challenge_complete, net.minecraft.util.SoundEvent@618f01e Entry: 705, minecraft:ui.toast.in, net.minecraft.util.SoundEvent@6fa29ea5 Entry: 706, minecraft:ui.toast.out, net.minecraft.util.SoundEvent@31259954 Entry: 707, minecraft:entity.vex.ambient, net.minecraft.util.SoundEvent@332c1cda Entry: 708, minecraft:entity.vex.charge, net.minecraft.util.SoundEvent@72f582a1 Entry: 709, minecraft:entity.vex.death, net.minecraft.util.SoundEvent@9d96dec Entry: 710, minecraft:entity.vex.hurt, net.minecraft.util.SoundEvent@14abbaba Entry: 711, minecraft:entity.villager.ambient, net.minecraft.util.SoundEvent@4732ae39 Entry: 712, minecraft:entity.villager.celebrate, net.minecraft.util.SoundEvent@190cdcf4 Entry: 713, minecraft:entity.villager.death, net.minecraft.util.SoundEvent@5b786434 Entry: 714, minecraft:entity.villager.hurt, net.minecraft.util.SoundEvent@12cf6b8b Entry: 715, minecraft:entity.villager.no, net.minecraft.util.SoundEvent@40de4c8d Entry: 716, minecraft:entity.villager.trade, net.minecraft.util.SoundEvent@3f4ad31e Entry: 717, minecraft:entity.villager.yes, net.minecraft.util.SoundEvent@270b4907 Entry: 718, minecraft:entity.villager.work_armorer, net.minecraft.util.SoundEvent@4ef1ed5e Entry: 719, minecraft:entity.villager.work_butcher, net.minecraft.util.SoundEvent@7cf97a29 Entry: 720, minecraft:entity.villager.work_cartographer, net.minecraft.util.SoundEvent@1542948b Entry: 721, minecraft:entity.villager.work_cleric, net.minecraft.util.SoundEvent@687cb455 Entry: 722, minecraft:entity.villager.work_farmer, net.minecraft.util.SoundEvent@29262f19 Entry: 723, minecraft:entity.villager.work_fisherman, net.minecraft.util.SoundEvent@1e393026 Entry: 724, minecraft:entity.villager.work_fletcher, net.minecraft.util.SoundEvent@1f5e19a6 Entry: 725, minecraft:entity.villager.work_leatherworker, net.minecraft.util.SoundEvent@128dc804 Entry: 726, minecraft:entity.villager.work_librarian, net.minecraft.util.SoundEvent@acb63ab Entry: 727, minecraft:entity.villager.work_mason, net.minecraft.util.SoundEvent@5da4cad4 Entry: 728, minecraft:entity.villager.work_shepherd, net.minecraft.util.SoundEvent@32587bef Entry: 729, minecraft:entity.villager.work_toolsmith, net.minecraft.util.SoundEvent@4e695848 Entry: 730, minecraft:entity.villager.work_weaponsmith, net.minecraft.util.SoundEvent@1f6eac15 Entry: 731, minecraft:entity.vindicator.ambient, net.minecraft.util.SoundEvent@64e73746 Entry: 732, minecraft:entity.vindicator.celebrate, net.minecraft.util.SoundEvent@1591bf36 Entry: 733, minecraft:entity.vindicator.death, net.minecraft.util.SoundEvent@11be1ed4 Entry: 734, minecraft:entity.vindicator.hurt, net.minecraft.util.SoundEvent@7bda16f2 Entry: 735, minecraft:block.lily_pad.place, net.minecraft.util.SoundEvent@26da43c8 Entry: 736, minecraft:entity.wandering_trader.ambient, net.minecraft.util.SoundEvent@3eaa202a Entry: 737, minecraft:entity.wandering_trader.death, net.minecraft.util.SoundEvent@5f03d195 Entry: 738, minecraft:entity.wandering_trader.disappeared, net.minecraft.util.SoundEvent@74c52101 Entry: 739, minecraft:entity.wandering_trader.drink_milk, net.minecraft.util.SoundEvent@f5e852 Entry: 740, minecraft:entity.wandering_trader.drink_potion, net.minecraft.util.SoundEvent@6f312316 Entry: 741, minecraft:entity.wandering_trader.hurt, net.minecraft.util.SoundEvent@2e7fc81c Entry: 742, minecraft:entity.wandering_trader.no, net.minecraft.util.SoundEvent@73ef29fb Entry: 743, minecraft:entity.wandering_trader.reappeared, net.minecraft.util.SoundEvent@5c77e8ac Entry: 744, minecraft:entity.wandering_trader.trade, net.minecraft.util.SoundEvent@3a3859a7 Entry: 745, minecraft:entity.wandering_trader.yes, net.minecraft.util.SoundEvent@6ad749d4 Entry: 746, minecraft:block.water.ambient, net.minecraft.util.SoundEvent@607d0584 Entry: 747, minecraft:weather.rain, net.minecraft.util.SoundEvent@3aca3af Entry: 748, minecraft:weather.rain.above, net.minecraft.util.SoundEvent@7ba1371c Entry: 749, minecraft:entity.witch.ambient, net.minecraft.util.SoundEvent@2b685855 Entry: 750, minecraft:entity.witch.celebrate, net.minecraft.util.SoundEvent@23313999 Entry: 751, minecraft:entity.witch.death, net.minecraft.util.SoundEvent@45e6478b Entry: 752, minecraft:entity.witch.drink, net.minecraft.util.SoundEvent@370d91fc Entry: 753, minecraft:entity.witch.hurt, net.minecraft.util.SoundEvent@5e4ecdb8 Entry: 754, minecraft:entity.witch.throw, net.minecraft.util.SoundEvent@7499da19 Entry: 755, minecraft:entity.wither.ambient, net.minecraft.util.SoundEvent@3b4011e Entry: 756, minecraft:entity.wither.break_block, net.minecraft.util.SoundEvent@586df2e5 Entry: 757, minecraft:entity.wither.death, net.minecraft.util.SoundEvent@70e6d75d Entry: 758, minecraft:entity.wither.hurt, net.minecraft.util.SoundEvent@4a95924a Entry: 759, minecraft:entity.wither.shoot, net.minecraft.util.SoundEvent@698ac6f7 Entry: 760, minecraft:entity.wither_skeleton.ambient, net.minecraft.util.SoundEvent@5e47ebf9 Entry: 761, minecraft:entity.wither_skeleton.death, net.minecraft.util.SoundEvent@18dd8353 Entry: 762, minecraft:entity.wither_skeleton.hurt, net.minecraft.util.SoundEvent@7ebc55c0 Entry: 763, minecraft:entity.wither_skeleton.step, net.minecraft.util.SoundEvent@413e899e Entry: 764, minecraft:entity.wither.spawn, net.minecraft.util.SoundEvent@2047aa63 Entry: 765, minecraft:entity.wolf.ambient, net.minecraft.util.SoundEvent@54f46223 Entry: 766, minecraft:entity.wolf.death, net.minecraft.util.SoundEvent@48fa3f28 Entry: 767, minecraft:entity.wolf.growl, net.minecraft.util.SoundEvent@7dbd2dd0 Entry: 768, minecraft:entity.wolf.howl, net.minecraft.util.SoundEvent@603494b6 Entry: 769, minecraft:entity.wolf.hurt, net.minecraft.util.SoundEvent@17a607e9 Entry: 770, minecraft:entity.wolf.pant, net.minecraft.util.SoundEvent@ebc794a Entry: 771, minecraft:entity.wolf.shake, net.minecraft.util.SoundEvent@1a7b06e0 Entry: 772, minecraft:entity.wolf.step, net.minecraft.util.SoundEvent@5e2eb03d Entry: 773, minecraft:entity.wolf.whine, net.minecraft.util.SoundEvent@79907d5e Entry: 774, minecraft:block.wooden_door.close, net.minecraft.util.SoundEvent@140b3d0f Entry: 775, minecraft:block.wooden_door.open, net.minecraft.util.SoundEvent@56857568 Entry: 776, minecraft:block.wooden_trapdoor.close, net.minecraft.util.SoundEvent@7d8198dd Entry: 777, minecraft:block.wooden_trapdoor.open, net.minecraft.util.SoundEvent@78160be Entry: 778, minecraft:block.wood.break, net.minecraft.util.SoundEvent@4a2fc604 Entry: 779, minecraft:block.wooden_button.click_off, net.minecraft.util.SoundEvent@37fcd41c Entry: 780, minecraft:block.wooden_button.click_on, net.minecraft.util.SoundEvent@46caf54e Entry: 781, minecraft:block.wood.fall, net.minecraft.util.SoundEvent@4a42f9b9 Entry: 782, minecraft:block.wood.hit, net.minecraft.util.SoundEvent@7e691913 Entry: 783, minecraft:block.wood.place, net.minecraft.util.SoundEvent@2f646ef6 Entry: 784, minecraft:block.wooden_pressure_plate.click_off, net.minecraft.util.SoundEvent@3e959ed1 Entry: 785, minecraft:block.wooden_pressure_plate.click_on, net.minecraft.util.SoundEvent@63c7278b Entry: 786, minecraft:block.wood.step, net.minecraft.util.SoundEvent@55d01b61 Entry: 787, minecraft:entity.zombie.ambient, net.minecraft.util.SoundEvent@594fdcf3 Entry: 788, minecraft:entity.zombie.attack_wooden_door, net.minecraft.util.SoundEvent@4bbeb21d Entry: 789, minecraft:entity.zombie.attack_iron_door, net.minecraft.util.SoundEvent@119f3f9e Entry: 790, minecraft:entity.zombie.break_wooden_door, net.minecraft.util.SoundEvent@444135df Entry: 791, minecraft:entity.zombie.converted_to_drowned, net.minecraft.util.SoundEvent@634ed1e0 Entry: 792, minecraft:entity.zombie.death, net.minecraft.util.SoundEvent@5ddeb9ce Entry: 793, minecraft:entity.zombie.destroy_egg, net.minecraft.util.SoundEvent@35d51e24 Entry: 794, minecraft:entity.zombie_horse.ambient, net.minecraft.util.SoundEvent@78773a8c Entry: 795, minecraft:entity.zombie_horse.death, net.minecraft.util.SoundEvent@6d2325b3 Entry: 796, minecraft:entity.zombie_horse.hurt, net.minecraft.util.SoundEvent@459be110 Entry: 797, minecraft:entity.zombie.hurt, net.minecraft.util.SoundEvent@5822f3b9 Entry: 798, minecraft:entity.zombie.infect, net.minecraft.util.SoundEvent@1940116b Entry: 799, minecraft:entity.zombie_pigman.ambient, net.minecraft.util.SoundEvent@6dbaa14d Entry: 800, minecraft:entity.zombie_pigman.angry, net.minecraft.util.SoundEvent@77b34e8b Entry: 801, minecraft:entity.zombie_pigman.death, net.minecraft.util.SoundEvent@38c3c4ff Entry: 802, minecraft:entity.zombie_pigman.hurt, net.minecraft.util.SoundEvent@211151c5 Entry: 803, minecraft:entity.zombie.step, net.minecraft.util.SoundEvent@19993c63 Entry: 804, minecraft:entity.zombie_villager.ambient, net.minecraft.util.SoundEvent@74b3fecd Entry: 805, minecraft:entity.zombie_villager.converted, net.minecraft.util.SoundEvent@52f12898 Entry: 806, minecraft:entity.zombie_villager.cure, net.minecraft.util.SoundEvent@7945d47a Entry: 807, minecraft:entity.zombie_villager.death, net.minecraft.util.SoundEvent@296f9515 Entry: 808, minecraft:entity.zombie_villager.hurt, net.minecraft.util.SoundEvent@42c15363 Entry: 809, minecraft:entity.zombie_villager.step, net.minecraft.util.SoundEvent@192f064b [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:potion Entry: 0, minecraft:empty, net.minecraft.potion.Potion@4b25e361 Entry: 1, minecraft:water, net.minecraft.potion.Potion@55444b55 Entry: 2, minecraft:mundane, net.minecraft.potion.Potion@b06a0dd Entry: 3, minecraft:thick, net.minecraft.potion.Potion@29b6d905 Entry: 4, minecraft:awkward, net.minecraft.potion.Potion@4dec09b9 Entry: 5, minecraft:night_vision, net.minecraft.potion.Potion@3a05fdb2 Entry: 6, minecraft:long_night_vision, net.minecraft.potion.Potion@4bba267 Entry: 7, minecraft:invisibility, net.minecraft.potion.Potion@1b5a2d04 Entry: 8, minecraft:long_invisibility, net.minecraft.potion.Potion@36d65e17 Entry: 9, minecraft:leaping, net.minecraft.potion.Potion@23abcd12 Entry: 10, minecraft:long_leaping, net.minecraft.potion.Potion@7adafb9a Entry: 11, minecraft:strong_leaping, net.minecraft.potion.Potion@30a2dbc8 Entry: 12, minecraft:fire_resistance, net.minecraft.potion.Potion@34800d2d Entry: 13, minecraft:long_fire_resistance, net.minecraft.potion.Potion@493e85f2 Entry: 14, minecraft:swiftness, net.minecraft.potion.Potion@6415b164 Entry: 15, minecraft:long_swiftness, net.minecraft.potion.Potion@42cf4ab5 Entry: 16, minecraft:strong_swiftness, net.minecraft.potion.Potion@7692cea4 Entry: 17, minecraft:slowness, net.minecraft.potion.Potion@4bbed491 Entry: 18, minecraft:long_slowness, net.minecraft.potion.Potion@269c213 Entry: 19, minecraft:strong_slowness, net.minecraft.potion.Potion@3acbaa09 Entry: 20, minecraft:turtle_master, net.minecraft.potion.Potion@5a4cb41a Entry: 21, minecraft:long_turtle_master, net.minecraft.potion.Potion@676be99e Entry: 22, minecraft:strong_turtle_master, net.minecraft.potion.Potion@2bded63a Entry: 23, minecraft:water_breathing, net.minecraft.potion.Potion@4ca2aaaa Entry: 24, minecraft:long_water_breathing, net.minecraft.potion.Potion@73f13b40 Entry: 25, minecraft:healing, net.minecraft.potion.Potion@4b6e0bb9 Entry: 26, minecraft:strong_healing, net.minecraft.potion.Potion@16dc7be8 Entry: 27, minecraft:harming, net.minecraft.potion.Potion@4ff27463 Entry: 28, minecraft:strong_harming, net.minecraft.potion.Potion@35237de6 Entry: 29, minecraft:poison, net.minecraft.potion.Potion@eab8b38 Entry: 30, minecraft:long_poison, net.minecraft.potion.Potion@7b5da23e Entry: 31, minecraft:strong_poison, net.minecraft.potion.Potion@2750905a Entry: 32, minecraft:regeneration, net.minecraft.potion.Potion@9b2151b Entry: 33, minecraft:long_regeneration, net.minecraft.potion.Potion@5b92ad5e Entry: 34, minecraft:strong_regeneration, net.minecraft.potion.Potion@4d48a840 Entry: 35, minecraft:strength, net.minecraft.potion.Potion@6e3933f3 Entry: 36, minecraft:long_strength, net.minecraft.potion.Potion@77baf9e2 Entry: 37, minecraft:strong_strength, net.minecraft.potion.Potion@390c5216 Entry: 38, minecraft:weakness, net.minecraft.potion.Potion@310ef7df Entry: 39, minecraft:long_weakness, net.minecraft.potion.Potion@168ffca6 Entry: 40, minecraft:luck, net.minecraft.potion.Potion@365a627c Entry: 41, minecraft:slow_falling, net.minecraft.potion.Potion@6d9d0a43 Entry: 42, minecraft:long_slow_falling, net.minecraft.potion.Potion@2b6ba820 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:enchantment Entry: 0, minecraft:protection, net.minecraft.enchantment.ProtectionEnchantment@6cc5fca4 Entry: 1, minecraft:fire_protection, net.minecraft.enchantment.ProtectionEnchantment@167bdca6 Entry: 2, minecraft:feather_falling, net.minecraft.enchantment.ProtectionEnchantment@10842c72 Entry: 3, minecraft:blast_protection, net.minecraft.enchantment.ProtectionEnchantment@3edbfb5d Entry: 4, minecraft:projectile_protection, net.minecraft.enchantment.ProtectionEnchantment@7db800fe Entry: 5, minecraft:respiration, net.minecraft.enchantment.RespirationEnchantment@4b82060 Entry: 6, minecraft:aqua_affinity, net.minecraft.enchantment.AquaAffinityEnchantment@585a611c Entry: 7, minecraft:thorns, net.minecraft.enchantment.ThornsEnchantment@5be411e2 Entry: 8, minecraft:depth_strider, net.minecraft.enchantment.DepthStriderEnchantment@74d4f1a1 Entry: 9, minecraft:frost_walker, net.minecraft.enchantment.FrostWalkerEnchantment@455f5271 Entry: 10, minecraft:binding_curse, net.minecraft.enchantment.BindingCurseEnchantment@a0d6ef Entry: 11, minecraft:sharpness, net.minecraft.enchantment.DamageEnchantment@78a11a96 Entry: 12, minecraft:smite, net.minecraft.enchantment.DamageEnchantment@786da5ac Entry: 13, minecraft:bane_of_arthropods, net.minecraft.enchantment.DamageEnchantment@7e7c03e0 Entry: 14, minecraft:knockback, net.minecraft.enchantment.KnockbackEnchantment@595a8ed3 Entry: 15, minecraft:fire_aspect, net.minecraft.enchantment.FireAspectEnchantment@52f279e3 Entry: 16, minecraft:looting, net.minecraft.enchantment.LootBonusEnchantment@cf954e3 Entry: 17, minecraft:sweeping, net.minecraft.enchantment.SweepingEnchantment@793a9def Entry: 18, minecraft:efficiency, net.minecraft.enchantment.EfficiencyEnchantment@7dc8b996 Entry: 19, minecraft:silk_touch, net.minecraft.enchantment.SilkTouchEnchantment@5ecb1358 Entry: 20, minecraft:unbreaking, net.minecraft.enchantment.UnbreakingEnchantment@58fb0f71 Entry: 21, minecraft:fortune, net.minecraft.enchantment.LootBonusEnchantment@324b53c7 Entry: 22, minecraft:power, net.minecraft.enchantment.PowerEnchantment@6cf4cf4e Entry: 23, minecraft:punch, net.minecraft.enchantment.PunchEnchantment@4497604 Entry: 24, minecraft:flame, net.minecraft.enchantment.FlameEnchantment@1c7b1651 Entry: 25, minecraft:infinity, net.minecraft.enchantment.InfinityEnchantment@19da0882 Entry: 26, minecraft:luck_of_the_sea, net.minecraft.enchantment.LootBonusEnchantment@36215acb Entry: 27, minecraft:lure, net.minecraft.enchantment.LureEnchantment@411b445d Entry: 28, minecraft:loyalty, net.minecraft.enchantment.LoyaltyEnchantment@34073e34 Entry: 29, minecraft:impaling, net.minecraft.enchantment.ImpalingEnchantment@3d455052 Entry: 30, minecraft:riptide, net.minecraft.enchantment.RiptideEnchantment@5e4b4428 Entry: 31, minecraft:channeling, net.minecraft.enchantment.ChannelingEnchantment@51ef95e2 Entry: 32, minecraft:multishot, net.minecraft.enchantment.MultishotEnchantment@75460e6 Entry: 33, minecraft:quick_charge, net.minecraft.enchantment.QuickChargeEnchantment@10e9face Entry: 34, minecraft:piercing, net.minecraft.enchantment.PiercingEnchantment@6782ca40 Entry: 35, minecraft:mending, net.minecraft.enchantment.MendingEnchantment@243a4876 Entry: 36, minecraft:vanishing_curse, net.minecraft.enchantment.VanishingCurseEnchantment@388f3757 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:entity_type Entry: 0, minecraft:area_effect_cloud, net.minecraft.entity.EntityType@48911cc Entry: 1, minecraft:armor_stand, net.minecraft.entity.EntityType@619bfb95 Entry: 2, minecraft:arrow, net.minecraft.entity.EntityType@4cfafdd5 Entry: 3, minecraft:bat, net.minecraft.entity.EntityType@3329b80a Entry: 4, minecraft:bee, net.minecraft.entity.EntityType@1123fe7 Entry: 5, minecraft:blaze, net.minecraft.entity.EntityType@7f3603d2 Entry: 6, minecraft:boat, net.minecraft.entity.EntityType@18634950 Entry: 7, minecraft:cat, net.minecraft.entity.EntityType@3a98cf4d Entry: 8, minecraft:cave_spider, net.minecraft.entity.EntityType@6c1dcafd Entry: 9, minecraft:chicken, net.minecraft.entity.EntityType@3de7094d Entry: 10, minecraft:cod, net.minecraft.entity.EntityType@2b8d7d73 Entry: 11, minecraft:cow, net.minecraft.entity.EntityType@5796b426 Entry: 12, minecraft:creeper, net.minecraft.entity.EntityType@6dc571c4 Entry: 13, minecraft:donkey, net.minecraft.entity.EntityType@77ac074d Entry: 14, minecraft:dolphin, net.minecraft.entity.EntityType@6168c3e4 Entry: 15, minecraft:dragon_fireball, net.minecraft.entity.EntityType@239d3a44 Entry: 16, minecraft:drowned, net.minecraft.entity.EntityType@7d1487ad Entry: 17, minecraft:elder_guardian, net.minecraft.entity.EntityType@1cc5d8c9 Entry: 18, minecraft:end_crystal, net.minecraft.entity.EntityType@693ed8fb Entry: 19, minecraft:ender_dragon, net.minecraft.entity.EntityType@150317a Entry: 20, minecraft:enderman, net.minecraft.entity.EntityType@165c32de Entry: 21, minecraft:endermite, net.minecraft.entity.EntityType@6a3689f2 Entry: 22, minecraft:evoker_fangs, net.minecraft.entity.EntityType@3525d165 Entry: 23, minecraft:evoker, net.minecraft.entity.EntityType@2c0c7c42 Entry: 24, minecraft:experience_orb, net.minecraft.entity.EntityType@373fea3a Entry: 25, minecraft:eye_of_ender, net.minecraft.entity.EntityType@67cdf3d9 Entry: 26, minecraft:falling_block, net.minecraft.entity.EntityType@74c5d9c3 Entry: 27, minecraft:firework_rocket, net.minecraft.entity.EntityType@3c09b19d Entry: 28, minecraft:fox, net.minecraft.entity.EntityType@13a67480 Entry: 29, minecraft:ghast, net.minecraft.entity.EntityType@75ac4e04 Entry: 30, minecraft:giant, net.minecraft.entity.EntityType@26f5b73a Entry: 31, minecraft:guardian, net.minecraft.entity.EntityType@c6b03bd Entry: 32, minecraft:horse, net.minecraft.entity.EntityType@590565e9 Entry: 33, minecraft:husk, net.minecraft.entity.EntityType@6083ac43 Entry: 34, minecraft:illusioner, net.minecraft.entity.EntityType@6153fd04 Entry: 35, minecraft:item, net.minecraft.entity.EntityType@1a2c44d0 Entry: 36, minecraft:item_frame, net.minecraft.entity.EntityType@6bd861d7 Entry: 37, minecraft:fireball, net.minecraft.entity.EntityType@19e4952f Entry: 38, minecraft:leash_knot, net.minecraft.entity.EntityType@13b7bfc5 Entry: 39, minecraft:llama, net.minecraft.entity.EntityType@2f43ed4a Entry: 40, minecraft:llama_spit, net.minecraft.entity.EntityType@296904b2 Entry: 41, minecraft:magma_cube, net.minecraft.entity.EntityType@6f0cb4f3 Entry: 42, minecraft:minecart, net.minecraft.entity.EntityType@3de285b9 Entry: 43, minecraft:chest_minecart, net.minecraft.entity.EntityType@2ef4aeb9 Entry: 44, minecraft:command_block_minecart, net.minecraft.entity.EntityType@6fc049eb Entry: 45, minecraft:furnace_minecart, net.minecraft.entity.EntityType@358c6200 Entry: 46, minecraft:hopper_minecart, net.minecraft.entity.EntityType@7f5ced00 Entry: 47, minecraft:spawner_minecart, net.minecraft.entity.EntityType@7d14e38f Entry: 48, minecraft:tnt_minecart, net.minecraft.entity.EntityType@1ee85686 Entry: 49, minecraft:mule, net.minecraft.entity.EntityType@51783b1a Entry: 50, minecraft:mooshroom, net.minecraft.entity.EntityType@124c16a Entry: 51, minecraft:ocelot, net.minecraft.entity.EntityType@70d0e1b9 Entry: 52, minecraft:painting, net.minecraft.entity.EntityType@3cf2fb0b Entry: 53, minecraft:panda, net.minecraft.entity.EntityType@3b9e2997 Entry: 54, minecraft:parrot, net.minecraft.entity.EntityType@40cccb87 Entry: 55, minecraft:pig, net.minecraft.entity.EntityType@24342da5 Entry: 56, minecraft:pufferfish, net.minecraft.entity.EntityType@3f63ab25 Entry: 57, minecraft:zombie_pigman, net.minecraft.entity.EntityType@19de52f7 Entry: 58, minecraft:polar_bear, net.minecraft.entity.EntityType@674ce0c3 Entry: 59, minecraft:tnt, net.minecraft.entity.EntityType@59aa6780 Entry: 60, minecraft:rabbit, net.minecraft.entity.EntityType@1badf493 Entry: 61, minecraft:salmon, net.minecraft.entity.EntityType@503ce6fb Entry: 62, minecraft:sheep, net.minecraft.entity.EntityType@7a260e1e Entry: 63, minecraft:shulker, net.minecraft.entity.EntityType@317ad87e Entry: 64, minecraft:shulker_bullet, net.minecraft.entity.EntityType@2626962d Entry: 65, minecraft:silverfish, net.minecraft.entity.EntityType@42c8511c Entry: 66, minecraft:skeleton, net.minecraft.entity.EntityType@21fbb224 Entry: 67, minecraft:skeleton_horse, net.minecraft.entity.EntityType@5573016e Entry: 68, minecraft:slime, net.minecraft.entity.EntityType@6a646a2a Entry: 69, minecraft:small_fireball, net.minecraft.entity.EntityType@c207bfe Entry: 70, minecraft:snow_golem, net.minecraft.entity.EntityType@78fa64b7 Entry: 71, minecraft:snowball, net.minecraft.entity.EntityType@1a08a0a0 Entry: 72, minecraft:spectral_arrow, net.minecraft.entity.EntityType@2feba539 Entry: 73, minecraft:spider, net.minecraft.entity.EntityType@7c418a3b Entry: 74, minecraft:squid, net.minecraft.entity.EntityType@306ec684 Entry: 75, minecraft:stray, net.minecraft.entity.EntityType@3892ad03 Entry: 76, minecraft:trader_llama, net.minecraft.entity.EntityType@562b8cdf Entry: 77, minecraft:tropical_fish, net.minecraft.entity.EntityType@3a0c58d Entry: 78, minecraft:turtle, net.minecraft.entity.EntityType@4e48c8f6 Entry: 79, minecraft:egg, net.minecraft.entity.EntityType@3d6a7e5b Entry: 80, minecraft:ender_pearl, net.minecraft.entity.EntityType@8814268 Entry: 81, minecraft:experience_bottle, net.minecraft.entity.EntityType@62dde7fc Entry: 82, minecraft:potion, net.minecraft.entity.EntityType@38f514e7 Entry: 83, minecraft:trident, net.minecraft.entity.EntityType@2e7b369 Entry: 84, minecraft:vex, net.minecraft.entity.EntityType@43eef625 Entry: 85, minecraft:villager, net.minecraft.entity.EntityType@2d6713b Entry: 86, minecraft:iron_golem, net.minecraft.entity.EntityType@7085518 Entry: 87, minecraft:vindicator, net.minecraft.entity.EntityType@1b51191b Entry: 88, minecraft:pillager, net.minecraft.entity.EntityType@59875d95 Entry: 89, minecraft:wandering_trader, net.minecraft.entity.EntityType@32c3dedc Entry: 90, minecraft:witch, net.minecraft.entity.EntityType@758a20b9 Entry: 91, minecraft:wither, net.minecraft.entity.EntityType@43bb457f Entry: 92, minecraft:wither_skeleton, net.minecraft.entity.EntityType@7ffa605d Entry: 93, minecraft:wither_skull, net.minecraft.entity.EntityType@350f736b Entry: 94, minecraft:wolf, net.minecraft.entity.EntityType@24a68de0 Entry: 95, minecraft:zombie, net.minecraft.entity.EntityType@784924db Entry: 96, minecraft:zombie_horse, net.minecraft.entity.EntityType@2bb38a3 Entry: 97, minecraft:zombie_villager, net.minecraft.entity.EntityType@1f429355 Entry: 98, minecraft:phantom, net.minecraft.entity.EntityType@5c3c70fe Entry: 99, minecraft:ravager, net.minecraft.entity.EntityType@26e44d60 Entry: 100, minecraft:lightning_bolt, net.minecraft.entity.EntityType@4edee969 Entry: 101, minecraft:player, net.minecraft.entity.EntityType@46706b2d Entry: 102, minecraft:fishing_bobber, net.minecraft.entity.EntityType@427ba1ce [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:block_entity_type Entry: 0, minecraft:furnace, net.minecraft.tileentity.TileEntityType@1d0c6601 Entry: 1, minecraft:chest, net.minecraft.tileentity.TileEntityType@5ab79f13 Entry: 2, minecraft:trapped_chest, net.minecraft.tileentity.TileEntityType@34694089 Entry: 3, minecraft:ender_chest, net.minecraft.tileentity.TileEntityType@69e205cb Entry: 4, minecraft:jukebox, net.minecraft.tileentity.TileEntityType@39b332b6 Entry: 5, minecraft:dispenser, net.minecraft.tileentity.TileEntityType@5115286b Entry: 6, minecraft:dropper, net.minecraft.tileentity.TileEntityType@5183794c Entry: 7, minecraft:sign, net.minecraft.tileentity.TileEntityType@f11d61f Entry: 8, minecraft:mob_spawner, net.minecraft.tileentity.TileEntityType@22c0271e Entry: 9, minecraft:piston, net.minecraft.tileentity.TileEntityType@5769b7a6 Entry: 10, minecraft:brewing_stand, net.minecraft.tileentity.TileEntityType@7f170791 Entry: 11, minecraft:enchanting_table, net.minecraft.tileentity.TileEntityType@33b846e3 Entry: 12, minecraft:end_portal, net.minecraft.tileentity.TileEntityType@3a625ff Entry: 13, minecraft:beacon, net.minecraft.tileentity.TileEntityType@2121bacc Entry: 14, minecraft:skull, net.minecraft.tileentity.TileEntityType@5d533824 Entry: 15, minecraft:daylight_detector, net.minecraft.tileentity.TileEntityType@53e0c997 Entry: 16, minecraft:hopper, net.minecraft.tileentity.TileEntityType@257cca72 Entry: 17, minecraft:comparator, net.minecraft.tileentity.TileEntityType@2c117f10 Entry: 18, minecraft:banner, net.minecraft.tileentity.TileEntityType@265047a3 Entry: 19, minecraft:structure_block, net.minecraft.tileentity.TileEntityType@7f74e3cb Entry: 20, minecraft:end_gateway, net.minecraft.tileentity.TileEntityType@62f9c218 Entry: 21, minecraft:command_block, net.minecraft.tileentity.TileEntityType@7572aa19 Entry: 22, minecraft:shulker_box, net.minecraft.tileentity.TileEntityType@42512177 Entry: 23, minecraft:bed, net.minecraft.tileentity.TileEntityType@bf3cea3 Entry: 24, minecraft:conduit, net.minecraft.tileentity.TileEntityType@78fd037f Entry: 25, minecraft:barrel, net.minecraft.tileentity.TileEntityType@3499eab6 Entry: 26, minecraft:smoker, net.minecraft.tileentity.TileEntityType@6ef01c22 Entry: 27, minecraft:blast_furnace, net.minecraft.tileentity.TileEntityType@1f5b10a9 Entry: 28, minecraft:lectern, net.minecraft.tileentity.TileEntityType@4dadf805 Entry: 29, minecraft:bell, net.minecraft.tileentity.TileEntityType@570c9201 Entry: 30, minecraft:jigsaw, net.minecraft.tileentity.TileEntityType@782ca916 Entry: 31, minecraft:campfire, net.minecraft.tileentity.TileEntityType@275d73bf Entry: 32, minecraft:beehive, net.minecraft.tileentity.TileEntityType@658b5e67 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:particle_type Entry: 0, minecraft:ambient_entity_effect, net.minecraft.particles.BasicParticleType@bbc8920 Entry: 1, minecraft:angry_villager, net.minecraft.particles.BasicParticleType@4d5b9274 Entry: 2, minecraft:barrier, net.minecraft.particles.BasicParticleType@38dd05f2 Entry: 3, minecraft:block, net.minecraft.particles.ParticleType@3fd97b01 Entry: 4, minecraft:bubble, net.minecraft.particles.BasicParticleType@7f3749ae Entry: 5, minecraft:cloud, net.minecraft.particles.BasicParticleType@433160dc Entry: 6, minecraft:crit, net.minecraft.particles.BasicParticleType@4bac0b53 Entry: 7, minecraft:damage_indicator, net.minecraft.particles.BasicParticleType@3fd96054 Entry: 8, minecraft:dragon_breath, net.minecraft.particles.BasicParticleType@7a663438 Entry: 9, minecraft:dripping_lava, net.minecraft.particles.BasicParticleType@32198c28 Entry: 10, minecraft:falling_lava, net.minecraft.particles.BasicParticleType@1944efab Entry: 11, minecraft:landing_lava, net.minecraft.particles.BasicParticleType@6debe717 Entry: 12, minecraft:dripping_water, net.minecraft.particles.BasicParticleType@2667c966 Entry: 13, minecraft:falling_water, net.minecraft.particles.BasicParticleType@58e1694e Entry: 14, minecraft:dust, net.minecraft.particles.ParticleType@d1d2277 Entry: 15, minecraft:effect, net.minecraft.particles.BasicParticleType@2e969c59 Entry: 16, minecraft:elder_guardian, net.minecraft.particles.BasicParticleType@39429fb8 Entry: 17, minecraft:enchanted_hit, net.minecraft.particles.BasicParticleType@c959aa7 Entry: 18, minecraft:enchant, net.minecraft.particles.BasicParticleType@687f0fd8 Entry: 19, minecraft:end_rod, net.minecraft.particles.BasicParticleType@721132da Entry: 20, minecraft:entity_effect, net.minecraft.particles.BasicParticleType@5f03cc7f Entry: 21, minecraft:explosion_emitter, net.minecraft.particles.BasicParticleType@7fe3259a Entry: 22, minecraft:explosion, net.minecraft.particles.BasicParticleType@6ff2f471 Entry: 23, minecraft:falling_dust, net.minecraft.particles.ParticleType@140e8cb7 Entry: 24, minecraft:firework, net.minecraft.particles.BasicParticleType@552fca7d Entry: 25, minecraft:fishing, net.minecraft.particles.BasicParticleType@3306eab7 Entry: 26, minecraft:flame, net.minecraft.particles.BasicParticleType@4b2fc1da Entry: 27, minecraft:flash, net.minecraft.particles.BasicParticleType@2ba4973c Entry: 28, minecraft:happy_villager, net.minecraft.particles.BasicParticleType@73dc17 Entry: 29, minecraft:composter, net.minecraft.particles.BasicParticleType@424ddfc Entry: 30, minecraft:heart, net.minecraft.particles.BasicParticleType@3130edb3 Entry: 31, minecraft:instant_effect, net.minecraft.particles.BasicParticleType@3ea281de Entry: 32, minecraft:item, net.minecraft.particles.ParticleType@9382e99 Entry: 33, minecraft:item_slime, net.minecraft.particles.BasicParticleType@308f7708 Entry: 34, minecraft:item_snowball, net.minecraft.particles.BasicParticleType@3eed3a39 Entry: 35, minecraft:large_smoke, net.minecraft.particles.BasicParticleType@1e7b1b9 Entry: 36, minecraft:lava, net.minecraft.particles.BasicParticleType@49630bfa Entry: 37, minecraft:mycelium, net.minecraft.particles.BasicParticleType@29f02e9 Entry: 38, minecraft:note, net.minecraft.particles.BasicParticleType@5574dc71 Entry: 39, minecraft:poof, net.minecraft.particles.BasicParticleType@69a2c51f Entry: 40, minecraft:portal, net.minecraft.particles.BasicParticleType@38cf3f0a Entry: 41, minecraft:rain, net.minecraft.particles.BasicParticleType@423deab0 Entry: 42, minecraft:smoke, net.minecraft.particles.BasicParticleType@315931d2 Entry: 43, minecraft:sneeze, net.minecraft.particles.BasicParticleType@4e2c80db Entry: 44, minecraft:spit, net.minecraft.particles.BasicParticleType@fdac17b Entry: 45, minecraft:squid_ink, net.minecraft.particles.BasicParticleType@229fc25a Entry: 46, minecraft:sweep_attack, net.minecraft.particles.BasicParticleType@5ab0b07a Entry: 47, minecraft:totem_of_undying, net.minecraft.particles.BasicParticleType@7030d9af Entry: 48, minecraft:underwater, net.minecraft.particles.BasicParticleType@29381fcb Entry: 49, minecraft:splash, net.minecraft.particles.BasicParticleType@756995a4 Entry: 50, minecraft:witch, net.minecraft.particles.BasicParticleType@2a05c813 Entry: 51, minecraft:bubble_pop, net.minecraft.particles.BasicParticleType@5c0e915d Entry: 52, minecraft:current_down, net.minecraft.particles.BasicParticleType@35a10b50 Entry: 53, minecraft:bubble_column_up, net.minecraft.particles.BasicParticleType@c5c6cf5 Entry: 54, minecraft:nautilus, net.minecraft.particles.BasicParticleType@81d683d Entry: 55, minecraft:dolphin, net.minecraft.particles.BasicParticleType@2031841a Entry: 56, minecraft:campfire_cosy_smoke, net.minecraft.particles.BasicParticleType@1d77f0c7 Entry: 57, minecraft:campfire_signal_smoke, net.minecraft.particles.BasicParticleType@72231c58 Entry: 58, minecraft:dripping_honey, net.minecraft.particles.BasicParticleType@111cdea1 Entry: 59, minecraft:falling_honey, net.minecraft.particles.BasicParticleType@3da189cc Entry: 60, minecraft:landing_honey, net.minecraft.particles.BasicParticleType@1f72b777 Entry: 61, minecraft:falling_nectar, net.minecraft.particles.BasicParticleType@7559a91d [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:menu Entry: 0, minecraft:generic_9x1, net.minecraft.inventory.container.ContainerType@5239c564 Entry: 1, minecraft:generic_9x2, net.minecraft.inventory.container.ContainerType@7ef336ad Entry: 2, minecraft:generic_9x3, net.minecraft.inventory.container.ContainerType@44f443f1 Entry: 3, minecraft:generic_9x4, net.minecraft.inventory.container.ContainerType@194a1eae Entry: 4, minecraft:generic_9x5, net.minecraft.inventory.container.ContainerType@72cbe98d Entry: 5, minecraft:generic_9x6, net.minecraft.inventory.container.ContainerType@1dbc1204 Entry: 6, minecraft:generic_3x3, net.minecraft.inventory.container.ContainerType@10a98f7a Entry: 7, minecraft:anvil, net.minecraft.inventory.container.ContainerType@2f4a5754 Entry: 8, minecraft:beacon, net.minecraft.inventory.container.ContainerType@301f94e8 Entry: 9, minecraft:blast_furnace, net.minecraft.inventory.container.ContainerType@347d7c3 Entry: 10, minecraft:brewing_stand, net.minecraft.inventory.container.ContainerType@d802a6e Entry: 11, minecraft:crafting, net.minecraft.inventory.container.ContainerType@522e71b9 Entry: 12, minecraft:enchantment, net.minecraft.inventory.container.ContainerType@142e121e Entry: 13, minecraft:furnace, net.minecraft.inventory.container.ContainerType@5e77f265 Entry: 14, minecraft:grindstone, net.minecraft.inventory.container.ContainerType@26a37e89 Entry: 15, minecraft:hopper, net.minecraft.inventory.container.ContainerType@26a1ba18 Entry: 16, minecraft:lectern, net.minecraft.inventory.container.ContainerType@50584412 Entry: 17, minecraft:loom, net.minecraft.inventory.container.ContainerType@7152afd4 Entry: 18, minecraft:merchant, net.minecraft.inventory.container.ContainerType@50cacf8b Entry: 19, minecraft:shulker_box, net.minecraft.inventory.container.ContainerType@2914179 Entry: 20, minecraft:smoker, net.minecraft.inventory.container.ContainerType@1e56a97 Entry: 21, minecraft:cartography_table, net.minecraft.inventory.container.ContainerType@2e9e2739 Entry: 22, minecraft:stonecutter, net.minecraft.inventory.container.ContainerType@1c4b11d8 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:motive Entry: 0, minecraft:kebab, net.minecraft.entity.item.PaintingType@3103860a Entry: 1, minecraft:aztec, net.minecraft.entity.item.PaintingType@3dd34b89 Entry: 2, minecraft:alban, net.minecraft.entity.item.PaintingType@51cb1775 Entry: 3, minecraft:aztec2, net.minecraft.entity.item.PaintingType@14b6330 Entry: 4, minecraft:bomb, net.minecraft.entity.item.PaintingType@2cd586c5 Entry: 5, minecraft:plant, net.minecraft.entity.item.PaintingType@bfd1fd5 Entry: 6, minecraft:wasteland, net.minecraft.entity.item.PaintingType@284d160 Entry: 7, minecraft:pool, net.minecraft.entity.item.PaintingType@588c60e3 Entry: 8, minecraft:courbet, net.minecraft.entity.item.PaintingType@586f2699 Entry: 9, minecraft:sea, net.minecraft.entity.item.PaintingType@3b8f99f6 Entry: 10, minecraft:sunset, net.minecraft.entity.item.PaintingType@1fa45036 Entry: 11, minecraft:creebet, net.minecraft.entity.item.PaintingType@2414b059 Entry: 12, minecraft:wanderer, net.minecraft.entity.item.PaintingType@56e11ac Entry: 13, minecraft:graham, net.minecraft.entity.item.PaintingType@42e968de Entry: 14, minecraft:match, net.minecraft.entity.item.PaintingType@7f71a555 Entry: 15, minecraft:bust, net.minecraft.entity.item.PaintingType@7ee6549a Entry: 16, minecraft:stage, net.minecraft.entity.item.PaintingType@bf0d99b Entry: 17, minecraft:void, net.minecraft.entity.item.PaintingType@256efa3 Entry: 18, minecraft:skull_and_roses, net.minecraft.entity.item.PaintingType@707fb9b1 Entry: 19, minecraft:wither, net.minecraft.entity.item.PaintingType@3cf171a0 Entry: 20, minecraft:fighters, net.minecraft.entity.item.PaintingType@31405ba4 Entry: 21, minecraft:pointer, net.minecraft.entity.item.PaintingType@4de81d8 Entry: 22, minecraft:pigscene, net.minecraft.entity.item.PaintingType@9e112c3 Entry: 23, minecraft:burning_skull, net.minecraft.entity.item.PaintingType@3eaa1e2e Entry: 24, minecraft:skeleton, net.minecraft.entity.item.PaintingType@d04ff24 Entry: 25, minecraft:donkey_kong, net.minecraft.entity.item.PaintingType@7da46f1d [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:recipe_serializer Entry: 0, minecraft:crafting_shaped, net.minecraft.item.crafting.ShapedRecipe$Serializer@14bbdcb Entry: 1, minecraft:crafting_shapeless, net.minecraft.item.crafting.ShapelessRecipe$Serializer@3124a606 Entry: 2, minecraft:crafting_special_armordye, net.minecraft.item.crafting.SpecialRecipeSerializer@7ffa1215 Entry: 3, minecraft:crafting_special_bookcloning, net.minecraft.item.crafting.SpecialRecipeSerializer@3bb5fbe5 Entry: 4, minecraft:crafting_special_mapcloning, net.minecraft.item.crafting.SpecialRecipeSerializer@65941703 Entry: 5, minecraft:crafting_special_mapextending, net.minecraft.item.crafting.SpecialRecipeSerializer@74ae636f Entry: 6, minecraft:crafting_special_firework_rocket, net.minecraft.item.crafting.SpecialRecipeSerializer@67b3eb7 Entry: 7, minecraft:crafting_special_firework_star, net.minecraft.item.crafting.SpecialRecipeSerializer@66060fc Entry: 8, minecraft:crafting_special_firework_star_fade, net.minecraft.item.crafting.SpecialRecipeSerializer@44ca4190 Entry: 9, minecraft:crafting_special_tippedarrow, net.minecraft.item.crafting.SpecialRecipeSerializer@712935c Entry: 10, minecraft:crafting_special_bannerduplicate, net.minecraft.item.crafting.SpecialRecipeSerializer@5990a6a Entry: 11, minecraft:crafting_special_shielddecoration, net.minecraft.item.crafting.SpecialRecipeSerializer@67bc5505 Entry: 12, minecraft:crafting_special_shulkerboxcoloring, net.minecraft.item.crafting.SpecialRecipeSerializer@35a898ef Entry: 13, minecraft:crafting_special_suspiciousstew, net.minecraft.item.crafting.SpecialRecipeSerializer@5d8c96ca Entry: 14, minecraft:crafting_special_repairitem, net.minecraft.item.crafting.SpecialRecipeSerializer@3c0450ff Entry: 15, minecraft:smelting, net.minecraft.item.crafting.CookingRecipeSerializer@57f97f05 Entry: 16, minecraft:blasting, net.minecraft.item.crafting.CookingRecipeSerializer@38de75bf Entry: 17, minecraft:smoking, net.minecraft.item.crafting.CookingRecipeSerializer@3fb52eea Entry: 18, minecraft:campfire_cooking, net.minecraft.item.crafting.CookingRecipeSerializer@13eb0fa4 Entry: 19, minecraft:stonecutting, net.minecraft.item.crafting.SingleItemRecipe$Serializer@62439ecb Entry: 20, forge:conditional, net.minecraftforge.common.crafting.ConditionalRecipe$Serializer@5b5dce5c [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:stat_type Entry: 0, minecraft:mined, net.minecraft.stats.StatType@1ed2cd61 Entry: 1, minecraft:crafted, net.minecraft.stats.StatType@69a836b1 Entry: 2, minecraft:used, net.minecraft.stats.StatType@3900a417 Entry: 3, minecraft:broken, net.minecraft.stats.StatType@2ac6a82c Entry: 4, minecraft:picked_up, net.minecraft.stats.StatType@2277d1d0 Entry: 5, minecraft:dropped, net.minecraft.stats.StatType@ac27691 Entry: 6, minecraft:killed, net.minecraft.stats.StatType@365e5bc2 Entry: 7, minecraft:killed_by, net.minecraft.stats.StatType@29c612ed Entry: 8, minecraft:custom, net.minecraft.stats.StatType@35a3bf54 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:villager_profession Entry: 0, minecraft:none, none Entry: 1, minecraft:armorer, armorer Entry: 2, minecraft:butcher, butcher Entry: 3, minecraft:cartographer, cartographer Entry: 4, minecraft:cleric, cleric Entry: 5, minecraft:farmer, farmer Entry: 6, minecraft:fisherman, fisherman Entry: 7, minecraft:fletcher, fletcher Entry: 8, minecraft:leatherworker, leatherworker Entry: 9, minecraft:librarian, librarian Entry: 10, minecraft:mason, mason Entry: 11, minecraft:nitwit, nitwit Entry: 12, minecraft:shepherd, shepherd Entry: 13, minecraft:toolsmith, toolsmith Entry: 14, minecraft:weaponsmith, weaponsmith [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:point_of_interest_type Entry: 0, minecraft:unemployed, unemployed Entry: 1, minecraft:armorer, armorer Entry: 2, minecraft:butcher, butcher Entry: 3, minecraft:cartographer, cartographer Entry: 4, minecraft:cleric, cleric Entry: 5, minecraft:farmer, farmer Entry: 6, minecraft:fisherman, fisherman Entry: 7, minecraft:fletcher, fletcher Entry: 8, minecraft:leatherworker, leatherworker Entry: 9, minecraft:librarian, librarian Entry: 10, minecraft:mason, mason Entry: 11, minecraft:nitwit, nitwit Entry: 12, minecraft:shepherd, shepherd Entry: 13, minecraft:toolsmith, toolsmith Entry: 14, minecraft:weaponsmith, weaponsmith Entry: 15, minecraft:home, home Entry: 16, minecraft:meeting, meeting Entry: 17, minecraft:beehive, beehive Entry: 18, minecraft:bee_nest, bee_nest Entry: 19, minecraft:nether_portal, nether_portal [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:memory_module_type Entry: 0, minecraft:dummy, minecraft:dummy Entry: 1, minecraft:home, minecraft:home Entry: 2, minecraft:job_site, minecraft:job_site Entry: 3, minecraft:meeting_point, minecraft:meeting_point Entry: 4, minecraft:secondary_job_site, minecraft:secondary_job_site Entry: 5, minecraft:mobs, minecraft:mobs Entry: 6, minecraft:visible_mobs, minecraft:visible_mobs Entry: 7, minecraft:visible_villager_babies, minecraft:visible_villager_babies Entry: 8, minecraft:nearest_players, minecraft:nearest_players Entry: 9, minecraft:nearest_visible_player, minecraft:nearest_visible_player Entry: 10, minecraft:walk_target, minecraft:walk_target Entry: 11, minecraft:look_target, minecraft:look_target Entry: 12, minecraft:interaction_target, minecraft:interaction_target Entry: 13, minecraft:breed_target, minecraft:breed_target Entry: 14, minecraft:path, minecraft:path Entry: 15, minecraft:interactable_doors, minecraft:interactable_doors Entry: 16, minecraft:opened_doors, minecraft:opened_doors Entry: 17, minecraft:nearest_bed, minecraft:nearest_bed Entry: 18, minecraft:hurt_by, minecraft:hurt_by Entry: 19, minecraft:hurt_by_entity, minecraft:hurt_by_entity Entry: 20, minecraft:nearest_hostile, minecraft:nearest_hostile Entry: 21, minecraft:hiding_place, minecraft:hiding_place Entry: 22, minecraft:heard_bell_time, minecraft:heard_bell_time Entry: 23, minecraft:cant_reach_walk_target_since, minecraft:cant_reach_walk_target_since Entry: 24, minecraft:golem_last_seen_time, minecraft:golem_last_seen_time Entry: 25, minecraft:last_slept, minecraft:last_slept Entry: 26, minecraft:last_woken, minecraft:last_woken Entry: 27, minecraft:last_worked_at_poi, minecraft:last_worked_at_poi [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:sensor_type Entry: 0, minecraft:dummy, net.minecraft.entity.ai.brain.sensor.SensorType@5f5f567e Entry: 1, minecraft:nearest_living_entities, net.minecraft.entity.ai.brain.sensor.SensorType@76e4f82a Entry: 2, minecraft:nearest_players, net.minecraft.entity.ai.brain.sensor.SensorType@a78fe31 Entry: 3, minecraft:interactable_doors, net.minecraft.entity.ai.brain.sensor.SensorType@3d1920ea Entry: 4, minecraft:nearest_bed, net.minecraft.entity.ai.brain.sensor.SensorType@384c6920 Entry: 5, minecraft:hurt_by, net.minecraft.entity.ai.brain.sensor.SensorType@4d9144a3 Entry: 6, minecraft:villager_hostiles, net.minecraft.entity.ai.brain.sensor.SensorType@5924573a Entry: 7, minecraft:villager_babies, net.minecraft.entity.ai.brain.sensor.SensorType@428ef036 Entry: 8, minecraft:secondary_pois, net.minecraft.entity.ai.brain.sensor.SensorType@737114f3 Entry: 9, minecraft:golem_last_seen, net.minecraft.entity.ai.brain.sensor.SensorType@2a2398fd [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:schedule Entry: 0, minecraft:empty, net.minecraft.entity.ai.brain.schedule.Schedule@4fb0205d Entry: 1, minecraft:simple, net.minecraft.entity.ai.brain.schedule.Schedule@10273c3e Entry: 2, minecraft:villager_baby, net.minecraft.entity.ai.brain.schedule.Schedule@fd513a3 Entry: 3, minecraft:villager_default, net.minecraft.entity.ai.brain.schedule.Schedule@18d18bb8 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:activities Entry: 0, minecraft:core, core Entry: 1, minecraft:idle, idle Entry: 2, minecraft:work, work Entry: 3, minecraft:play, play Entry: 4, minecraft:rest, rest Entry: 5, minecraft:meet, meet Entry: 6, minecraft:panic, panic Entry: 7, minecraft:raid, raid Entry: 8, minecraft:pre_raid, pre_raid Entry: 9, minecraft:hide, hide [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:carver Entry: 0, minecraft:cave, net.minecraft.world.gen.carver.CaveWorldCarver@36d970c0 Entry: 1, minecraft:hell_cave, net.minecraft.world.gen.carver.NetherCaveWorldCarver@4f1a0582 Entry: 2, minecraft:canyon, net.minecraft.world.gen.carver.CanyonWorldCarver@60924578 Entry: 3, minecraft:underwater_canyon, net.minecraft.world.gen.carver.UnderwaterCanyonWorldCarver@1f123c09 Entry: 4, minecraft:underwater_cave, net.minecraft.world.gen.carver.UnderwaterCaveWorldCarver@3247ac68 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:surface_builder Entry: 0, minecraft:default, net.minecraft.world.gen.surfacebuilders.DefaultSurfaceBuilder@6cd30fde Entry: 1, minecraft:mountain, net.minecraft.world.gen.surfacebuilders.MountainSurfaceBuilder@7f98fc49 Entry: 2, minecraft:shattered_savanna, net.minecraft.world.gen.surfacebuilders.ShatteredSavannaSurfaceBuilder@1db67000 Entry: 3, minecraft:gravelly_mountain, net.minecraft.world.gen.surfacebuilders.GravellyMountainSurfaceBuilder@1551ed8a Entry: 4, minecraft:giant_tree_taiga, net.minecraft.world.gen.surfacebuilders.GiantTreeTaigaSurfaceBuilder@605bb0df Entry: 5, minecraft:swamp, net.minecraft.world.gen.surfacebuilders.SwampSurfaceBuilder@9f70e2e Entry: 6, minecraft:badlands, net.minecraft.world.gen.surfacebuilders.BadlandsSurfaceBuilder@6b94d0d4 Entry: 7, minecraft:wooded_badlands, net.minecraft.world.gen.surfacebuilders.WoodedBadlandsSurfaceBuilder@4477ffbb Entry: 8, minecraft:eroded_badlands, net.minecraft.world.gen.surfacebuilders.ErodedBadlandsSurfaceBuilder@5e6767fb Entry: 9, minecraft:frozen_ocean, net.minecraft.world.gen.surfacebuilders.FrozenOceanSurfaceBuilder@1a246d6c Entry: 10, minecraft:nether, net.minecraft.world.gen.surfacebuilders.NetherSurfaceBuilder@7eb8c6de Entry: 11, minecraft:nope, net.minecraft.world.gen.surfacebuilders.NoopSurfaceBuilder@147b7e40 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:feature Entry: 0, minecraft:pillager_outpost, net.minecraft.world.gen.feature.structure.PillagerOutpostStructure@b2d7ecf Entry: 1, minecraft:mineshaft, net.minecraft.world.gen.feature.structure.MineshaftStructure@739fc2ab Entry: 2, minecraft:woodland_mansion, net.minecraft.world.gen.feature.structure.WoodlandMansionStructure@1fdf663e Entry: 3, minecraft:jungle_temple, net.minecraft.world.gen.feature.structure.JunglePyramidStructure@6d7e6b2b Entry: 4, minecraft:desert_pyramid, net.minecraft.world.gen.feature.structure.DesertPyramidStructure@3cde01d Entry: 5, minecraft:igloo, net.minecraft.world.gen.feature.structure.IglooStructure@79ae049d Entry: 6, minecraft:shipwreck, net.minecraft.world.gen.feature.structure.ShipwreckStructure@146717a5 Entry: 7, minecraft:swamp_hut, net.minecraft.world.gen.feature.structure.SwampHutStructure@447732ae Entry: 8, minecraft:stronghold, net.minecraft.world.gen.feature.structure.StrongholdStructure@5a4e3961 Entry: 9, minecraft:ocean_monument, net.minecraft.world.gen.feature.structure.OceanMonumentStructure@32cc6104 Entry: 10, minecraft:ocean_ruin, net.minecraft.world.gen.feature.structure.OceanRuinStructure@4c1ad99b Entry: 11, minecraft:nether_bridge, net.minecraft.world.gen.feature.structure.FortressStructure@5e068a74 Entry: 12, minecraft:end_city, net.minecraft.world.gen.feature.structure.EndCityStructure@60d60cbe Entry: 13, minecraft:buried_treasure, net.minecraft.world.gen.feature.structure.BuriedTreasureStructure@746f229c Entry: 14, minecraft:village, net.minecraft.world.gen.feature.structure.VillageStructure@72be4926 Entry: 15, minecraft:no_op, net.minecraft.world.gen.feature.NoOpFeature@1e962016 Entry: 16, minecraft:normal_tree, net.minecraft.world.gen.feature.TreeFeature@741feec5 Entry: 17, minecraft:acacia_tree, net.minecraft.world.gen.feature.AcaciaFeature@c06d8dc Entry: 18, minecraft:fancy_tree, net.minecraft.world.gen.feature.FancyTreeFeature@4b03467 Entry: 19, minecraft:jungle_ground_bush, net.minecraft.world.gen.feature.ShrubFeature@30a1a237 Entry: 20, minecraft:dark_oak_tree, net.minecraft.world.gen.feature.DarkOakTreeFeature@4378e6af Entry: 21, minecraft:mega_jungle_tree, net.minecraft.world.gen.feature.MegaJungleFeature@3f7ca9ae Entry: 22, minecraft:mega_spruce_tree, net.minecraft.world.gen.feature.MegaPineTree@31b430da Entry: 23, minecraft:flower, net.minecraft.world.gen.feature.DefaultFlowersFeature@1a9fb7fa Entry: 24, minecraft:random_patch, net.minecraft.world.gen.feature.RandomPatchFeature@39573ba Entry: 25, minecraft:block_pile, net.minecraft.world.gen.feature.BlockPileFeature@7d728cc0 Entry: 26, minecraft:spring_feature, net.minecraft.world.gen.feature.SpringFeature@7a7b9f33 Entry: 27, minecraft:chorus_plant, net.minecraft.world.gen.feature.ChorusPlantFeature@3bf47a8 Entry: 28, minecraft:emerald_ore, net.minecraft.world.gen.feature.ReplaceBlockFeature@332de27d Entry: 29, minecraft:void_start_platform, net.minecraft.world.gen.feature.VoidStartPlatformFeature@2bd4b486 Entry: 30, minecraft:desert_well, net.minecraft.world.gen.feature.DesertWellsFeature@65319ddc Entry: 31, minecraft:fossil, net.minecraft.world.gen.feature.FossilsFeature@31dfb511 Entry: 32, minecraft:huge_red_mushroom, net.minecraft.world.gen.feature.BigRedMushroomFeature@5eac3c4e Entry: 33, minecraft:huge_brown_mushroom, net.minecraft.world.gen.feature.BigBrownMushroomFeature@bc18529 Entry: 34, minecraft:ice_spike, net.minecraft.world.gen.feature.IceSpikeFeature@7f326d0c Entry: 35, minecraft:glowstone_blob, net.minecraft.world.gen.feature.GlowstoneBlobFeature@2197819c Entry: 36, minecraft:freeze_top_layer, net.minecraft.world.gen.feature.IceAndSnowFeature@69addb84 Entry: 37, minecraft:vines, net.minecraft.world.gen.feature.VinesFeature@5c283c0c Entry: 38, minecraft:monster_room, net.minecraft.world.gen.feature.DungeonsFeature@2056cb5a Entry: 39, minecraft:blue_ice, net.minecraft.world.gen.feature.BlueIceFeature@341d8f7e Entry: 40, minecraft:iceberg, net.minecraft.world.gen.feature.IcebergFeature@461fbfeb Entry: 41, minecraft:forest_rock, net.minecraft.world.gen.feature.BlockBlobFeature@39a386de Entry: 42, minecraft:disk, net.minecraft.world.gen.feature.SphereReplaceFeature@34e9cb1 Entry: 43, minecraft:ice_patch, net.minecraft.world.gen.feature.IcePathFeature@29751213 Entry: 44, minecraft:lake, net.minecraft.world.gen.feature.LakesFeature@4b5bc2c6 Entry: 45, minecraft:ore, net.minecraft.world.gen.feature.OreFeature@78c73f5d Entry: 46, minecraft:end_spike, net.minecraft.world.gen.feature.EndSpikeFeature@74a69129 Entry: 47, minecraft:end_island, net.minecraft.world.gen.feature.EndIslandFeature@291a4124 Entry: 48, minecraft:end_gateway, net.minecraft.world.gen.feature.EndGatewayFeature@6881aea3 Entry: 49, minecraft:seagrass, net.minecraft.world.gen.feature.SeaGrassFeature@2cabf5d3 Entry: 50, minecraft:kelp, net.minecraft.world.gen.feature.KelpFeature@1daed051 Entry: 51, minecraft:coral_tree, net.minecraft.world.gen.feature.CoralTreeFeature@7ce327e2 Entry: 52, minecraft:coral_mushroom, net.minecraft.world.gen.feature.CoralMushroomFeature@66b64be0 Entry: 53, minecraft:coral_claw, net.minecraft.world.gen.feature.CoralClawFeature@2f6913c2 Entry: 54, minecraft:sea_pickle, net.minecraft.world.gen.feature.SeaPickleFeature@3a235aa1 Entry: 55, minecraft:simple_block, net.minecraft.world.gen.feature.BlockWithContextFeature@46e38703 Entry: 56, minecraft:bamboo, net.minecraft.world.gen.feature.BambooFeature@7fc12f5f Entry: 57, minecraft:fill_layer, net.minecraft.world.gen.feature.FillLayerFeature@655aac42 Entry: 58, minecraft:bonus_chest, net.minecraft.world.gen.feature.BonusChestFeature@3abda502 Entry: 59, minecraft:random_random_selector, net.minecraft.world.gen.feature.MultipleRandomFeature@44f0359e Entry: 60, minecraft:random_selector, net.minecraft.world.gen.feature.MultipleWithChanceRandomFeature@15a2756e Entry: 61, minecraft:simple_random_selector, net.minecraft.world.gen.feature.SingleRandomFeatureConfig@6186e0b1 Entry: 62, minecraft:random_boolean_selector, net.minecraft.world.gen.feature.TwoFeatureChoiceFeature@1d877e6c Entry: 63, minecraft:decorated, < DecoratedFeature [minecraft:decorated] > Entry: 64, minecraft:decorated_flower, < DecoratedFlowerFeature [minecraft:decorated_flower] > [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:decorator Entry: 0, minecraft:nope, Passthrough@5760f6f8 Entry: 1, minecraft:count_heightmap, AtSurface@10ba2106 Entry: 2, minecraft:count_top_solid, TopSolid@5e685e65 Entry: 3, minecraft:count_heightmap_32, SurfacePlus32@3e817c69 Entry: 4, minecraft:count_heightmap_double, TwiceSurface@2140b2cf Entry: 5, minecraft:count_height_64, AtHeight64@256f9733 Entry: 6, minecraft:noise_heightmap_32, SurfacePlus32WithNoise@2426f368 Entry: 7, minecraft:noise_heightmap_double, TwiceSurfaceWithNoise@5a5badd9 Entry: 8, minecraft:chance_heightmap, AtSurfaceWithChance@16747bdf Entry: 9, minecraft:chance_heightmap_double, TwiceSurfaceWithChance@54d9509 Entry: 10, minecraft:chance_passthrough, WithChance@4e80e10 Entry: 11, minecraft:chance_top_solid_heightmap, TopSolidWithChance@466fbc16 Entry: 12, minecraft:count_extra_heightmap, AtSurfaceWithExtra@19c60811 Entry: 13, minecraft:count_range, CountRange@59b845ca Entry: 14, minecraft:count_biased_range, HeightBiasedRange@55d60744 Entry: 15, minecraft:count_very_biased_range, HeightVeryBiasedRange@b37978d Entry: 16, minecraft:random_count_range, RandomCountWithRange@519a77f8 Entry: 17, minecraft:chance_range, ChanceRange@67e125b4 Entry: 18, minecraft:count_chance_heightmap, AtSurfaceWithChanceMultiple@73edd485 Entry: 19, minecraft:count_chance_heightmap_double, TwiceSurfaceWithChanceMultiple@7e35b49e Entry: 20, minecraft:count_depth_average, DepthAverage@42dfc618 Entry: 21, minecraft:top_solid_heightmap, TopSolidOnce@2bd4a2e2 Entry: 22, minecraft:top_solid_heightmap_range, TopSolidRange@46769fa7 Entry: 23, minecraft:top_solid_heightmap_noise_biased, TopSolidWithNoise@e93b5fc Entry: 24, minecraft:carving_mask, CaveEdge@10c588e6 Entry: 25, minecraft:forest_rock, AtSurfaceRandomCount@776bc1 Entry: 26, minecraft:hell_fire, NetherFire@38852fc7 Entry: 27, minecraft:magma, NetherMagma@c8f8c4c Entry: 28, minecraft:emerald_ore, Height4To32@7359687c Entry: 29, minecraft:lava_lake, LakeLava@59ca70aa Entry: 30, minecraft:water_lake, LakeWater@8790114 Entry: 31, minecraft:dungeons, DungeonRoom@6bde7216 Entry: 32, minecraft:dark_oak_tree, DarkOakTreePlacement@26704be7 Entry: 33, minecraft:iceberg, IcebergPlacement@527b0244 Entry: 34, minecraft:light_gem_chance, NetherGlowstone@1f15380b Entry: 35, minecraft:end_island, EndIsland@1527e35f Entry: 36, minecraft:chorus_plant, ChorusPlant@54c726d5 Entry: 37, minecraft:end_gateway, EndGateway@7ff23f4c [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:biome_source_type Entry: 0, minecraft:checkerboard, net.minecraft.world.biome.provider.BiomeProviderType@7961ec67 Entry: 1, minecraft:fixed, net.minecraft.world.biome.provider.BiomeProviderType@36ad9f68 Entry: 2, minecraft:vanilla_layered, net.minecraft.world.biome.provider.BiomeProviderType@74d6a95c Entry: 3, minecraft:the_end, net.minecraft.world.biome.provider.BiomeProviderType@50241ea6 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:chunk_generator_type Entry: 0, minecraft:surface, net.minecraft.world.gen.ChunkGeneratorType@31fc59ef Entry: 1, minecraft:caves, net.minecraft.world.gen.ChunkGeneratorType@525a9ec8 Entry: 2, minecraft:floating_islands, net.minecraft.world.gen.ChunkGeneratorType@4d4dffde Entry: 3, minecraft:debug, net.minecraft.world.gen.ChunkGeneratorType@56a7716 Entry: 4, minecraft:flat, net.minecraft.world.gen.ChunkGeneratorType@6fd00390 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:chunk_status Entry: 0, minecraft:empty, minecraft:empty Entry: 1, minecraft:structure_starts, minecraft:structure_starts Entry: 2, minecraft:structure_references, minecraft:structure_references Entry: 3, minecraft:biomes, minecraft:biomes Entry: 4, minecraft:noise, minecraft:noise Entry: 5, minecraft:surface, minecraft:surface Entry: 6, minecraft:carvers, minecraft:carvers Entry: 7, minecraft:liquid_carvers, minecraft:liquid_carvers Entry: 8, minecraft:features, minecraft:features Entry: 9, minecraft:light, minecraft:light Entry: 10, minecraft:spawn, minecraft:spawn Entry: 11, minecraft:heightmaps, minecraft:heightmaps Entry: 12, minecraft:full, minecraft:full [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:block_state_provider_type Entry: 0, minecraft:simple_state_provider, net.minecraft.world.gen.blockstateprovider.BlockStateProviderType@2a664690 Entry: 1, minecraft:weighted_state_provider, net.minecraft.world.gen.blockstateprovider.BlockStateProviderType@c200926 Entry: 2, minecraft:plain_flower_provider, net.minecraft.world.gen.blockstateprovider.BlockStateProviderType@7555b321 Entry: 3, minecraft:forest_flower_provider, net.minecraft.world.gen.blockstateprovider.BlockStateProviderType@6f36bf56 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:block_placer_type Entry: 0, minecraft:simple_block_placer, net.minecraft.world.gen.blockplacer.BlockPlacerType@5e96cea1 Entry: 1, minecraft:double_plant_placer, net.minecraft.world.gen.blockplacer.BlockPlacerType@36c78387 Entry: 2, minecraft:column_placer, net.minecraft.world.gen.blockplacer.BlockPlacerType@5c8fc16d [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:foliage_placer_type Entry: 0, minecraft:blob_foliage_placer, net.minecraft.world.gen.foliageplacer.FoliagePlacerType@1eb1be5e Entry: 1, minecraft:spruce_foliage_placer, net.minecraft.world.gen.foliageplacer.FoliagePlacerType@2e569eb6 Entry: 2, minecraft:pine_foliage_placer, net.minecraft.world.gen.foliageplacer.FoliagePlacerType@48e8dc6c Entry: 3, minecraft:acacia_foliage_placer, net.minecraft.world.gen.foliageplacer.FoliagePlacerType@5871fb51 [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:tree_decorator_type Entry: 0, minecraft:trunk_vine, net.minecraft.world.gen.treedecorator.TreeDecoratorType@72f590b6 Entry: 1, minecraft:leave_vine, net.minecraft.world.gen.treedecorator.TreeDecoratorType@6295917d Entry: 2, minecraft:cocoa, net.minecraft.world.gen.treedecorator.TreeDecoratorType@6fedb610 Entry: 3, minecraft:beehive, net.minecraft.world.gen.treedecorator.TreeDecoratorType@65fb46a2 Entry: 4, minecraft:alter_ground, net.minecraft.world.gen.treedecorator.TreeDecoratorType@181e52ce [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: forge:moddimensions [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: minecraft:dataserializers [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRYDUMP]: Registry Name: forge:loot_modifier_serializers [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file C:\Users\red0165332\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.15.2-31.2.41_mapped_snapshot_20200514-1.15.1\forge-1.15.2-31.2.41_mapped_snapshot_20200514-1.15.1.jar [m[36m[00:04:08] [Server thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:depression_mod for mod file D:\Documents\Minecraft\mod\Depression Mod\bin\main [m[32m[00:04:08] [Server thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, forge-1.15.2-31.2.41_mapped_snapshot_20200514-1.15.1.jar, main [m[32m[00:04:09] [Server thread/INFO] [minecraft/RecipeManager]: Loaded 6 recipes [m[32m[00:04:10] [Server thread/INFO] [minecraft/AdvancementList]: Loaded 825 advancements [m[32m[00:04:11] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld [m[32m[00:04:12] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0% [m[32m[00:04:12] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0% [m[32m[00:04:12] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0% [m[32m[00:04:12] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Time elapsed: 1412 ms [m[36m[00:04:15] [Server thread/DEBUG] [ne.mi.co.DimensionManager/DIMS]: Queueing dimension 1 to unload [m[36m[00:04:15] [Server thread/DEBUG] [ne.mi.co.DimensionManager/DIMS]: Queueing dimension -1 to unload [m[36m[00:04:15] [Server thread/DEBUG] [ne.mi.co.DimensionManager/DIMS]: Unloading dimension 1 [m[32m[00:04:15] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [m[36m[00:04:15] [Server thread/DEBUG] [ne.mi.co.DimensionManager/DIMS]: Unloading dimension -1 [m[32m[00:04:15] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [m[32m[00:04:15] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 11, from 10 [m[33m[00:04:15] [Server thread/WARN] [minecraft/MinecraftServer]: Can't keep up! Is the server overloaded? Running 2300ms or 46 ticks behind [m[36m[00:04:16] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Starting local connection. [m[36m[00:04:16] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Starting local connection. [m[36m[00:04:17] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.fml.network.FMLHandshakeMessages$S2CModList' to 'fml:handshake' sequence 0 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, depression_mod] [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML2' from server : ACCEPTED [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML2' from server : ACCEPTED [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML2' from server : ACCEPTED [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML2' from server : ACCEPTED [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML2' from server : ACCEPTED [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from server [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 0 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Accepted server connection [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/REGISTRIES]: Expecting 19 registries: [minecraft:recipe_serializer, minecraft:sound_event, minecraft:particle_type, minecraft:villager_profession, minecraft:item, minecraft:potion, minecraft:block_entity_type, minecraft:block, minecraft:mob_effect, minecraft:stat_type, forge:moddimensions, minecraft:biome, minecraft:menu, minecraft:enchantment, minecraft:motive, minecraft:feature, minecraft:dataserializers, minecraft:fluid, minecraft:entity_type] [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 0 of type net.minecraftforge.fml.network.FMLHandshakeMessages$C2SModListReply [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, depression_mod] [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML2' from client : ACCEPTED [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML2' from client : ACCEPTED [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML2' from client : ACCEPTED [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML2' from client : ACCEPTED [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML2' from client : ACCEPTED [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from client [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list [m[36m[00:04:17] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 1 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received config sync from server [m[36m[00:04:17] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1 [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.fml.network.FMLHandshakeMessages$C2SAcknowledge [m[36m[00:04:17] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client [m[36m[00:04:17] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Handshake complete! [m[32m[00:04:17] [Netty Local Client IO #0/INFO] [ne.mi.fm.ne.NetworkHooks/]: Connected to a modded server. [m[32m[00:04:17] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.advancements.PlayerAdvancements@23069728 [m[32m[00:04:17] [Server thread/INFO] [minecraft/PlayerList]: Dev[local:E:a2896cc8] logged in with entity id 304 at (248.9533848929147, 67.0, 189.46668545903913) [m[32m[00:04:17] [Server thread/INFO] [minecraft/MinecraftServer]: Dev joined the game [m[32m[00:04:17] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game... [m[32m[00:04:17] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/minecraft:overworld [m[33m[00:04:17] [Render thread/WARN] [minecraft/ClientPlayNetHandler]: Received passengers for unknown entity [m[32m[00:04:18] [Render thread/INFO] [minecraft/NewChatGui]: [CHAT] abc [m[32m[00:04:18] [Render thread/INFO] [minecraft/NewChatGui]: [CHAT] test 20 [m[32m[00:04:18] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 15 advancements [m[36m[00:04:18] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World [m[32m[00:04:28] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game... [m[32m[00:04:28] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/minecraft:overworld [m[36m[00:04:28] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World [m[32m[00:04:29] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Dev lost connection: Disconnected [m[32m[00:04:29] [Server thread/INFO] [minecraft/MinecraftServer]: Dev left the game [m[32m[00:04:29] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Stopping singleplayer server as player logged out [m[32m[00:04:29] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [m[32m[00:04:29] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [m[32m[00:04:29] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [m[32m[00:04:29] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'New World'/minecraft:overworld [m[32m[00:04:29] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (New World (1)): All chunks are saved [m[36m[00:04:29] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World [m[32m[00:04:29] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (New World (1)): All chunks are saved [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Reverting to frozen data state. [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ClearableRegistry/REGISTRY]: minecraft:feature: Clearing registry [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BiomeProviderType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkGeneratorType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ModDimension Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> FROZEN [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Frozen state restored. [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing serverconfig directory : .\saves\New World (1)\serverconfig [m[36m[00:04:30] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Unloading configs type SERVER [m[32m[00:04:31] [Render thread/INFO] [minecraft/Minecraft]: Stopping! [m Edited October 18, 20205 yr by diesieben07 spoiler
October 19, 20205 yr Author When I checked the entity type ALL, the white bar also disappeared. I'm not sure about AbstractGui.GUI_ICONS_LOCATION, so could you please write some sample code?
October 19, 20205 yr See how you bind your own texture here? mc.getTextureManager().bindTexture(MENTALICON); You need to rebind the vanilla texture back after you finished your rendering, what diesieben gave you was the resource location of the texture. Edited October 19, 20205 yr by poopoodice
October 19, 20205 yr Author What does it mean to rebind a vanilla texture? I'm sorry for my poor understanding. Could you please show me the complete code to work with that as well?
October 19, 20205 yr Author public class MentalOverlayHander { public static final ResourceLocation MENTALICON = new ResourceLocation("depressionmod:textures/gui/overlay.png"); private final Minecraft mc = Minecraft.getInstance(); @SubscribeEvent public void onPreRenderOverlay(RenderGameOverlayEvent.Post event) { if (event.getType() == ElementType.ALL && mc.playerController.gameIsSurvivalOrAdventure()) { int scaledWidth = this.mc.getMainWindow().getScaledWidth(); int scaledHeight = this.mc.getMainWindow().getScaledHeight(); int left_height = ForgeIngameGui.left_height; int left = scaledWidth / 2 - 91; int top = scaledHeight - left_height; int level = 9; //((PlayerMentalInterface) PlayerMentalCapabilityRegistry.PLAYER_MENTAL_CAPABILITY).getMental(); RenderSystem.enableBlend(); RenderSystem.enableAlphaTest(); RenderSystem.color4f(1F, 1F, 1F, 1F); mc.getTextureManager().bindTexture(MENTALICON); for (int i = 0; i < 10; ++i) { //iが10未満のとき繰り返す。iは繰り返しごとに1増える。 if (i < level) { //iがMPより小さいとき普通の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 0, 0, 9, 9); } else if (i == level) { //iがMPと同じとき半分の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 9, 0, 9, 9); } else if (i > level) { //iがMPより大きいとき黒の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 18, 0, 9, 9); } left += 8; //アイコンを描画する位置を右に一つ分ずらす mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); } RenderSystem.disableBlend(); } } } I tried to fix the code but it doesn't work. Can you tell me specifically where and how to fix it?
October 19, 20205 yr Author I rebinded the vanilla texture immediately after RenderSystem.disableBlend (); but it doesn't work. Is it wrong? Edited October 19, 20205 yr by Zemelua
October 19, 20205 yr Author public class MentalOverlayHander { public static final ResourceLocation MENTALICON = new ResourceLocation("depressionmod:textures/gui/overlay.png"); private final Minecraft mc = Minecraft.getInstance(); @SubscribeEvent public void onPreRenderOverlay(RenderGameOverlayEvent.Post event) { if (event.getType() == ElementType.ALL && mc.playerController.gameIsSurvivalOrAdventure()) { int scaledWidth = this.mc.getMainWindow().getScaledWidth(); int scaledHeight = this.mc.getMainWindow().getScaledHeight(); int left_height = ForgeIngameGui.left_height; int left = scaledWidth / 2 - 91; int top = scaledHeight - left_height; int level = 9; //((PlayerMentalInterface) PlayerMentalCapabilityRegistry.PLAYER_MENTAL_CAPABILITY).getMental(); mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); RenderSystem.enableBlend(); RenderSystem.enableAlphaTest(); RenderSystem.color4f(1F, 1F, 1F, 1F); mc.getTextureManager().bindTexture(MENTALICON); for (int i = 0; i < 10; ++i) { //iが10未満のとき繰り返す。iは繰り返しごとに1増える。 if (i < level) { //iがMPより小さいとき普通の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 0, 0, 9, 9); } else if (i == level) { //iがMPと同じとき半分の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 9, 0, 9, 9); } else if (i > level) { //iがMPより大きいとき黒の薬を描画。 //mc.getTextureManager().bindTexture(MENTALICON); mc.ingameGUI.blit(left, top, 18, 0, 9, 9); } left += 8; //アイコンを描画する位置を右に一つ分ずらす } RenderSystem.disableBlend(); mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); } } }
October 19, 20205 yr 24 minutes ago, Zemelua said: mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); <-- Why is this here? RenderSystem.enableBlend(); RenderSystem.enableAlphaTest(); RenderSystem.color4f(1F, 1F, 1F, 1F); mc.getTextureManager().bindTexture(MENTALICON); <-- you immediately bind your own texture for (int i = 0; i < 10; ++i) { //iが10未満のとき繰り返す。iは繰り返しごとに1増える。 // } RenderSystem.disableBlend(); mc.getTextureManager().bindTexture(AbstractGui.GUI_ICONS_LOCATION); <-- This is is what d7 was saying is what you should do and where you should do it Edited October 19, 20205 yr by Draco18s Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
October 19, 20205 yr Author sorry. I wrote it in various positions and tried it, so the first AbstractGui.GUI_ICONS_LOCATION is just a mistake. However, even if I turn it off, it still doesn't work properly.
October 20, 20205 yr Author I'm ashamed to say that I'm new to giyhub so I don't know if it's made, but it's a url. https://github.com/Zemelua/Depression-Mod
October 20, 20205 yr 1 hour ago, Zemelua said: Why is it 256x256? Where did the number come from? Because that's the default Vanilla gui texture size. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
October 20, 20205 yr Author Thank you very much. I solved it by setting the size of overlay.png to 256x256.
October 20, 20205 yr 8 hours ago, Zemelua said: Why is it 256x256? Where did the number come from? If you look into the blit you are using you will notice that it passes 256 as its last two parameters, which is the texture size.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.