Jump to content

[1.11.2]Substituting Gold_Ore doesn't work the same as Iron_ore??


olrustyeye

Recommended Posts

I wanted to change the way the in game minerals work as far as how they drop. IE: I want gold_ore to drop a piece of gold ore rather then the whole block. I also want to add a slight chance of getting a gem like Diamond. 

Heres whats super bizzaroworld. Iron works, Diamond works, but Coal and Gold don't. I haven't tried redstone yet because that has issues of its own. Also interesting it's crashing at the initialization portion of the game.  Anyone know whats wrong? 

Here my current code
https://pastebin.com/W7tTNY8C

 

And the error:
https://pastebin.com/net807Nd

 

As soon as I comment out substitute(Blocks.GOLD_ORE, new ModBlockOre2("oreGold")); everything magically works. (I've also tried commenting out everything BUT gold ore and it still doesn't work.) 

Edited by olrustyeye
Added Version
Link to comment
Share on other sites

Just now, Jay Avery said:

I don't know the exact cause of the error, but the substitution system is generally extremely buggy. It would be much easier to achieve what you're trying to do using events.

To me it looks like there something it doesn't like about the model. 
I'm a bit confused as to how I can use events to achieve that effect. I don't know much about how to use events to be honest. :/
Thanks for taking a look!

Link to comment
Share on other sites

7 minutes ago, Jay Avery said:

The docs have a basic overview of using events. To edit the drops from a block, you can use HarvestDropsEvent. In the event, you can check for your chosen block(s) and then edit the list of drops (from event#getDrops()) however you like.

Ooooo I like that!
I'll have to check it out and utilize it!
Side note: I tested somethings further and just broke my IronOre. Buggy is an understatement. I'm thinking it has something to do with Cache/memory. I'm going to try a restart and see if that clears things up a bit. That being said I'll probably use the events for a cleaner code. 

Link to comment
Share on other sites

I've got one issue right now,

This is my code:

@Mod.EventBusSubscriber
public class OverrideBlocksEvents{
 
	 
	@SubscribeEvent
	public static void overrideBlocksDrops(HarvestDropsEvent e){
		
		 if(!e.getWorld().isRemote)
	        {
	            if(e.getWorld().getBlockState(e.getPos()).getBlock() instanceof BlockOre)
	            {
	                e.getDrops().add(new ItemStack(Items.DIAMOND));
	            }
	        }

	}

		

I admittedly found this code from someone else, but from what I've read and understood. This should work. I'm checking what the block state is, and in the instance of a Ore Block it should add a diamond to the drops... right? 

 

Edit: I just used a code I personally had made and it now works because I hadn't initialized it before... jeez goes to show you someone else's code isn't always better.
here it is for those wondering:

	@SubscribeEvent
	public void overrideBlocksDrops(HarvestDropsEvent event){
		
		
				
		if (event.getState().getBlock() == Blocks.IRON_ORE){
		 Utils.getLogger().info("IronBlock Accessed. This method is Working");
			event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
		}

	}


Just as a sidenote I'd still like to know why the other code doesn't work?

Edited by olrustyeye
Link to comment
Share on other sites

Hmm..
So I'm having an issue now where I can't REMOVE the block, but I can add. 

event.getDrops().remove(new ItemStack(Blocks.GOLD_ORE));

I think what I'm needing here is an addition check to check if the block dropped would be gold ore right? I'm just not sure where to go. I've told it to remove that drop but it wont. 

Looking at the other methods I'm not sure how to use remove if this isn't how one uses it? 

Link to comment
Share on other sites

You're telling it to remove a newly-created ItemStack object. That exact object won't be present in the list, because you've just made it.

 

You're right in thinking you need to check if the drop would be the ore block. You'll need to iterate through the list of drops, and for each element, check whether its item (ItemStack#getItem) is the ItemBlock for the block in question (Item.getItemFromBlock(block)).

  • Like 1
Link to comment
Share on other sites

	@SubscribeEvent
	public void overrideBlocksDrops(HarvestDropsEvent event){
		
		
		if (event.getState().getBlock() == Blocks.GOLD_ORE){
		 Utils.getLogger().info("IronBlock Accessed. This method is Working");
			
			event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
			
			for(int i=0; i<= event.getDrops().size(); i++){
			if(event.getDrops().get(i) == new ItemStack(Blocks.GOLD_ORE)){
			event.getDrops().remove(i);
			
			Utils.getLogger().info("Was Gold Ore Removed?");
			}
		}
   }

I'm getting somewhere! Right now I got an error and I have some idea of why.
I think there is a parsing error perhaps, or again I'm trying to create something new where something already exsists.

 

Here my issue. Get is looking for an itemstack, so I'm trying to parse blocks into an item stack, but in order to do that I need new. Item.getblockfromitem wouldn't work because that makes it an item not a itemstack. 

I'm not sure where to go from here... :/

 

This is my error but I feel that the problem is probably obvious to those more experienced.
https://pastebin.com/Bd6KKTKK

 

 

Edited by olrustyeye
Link to comment
Share on other sites

You can't compare ItemStacks using the == operator, it checks for object identity - so a newly created stack will never be == to an existing stack. Instead you need to check the item that's within the stack (using stack#getItem) and compare it to the block's ItemBlock (which you can obtain from Item.getItemFromBlock). Items can be compared using ==, because they are singletons (so there's only ever one gold ore item, for example).

Edited by Jay Avery
  • Like 2
Link to comment
Share on other sites

17 minutes ago, Jay Avery said:

You can't compare ItemStacks using the == operator, it checks for object identity - so a newly created stack will never be == to an existing stack. Instead you need to check the item that's within the stack (using stack#getItem) and compare it to the block's ItemBlock (which you can obtain from Item.getItemFromBlock).

Ooooooooooooo

	if (event.getState().getBlock() == Blocks.GOLD_ORE){
		 Utils.getLogger().info("IronBlock Accessed. This method is Working");
			
			event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
			
			for(int i=0; i<= event.getDrops().size(); i++){
			
				
			if(event.getDrops().get(i).getItem() == Item.getItemFromBlock(Blocks.GOLD_ORE)){
			event.getDrops().remove(i);
			
			Utils.getLogger().info("Was Gold Ore Removed?");
			}
			}


I'm still getting a error. I'm not sure what I am doing wrong now... The only thing I can think of is an issue in the for loop. Because removing the i means that the number that was 2 becomes 1 it has an issue when it goes to check for 2 and it's no longer there...
So I did remove "Blocks.GOLD_ORE"
and I still get an error. 

Seriously, thank you so much for helping me. It's no often a community helps a noob with out being a jerk to him. You guys are awesome, this must be cake walk for a lot of you! 
If it's any consolation I am learning a TON!

One huge key here is that it says, IndexOutofBoundsException. I think it's removing the item and then checking for it again. 

Edited by olrustyeye
Link to comment
Share on other sites

I was on the 'noob' side of these conversations for many months, so it seems only fair to pay it forward when I can! :)

 

Quote

The only thing I can think of is an issue in the for loop. Because removing the i means that the number that was 2 becomes 1 it has an issue when it goes to check for 2 and it's no longer there...

Ah yes, you have the right idea! To handle this safely, you'll need to use an Iterator for the list. Here is a little summary of using iterators. Instead of your for loop, create an iterator and then use a while loop, with the condition that the iterator hasNext. Then to get the next item from the list, instead of your get(i), use next on the iterator. That'll return an element of the list (an ItemStack) in the way you expect, and you can check its conditions in the way you currently are, and remove it from the list using remove on the iterator.

 

Edit: Checking the length in that way unfortunately won't work reliably, because of counting through the list at the same time as changing its length. Here is a stackoverflow question addressing the same problem.

Edited by Jay Avery
Link to comment
Share on other sites

4 minutes ago, Jay Avery said:

I was on the 'noob' side of these conversations for many months, so it seems only fair to pay it forward when I can! :)

 

Ah yes, you have the right idea! To handle this safely, you'll need to use an Iterator for the list. Here is a little summary of using iterators. Instead of your for loop, create an iterator and then use a while loop, with the condition that the iterator hasNext. Then to get the next item from the list, instead of your get(i), use next on the iterator. That'll return an element of the list (an ItemStack) in the way you expect, and you can check its conditions in the way you currently are, and remove it form the list using remove on the iterator.

 

Edit: Checking the length in that way unfortunately won't work reliably, because of counting through the list at the same time as changing its length. Here is a stackoverflow question addressing the same problem.

Yup, I was just thinking that. It's a band-aid not a solution. The iterator sounds much more reliable. 

Link to comment
Share on other sites

		if (event.getState().getBlock() == Blocks.IRON_ORE){
		 Utils.getLogger().info("IronBlock Accessed. This method is Working");
			event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
	
			ListIterator drops = event.getDrops().listIterator();
			while(drops.hasNext()){
			Object element = drops.next();
			
			if(element == Item.getItemFromBlock(Blocks.IRON_ORE)){
			event.getDrops().remove(element);
			 Utils.getLogger().info("WE DID IT!");
			}
			}
		}

So I got the whileloop going now,

my issue is I think I'm deleting the element rather then a block in the element. I'm not sure how to tell it to remove what I want it to at this point. :/ 
Actually theres a problem with the If statement because it's not returning me...oh I think I might know what the issue might be. Element is an itemstack not an item...
Still before I go test that. It's not returning true so theres an issue there. 

Edited by olrustyeye
Link to comment
Share on other sites

You need to check the item of the element in the same way you were with your for loop: the element is an ItemStack so you need to call getItem to see if that matches the block's item.

 

Edit: You really are getting close, don't be too disheartened!

Edited by Jay Avery
Link to comment
Share on other sites

4 minutes ago, olrustyeye said:


Actually theres a problem with the If statement because it's not returning me...oh I think I might know what the issue might be. Element is an itemstack not an item...
Still before I go test that. It's not returning true so theres an issue there. 

That's the reason it's not returning true, so fixing that will solve your problem. An ItemStack will never be == to an Item, so the if statement will always be false in its current form.

Link to comment
Share on other sites

Yes!!! I got it to work. I don't love the fact I'm casting "element" into an itemstack I feel like that can be refined. But I have another issue I encountered. 
This code does NOT work with redstone. It's only removing one of the redstone. It's interesting because it should be checking it over and over until it deletes all of them right? 

Everything else works like a charm!

		if (event.getState().getBlock() == Blocks.LIT_REDSTONE_ORE){
			 Utils.getLogger().info("IronBlock Accessed. This method is Working");
				event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
		
				ListIterator drops = event.getDrops().listIterator();
				while(drops.hasNext()){
				Object element = drops.next();
			
				 Utils.getLogger().info(element);
				if(((ItemStack) element).getItem() == Items.REDSTONE){
				event.getDrops().remove(element);
				 Utils.getLogger().info("WE DID IT!");
				}
				}
			}
		if (event.getState().getBlock() == Blocks.REDSTONE_ORE){
			 Utils.getLogger().info("IronBlock Accessed. This method is Working");
				event.getDrops().add(new ItemStack(Blocks.DIAMOND_BLOCK, 1));
		
				ListIterator drops = event.getDrops().listIterator();
				while(drops.hasNext()){
				Object element = drops.next();
			
				 Utils.getLogger().info(element);
				if(((ItemStack) element).getItem() == Items.REDSTONE){
				event.getDrops().remove(element);
				
				 Utils.getLogger().info("WE DID IT!");
				}
				}
			}

hehe well this isn't the ONLY issue actually. I"m also having an issue of trying to access the metadata of for dyes for lapis ore. I think I might be able to figure that one out, but if not I might be back. 

Edited by olrustyeye
Link to comment
Share on other sites

43 minutes ago, diesieben07 said:

You could get rid of the ugly cast by not using raw types. getDrops returns a List<ItemStack>, therefor listIterator also returns ListIterator<ItemStack>. Raw types are a legacy thing and should never be used in modern Java code.

Also, don't call remove on the list while you are iterating, this will crash. You need to use the remove method on the iterator to remove the current element.

Holy crap... this is powerful stuff!
It's funny how I'm not thinking in Java terms sometimes. I think I remember back in my college days (Now 4 years ago JEEZ) using lists. I totally forgot how easy they are. :P
Thank you!!!!
This is solved!

 

For those wondering reading this in the future here is the key:
 

		if (event.getState().getBlock() == Blocks.BLOCK_YOU_WANT_TO_EDIT)
		{
				event.getDrops().add(new ItemStack(YourModItemOrBlock.Item_Or_Block, Number_Of_It)); //This adds the item or block you want to 
																									// You want to add to the block.
				ListIterator<ItemStack> drops = event.getDrops().listIterator(); //This Gets the drop and puts it into a list of ItemStacks
				while(drops.hasNext()) // Using a while loop so we don't get out of the bounds of the list
					{
					ItemStack element = drops.next(); //gets the next itemstack in the list
					if(element.getItem() == Block/Item.BLOCK_OR_ITEM_YOU_WANT_TO_EDIT) // Does the list Item also match the item you want gone?
						{					
						drops.remove();	//remove it!
						}
					}
			}



Now that is some pretty beautiful code. Thanks for the help everyone I learned a TON from this little exercise!

Link to comment
Share on other sites

4 hours ago, diesieben07 said:

For the future, this feature is called generics, and they are much more powerful than what you have seen here.

Generics are fucking awesome and it's the one tool in the toolbox I don't have when working in Unity that I miss (or at least, not to the same degree: there's typed lists and such, but everything needs to be strictly defined at compile time: no contravariance or covaraiance which means that I can't generically define delegate methods).

 

Also, this method declaration is insane:

https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/flowers/OreFlowersBase.java#L204

It can technically be simplified, but not by a whole lot.

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.

Link to comment
Share on other sites

2 hours ago, Draco18s said:

Generics are fucking awesome and it's the one tool in the toolbox I don't have when working in Unity that I miss (or at least, not to the same degree: there's typed lists and such, but everything needs to be strictly defined at compile time: no contravariance or covaraiance which means that I can't generically define delegate methods).

 

Also, this method declaration is insane:

https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/flowers/OreFlowersBase.java#L204

It can technically be simplified, but not by a whole lot.

Generics expand to meet the expanding generics? Lol. 
 

Link to comment
Share on other sites

2 hours ago, olrustyeye said:

Generics expand to meet the expanding generics? Lol.

I wanted a single function that would handle the linkage between "an ore block" and "a flower block" so that the flowers could be used to indicate the presence of ore in the area. Which involves 3 different block states: the ore, the flower, and the desert flower.  And two properties and their corresponding values (for the flower and desert flower respectively).

 

It's the craziest method signature I've ever written.

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.

Link to comment
Share on other sites

1) I don't like the redundancy between lit and unlit redstone. Can't one boolean expression test for both?

 

2) If removing from a list is problematic, then maybe you could build a replacement list that skips the elements you would delete and then swaps lists at the end.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I solved it! The recipe was not being readed, basically; All I had to do is set the Items in the Json as Arrays Before: "item": { "minecraft:blue_dye" } After:  "item": [ { "minecraft:blue_dye" } ] That's all, I added compatibility with JEI to verify and everything works, thanks anyways!
    • iguanatweakstconstruct is conflicting with codechickencore - make a test without iguanatweakstconstruct
    • The game crashed whilst rendering item Error: java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V              ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 10/5/24 7:20 PM Description: Rendering item java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400)     at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace:     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563) -- Item being rendered -- Details:     Item Type: codechicken.microblock.ItemSaw@228151e5     Item Aux: 0     Item NBT: null     Item Foil: false Stacktrace:     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400) -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative     Mouse location: Scaled: (276, 312). Absolute: (553, 335)     Screen size: Scaled: (640, 480). Absolute: (1280, 960). Scale factor of 2 -- Affected level -- Details:     Level name: MpServer     All players: 1 total; [GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00]]     Chunk stats: MultiplayerChunkCache: 234, 243     Level seed: 0     Level generator: ID 04 - BIOMESOP, ver 0. Features enabled: false     Level generator options:      Level spawn location: World: (-552,64,916), Chunk: (at 8,4,4 in -35,57; contains blocks -560,0,912 to -545,255,927), Region: (-2,1; contains chunks -64,32 to -33,63, blocks -1024,0,512 to -513,255,1023)     Level time: 21063 game time, 21063 day time     Level dimension: 0     Level storage version: 0x00000 - Unknown?     Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)     Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false     Forced entities: 607 total; [MoCEntityDuck['Duck'/126977, l='MpServer', x=-1079.50, y=65.00, z=1571.50], MoCEntityDeer['Deer'/114691, l='MpServer', x=-915.50, y=72.00, z=1460.50], EntityChicken['Chicken'/126979, l='MpServer', x=-1034.47, y=66.00, z=1561.44], EntityChicken['Chicken'/126981, l='MpServer', x=-1036.47, y=65.00, z=1570.47], MoCEntitySnake['Snake'/114695, l='MpServer', x=-912.00, y=73.00, z=1452.50], EntityChicken['Chicken'/126983, l='MpServer', x=-1032.59, y=65.00, z=1570.50], MoCEntityBigCat['BigCat'/114697, l='MpServer', x=-1126.50, y=64.00, z=1457.50], EntityChicken['Chicken'/126985, l='MpServer', x=-1037.22, y=65.00, z=1571.69], MoCEntityTurkey['Turkey'/126987, l='MpServer', x=-1063.31, y=64.00, z=1561.91], MoCEntityTurkey['Turkey'/126989, l='MpServer', x=-1061.50, y=64.00, z=1563.50], EntityItem['item.item.dyePowder.black'/135182, l='MpServer', x=-1091.94, y=17.13, z=1527.47], VengeanceSpirit['Vengeance Spirit'/135180, l='MpServer', x=-1089.44, y=38.00, z=1526.50], EntityItem['item.item.ItemSquid'/135184, l='MpServer', x=-1089.97, y=33.13, z=1528.28], MoCEntityMouse['Mouse'/114706, l='MpServer', x=-1031.91, y=74.00, z=1457.41], MoCEntitySnake['Snake'/126994, l='MpServer', x=-1060.34, y=65.00, z=1564.16], EntitySkeleton['Skeleton'/124949, l='MpServer', x=-1068.50, y=66.00, z=1492.50], EntityItem['item.tile.mushroom11'/133142, l='MpServer', x=-1057.94, y=8.13, z=1574.72], MoCEntityBear['Bear'/114708, l='MpServer', x=-1036.81, y=74.00, z=1439.81], EntityZombie['Zombie'/124951, l='MpServer', x=-1074.50, y=66.00, z=1494.50], EntitySpider['Spider'/137236, l='MpServer', x=-2.19, y=-61.31, z=16.85], MoCEntitySnake['Snake'/127000, l='MpServer', x=-1058.16, y=65.00, z=1566.22], EntitySkeleton['Skeleton'/124955, l='MpServer', x=-1066.50, y=25.00, z=1524.50], VengeanceSpirit['Vengeance Spirit'/137244, l='MpServer', x=-990.28, y=12.00, z=1534.72], MoCEntityOstrich['Ostrich'/127013, l='MpServer', x=-990.09, y=69.00, z=1578.72], MoCEntityMouse['Mouse'/127015, l='MpServer', x=-983.50, y=70.00, z=1569.50], EntitySheep['Sheep'/127017, l='MpServer', x=-969.22, y=69.00, z=1566.22], EntitySheep['Sheep'/127019, l='MpServer', x=-970.25, y=69.00, z=1567.84], MoCEntityBear['Bear'/114733, l='MpServer', x=-1023.81, y=72.00, z=1463.06], EntitySheep['Sheep'/127021, l='MpServer', x=-972.88, y=69.00, z=1566.47], EntitySheep['Sheep'/127023, l='MpServer', x=-971.69, y=69.00, z=1567.94], MoCEntityTurkey['Turkey'/114744, l='MpServer', x=-1049.50, y=72.00, z=1462.88], MoCEntityTurkey['Turkey'/114746, l='MpServer', x=-1055.44, y=71.00, z=1464.66], EntityZombie['Zombie'/137280, l='MpServer', x=9.86, y=-60.66, z=16.34], MoCEntityHorse['WildHorse'/127057, l='MpServer', x=-932.81, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127061, l='MpServer', x=-934.50, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127069, l='MpServer', x=-934.50, y=63.00, z=1572.50], EntityItem['item.item.string'/131166, l='MpServer', x=-1028.69, y=20.13, z=1614.72], EntityItem['item.item.string'/131167, l='MpServer', x=-1038.88, y=19.13, z=1582.22], MoCEntityHorse['WildHorse'/127073, l='MpServer', x=-932.50, y=63.00, z=1571.50], EntityItem['item.item.string'/131168, l='MpServer', x=-1038.88, y=19.13, z=1578.13], EntityLavaMonster['Lava Monster'/143460, l='MpServer', x=-1106.78, y=3.05, z=1565.50], MoCEntityBunny['Bunny'/127078, l='MpServer', x=-928.50, y=64.00, z=1567.50], MoCEntityBunny['Bunny'/127080, l='MpServer', x=-931.03, y=64.00, z=1569.28], MoCEntityBunny['Bunny'/127082, l='MpServer', x=-932.50, y=63.00, z=1566.50], EntityZombie['Zombie'/137328, l='MpServer', x=3.89, y=-58.22, z=25.04], EntityLavaMonster['Lava Monster'/137352, l='MpServer', x=-1102.50, y=3.30, z=1579.94], EntityItem['item.tile.gravel'/131219, l='MpServer', x=-1027.13, y=8.13, z=1597.13], EntityZombie['Zombie'/137363, l='MpServer', x=9.90, y=-57.90, z=24.85], EntityItem['item.tile.gravel'/131235, l='MpServer', x=-1041.94, y=15.13, z=1566.88], EntityZombie['Zombie'/137414, l='MpServer', x=15.96, y=-56.92, z=24.26], EntitySkeleton['Skeleton'/137412, l='MpServer', x=29.05, y=-56.84, z=3.10], EntityLavaMonster['Lava Monster'/139494, l='MpServer', x=-1072.50, y=60.18, z=1558.03], EntityItem['item.tile.gravel'/131301, l='MpServer', x=-993.16, y=20.13, z=1570.09], MoCEntityBoar['Boar'/119018, l='MpServer', x=-902.50, y=68.00, z=1497.50], MoCEntityBoar['Boar'/119020, l='MpServer', x=-903.50, y=67.00, z=1496.50], MoCEntityElephant['Elephant'/135410, l='MpServer', x=-980.44, y=62.17, z=1646.16], EntityHorse['Horse'/129264, l='MpServer', x=-1109.50, y=64.00, z=1594.50], MoCEntityBunny['Bunny'/129266, l='MpServer', x=-1094.50, y=64.00, z=1599.50], EntitySpider['Spider'/135414, l='MpServer', x=-12.53, y=-47.53, z=40.79], MoCEntityBunny['Bunny'/129268, l='MpServer', x=-1089.56, y=64.00, z=1600.63], MoCEntityBunny['Bunny'/129270, l='MpServer', x=-1095.50, y=64.00, z=1602.50], EntityItem['item.item.string'/131327, l='MpServer', x=-1043.34, y=18.13, z=1584.88], EntityItem['item.tile.actuallyadditions.blockBlackLotus'/127230, l='MpServer', x=-1088.41, y=65.13, z=1566.53], MoCEntityMouse['Mouse'/129281, l='MpServer', x=-1072.72, y=63.00, z=1600.50], MoCEntityMouse['Mouse'/129283, l='MpServer', x=-1073.19, y=63.00, z=1600.50], EntityItem['item.item.gysahl_seeds'/141568, l='MpServer', x=-969.25, y=65.13, z=1527.13], EntityCow['Cow'/129285, l='MpServer', x=-1064.50, y=63.00, z=1596.50], EntityCow['Cow'/129287, l='MpServer', x=-1067.78, y=63.00, z=1597.50], EntityCow['Cow'/129289, l='MpServer', x=-1074.03, y=65.00, z=1588.09], MoCEntityBird['Bird'/135434, l='MpServer', x=-941.50, y=63.00, z=1642.50], EntityCow['Cow'/129291, l='MpServer', x=-1066.19, y=63.00, z=1597.50], MoCEntitySnake['Snake'/135432, l='MpServer', x=-951.78, y=68.00, z=1641.47], MoCEntityMole['Mole'/129293, l='MpServer', x=-1075.50, y=64.00, z=1594.50], MoCEntityBird['Bird'/135438, l='MpServer', x=-943.22, y=65.00, z=1647.47], MoCEntityBird['Bird'/135436, l='MpServer', x=-942.50, y=64.00, z=1645.50], MoCEntityCricket['Cricket'/131350, l='MpServer', x=-1085.50, y=71.00, z=1472.50], MoCEntityButterfly['ButterFly'/131354, l='MpServer', x=-1082.50, y=63.00, z=1601.50], MoCEntityButterfly['ButterFly'/131352, l='MpServer', x=-1081.50, y=63.00, z=1605.50], EntityItem['item.tile.stonebrick'/127261, l='MpServer', x=-1083.94, y=32.13, z=1565.81], MoCEntityDragonfly['DragonFly'/131356, l='MpServer', x=-986.59, y=67.00, z=1510.44], EntityItem['item.tile.stonebrick'/127263, l='MpServer', x=-1085.53, y=31.13, z=1561.94], EntityItem['item.tile.stonebrick'/127262, l='MpServer', x=-1083.13, y=38.13, z=1560.91], EntityItem['item.tile.stonebrick'/127264, l='MpServer', x=-1084.19, y=31.13, z=1564.78], MoCEntitySnail['Snail'/131360, l='MpServer', x=-980.50, y=67.00, z=1514.50], EntityItem['item.tile.stonebrick'/127266, l='MpServer', x=-1083.13, y=32.13, z=1565.97], MoCEntityGoat['Goat'/129322, l='MpServer', x=-1021.59, y=64.00, z=1603.66], MoCEntityBear['Bear'/129328, l='MpServer', x=-1016.50, y=64.00, z=1603.50], EntityItem['item.item.feather'/137523, l='MpServer', x=-969.84, y=67.13, z=1498.31], VengeanceSpirit['Vengeance Spirit'/137521, l='MpServer', x=-970.84, y=66.00, z=1495.34], EntityItem['item.item.chickenRaw'/137524, l='MpServer', x=-970.75, y=67.13, z=1498.63], MoCEntityTurkey['Turkey'/135484, l='MpServer', x=-912.47, y=64.00, z=1644.22], EntityBat['Bat'/131392, l='MpServer', x=-958.53, y=30.00, z=1574.66], MoCEntityFirefly['Firefly'/131398, l='MpServer', x=-1070.53, y=64.00, z=1508.47], MoCEntityFirefly['Firefly'/131396, l='MpServer', x=-1071.50, y=64.00, z=1506.50], MoCEntityFirefly['Firefly'/131402, l='MpServer', x=-1070.34, y=64.00, z=1508.56], MoCEntityFirefly['Firefly'/131400, l='MpServer', x=-1066.50, y=64.00, z=1508.50], MoCEntityFox['Fox'/115020, l='MpServer', x=-1135.50, y=62.31, z=1462.50], MoCEntityTurkey['Turkey'/129358, l='MpServer', x=-984.25, y=67.00, z=1589.56], MoCEntityTurkey['Turkey'/129360, l='MpServer', x=-985.38, y=67.00, z=1591.09], MoCEntityEnt['Ent'/129362, l='MpServer', x=-995.22, y=66.00, z=1600.25], MoCEntityFirefly['Firefly'/131412, l='MpServer', x=-914.72, y=68.00, z=1559.44], MoCEntitySnake['Snake'/129366, l='MpServer', x=-999.50, y=66.00, z=1592.50], EntityHorse['Horse'/129383, l='MpServer', x=-967.81, y=70.00, z=1601.00], EntitySkeleton['Skeleton'/135525, l='MpServer', x=6.48, y=-45.53, z=44.11], EntitySquid['Squid'/131434, l='MpServer', x=-1096.25, y=31.00, z=1524.06], EntityItem['item.tile.gravel'/141675, l='MpServer', x=-1026.47, y=20.13, z=1613.50], EntityHorse['Horse'/129387, l='MpServer', x=-972.50, y=69.00, z=1596.50], EntityHorse['Horse'/129389, l='MpServer', x=-974.50, y=69.00, z=1595.50], EntityHorse['Horse'/129391, l='MpServer', x=-972.50, y=69.00, z=1593.50], MoCEntityBoar['Boar'/129393, l='MpServer', x=-975.78, y=68.00, z=1592.50], MoCEntityBoar['Boar'/129395, l='MpServer', x=-974.47, y=68.00, z=1592.50], EntityZombie['Zombie'/135547, l='MpServer', x=-1046.41, y=67.00, z=1476.94], EntityLavaMonster['Lava Monster'/125313, l='MpServer', x=-1022.50, y=29.24, z=1527.50], EntitySpider['Spider'/135557, l='MpServer', x=-1040.78, y=66.00, z=1487.13], EntityCreeper['Creeper'/127384, l='MpServer', x=-1067.50, y=20.00, z=1531.50], EntityCreeper['Creeper'/127386, l='MpServer', x=-1065.50, y=20.00, z=1531.50], EntityHuman['sanandreasMC'/135615, l='MpServer', x=-955.50, y=30.00, z=1567.50], MoCEntityOgre['Ogre'/135619, l='MpServer', x=-959.38, y=30.00, z=1565.22], EntityHuman['powercrystals'/135617, l='MpServer', x=-956.66, y=30.00, z=1567.34], EntityHuman['amadornes'/135621, l='MpServer', x=-958.50, y=30.00, z=1561.50], EntityLavaMonster['Lava Monster'/137669, l='MpServer', x=-1064.50, y=60.38, z=1559.50], MoCEntityBoar['Boar'/129490, l='MpServer', x=-1038.50, y=63.00, z=1609.47], MoCEntityMouse['Mouse'/129492, l='MpServer', x=-1044.91, y=63.00, z=1610.53], EntitySkeleton['Skeleton'/137684, l='MpServer', x=-29.81, y=-43.84, z=35.67], EntityChicken['Chicken'/129512, l='MpServer', x=-1054.50, y=63.00, z=1611.50], EntityChicken['Chicken'/129518, l='MpServer', x=-1054.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129520, l='MpServer', x=-1053.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129522, l='MpServer', x=-1051.50, y=63.00, z=1610.50], MoCEntityTurkey['Turkey'/129534, l='MpServer', x=-955.50, y=69.00, z=1595.63], MoCEntityGoat['Goat'/129542, l='MpServer', x=-952.94, y=69.00, z=1601.41], MoCEntityGoat['Goat'/129544, l='MpServer', x=-952.88, y=69.00, z=1605.66], MoCEntityGoat['Goat'/129546, l='MpServer', x=-960.84, y=70.00, z=1596.63], MoCEntityGoat['Goat'/129548, l='MpServer', x=-963.84, y=70.00, z=1595.66], MoCEntityGoat['Goat'/129550, l='MpServer', x=-960.50, y=70.00, z=1593.50], VengeanceSpirit['Vengeance Spirit'/139838, l='MpServer', x=-1100.56, y=17.00, z=1549.59], EntityItem['item.item.redstone'/129601, l='MpServer', x=-994.16, y=20.13, z=1568.69], EntityItem['item.item.redstone'/129600, l='MpServer', x=-995.88, y=15.13, z=1570.13], VengeanceSpirit['Vengeance Spirit'/139843, l='MpServer', x=-1101.66, y=38.00, z=1551.69], EntityItem['item.item.redstone'/129603, l='MpServer', x=-993.88, y=15.13, z=1568.81], EntityItem['item.tile.pressurePlate'/129605, l='MpServer', x=-1003.19, y=17.13, z=1602.63], EntityItem['item.tile.notGate'/129604, l='MpServer', x=-989.13, y=14.13, z=1568.88], EntityItem['item.item.redstone'/129607, l='MpServer', x=-997.13, y=18.13, z=1599.13], EntityDepthsGhoul['Dr. Orange'/111180, l='MpServer', x=-32.28, y=-26.62, z=-48.18], EntityItem['item.item.string'/131696, l='MpServer', x=-1027.31, y=19.13, z=1614.84], EntityItem['item.item.string'/131700, l='MpServer', x=-1044.75, y=18.13, z=1582.13], EntityLavaMonster['Lava Monster'/125573, l='MpServer', x=-998.75, y=3.24, z=1481.50], MoCEntityDuck['Duck'/113287, l='MpServer', x=-910.50, y=76.00, z=1426.50], VengeanceSpirit['Vengeance Spirit'/135822, l='MpServer', x=-1086.53, y=33.00, z=1552.47], EntityItem['item.item.seeds'/135821, l='MpServer', x=-1052.66, y=61.13, z=1507.88], EntityItem['item.item.string'/131734, l='MpServer', x=-1083.19, y=12.13, z=1611.94], MoCEntityTurkey['Turkey'/117411, l='MpServer', x=-1135.50, y=64.00, z=1491.50], EntityItem['item.tile.gravel'/144042, l='MpServer', x=-1026.47, y=20.99, z=1615.50], EntityItem['item.tile.gravel'/144041, l='MpServer', x=-1026.50, y=20.99, z=1614.47], MoCEntityFox['Fox'/117422, l='MpServer', x=-1116.50, y=65.00, z=1482.50], EntityItem['item.item.string'/131762, l='MpServer', x=-1040.13, y=18.13, z=1580.13], MoCEntityGoat['Goat'/113329, l='MpServer', x=-925.28, y=76.00, z=1430.53], MoCEntityHorse['WildHorse'/129714, l='MpServer', x=-927.50, y=64.00, z=1593.50], MoCEntityGoat['Goat'/113333, l='MpServer', x=-922.50, y=76.00, z=1430.50], MoCEntityBird['Bird'/117428, l='MpServer', x=-1119.50, y=65.00, z=1484.50], MoCEntityGoat['Goat'/113335, l='MpServer', x=-929.53, y=76.00, z=1433.34], MoCEntityBird['Bird'/117430, l='MpServer', x=-1118.50, y=65.00, z=1484.50], EntitySheep['Sheep'/117432, l='MpServer', x=-1088.47, y=66.00, z=1491.47], EntitySheep['Sheep'/117434, l='MpServer', x=-1087.03, y=67.00, z=1491.50], EntitySheep['Sheep'/117436, l='MpServer', x=-1090.25, y=66.00, z=1492.78], EntitySheep['Sheep'/117438, l='MpServer', x=-1089.13, y=66.00, z=1492.72], EntityPig['Pig'/117442, l='MpServer', x=-1092.78, y=66.00, z=1491.09], MoCEntityHorse['WildHorse'/129730, l='MpServer', x=-923.59, y=64.00, z=1595.66], EntityPig['Pig'/117444, l='MpServer', x=-1091.03, y=66.00, z=1489.47], MoCEntityHorse['WildHorse'/129732, l='MpServer', x=-925.50, y=64.00, z=1596.50], EntityPig['Pig'/117446, l='MpServer', x=-1089.97, y=66.00, z=1491.34], EntityPig['Pig'/117448, l='MpServer', x=-1092.66, y=66.00, z=1489.19], MoCEntityEnt['Ent'/113355, l='MpServer', x=-988.97, y=71.00, z=1432.75], MoCEntityOstrich['Ostrich'/129741, l='MpServer', x=-913.50, y=64.00, z=1594.50], EntityLavaMonster['Lava Monster'/131796, l='MpServer', x=-1059.50, y=2.44, z=1569.50], MoCEntityBoar['Boar'/117464, l='MpServer', x=-1076.78, y=68.00, z=1485.78], MoCEntityBoar['Boar'/117466, l='MpServer', x=-1075.19, y=68.00, z=1484.47], EntityHorse['Horse'/117470, l='MpServer', x=-1056.50, y=65.00, z=1489.50], EntityHorse['Horse'/117472, l='MpServer', x=-1056.94, y=65.00, z=1487.81], EntitySquid['Squid'/133857, l='MpServer', x=-1085.50, y=55.38, z=1518.56], EntityHorse['Horse'/117476, l='MpServer', x=-1061.84, y=66.00, z=1487.38], EntityHorse['Horse'/117481, l='MpServer', x=-1009.91, y=69.00, z=1495.13], EntityLavaMonster['Lava Monster'/137976, l='MpServer', x=-1107.91, y=3.24, z=1565.50], MoCEntityBird['Bird'/113404, l='MpServer', x=-1082.34, y=72.00, z=1428.34], MoCEntityMouse['Mouse'/117507, l='MpServer', x=-1017.53, y=69.00, z=1497.72], MoCEntityMouse['Mouse'/117509, l='MpServer', x=-1011.56, y=68.00, z=1512.13], EntityCow['Cow'/117511, l='MpServer', x=-1015.25, y=65.00, z=1484.50], EntityCow['Cow'/117513, l='MpServer', x=-1004.22, y=67.00, z=1483.66], EntityCow['Cow'/117515, l='MpServer', x=-997.06, y=67.00, z=1484.97], EntityCow['Cow'/117517, l='MpServer', x=-1013.47, y=65.00, z=1480.69], MoCEntityBird['Bird'/117519, l='MpServer', x=-1001.25, y=69.00, z=1489.28], MoCEntityBird['Bird'/117521, l='MpServer', x=-998.88, y=68.00, z=1488.41], MoCEntityBird['Bird'/117523, l='MpServer', x=-994.75, y=67.00, z=1488.00], EntityItem['item.item.string'/131857, l='MpServer', x=-1027.34, y=18.13, z=1615.81], MoCEntityFox['Fox'/117527, l='MpServer', x=-995.19, y=68.00, z=1496.22], MoCEntityFox['Fox'/117530, l='MpServer', x=-925.50, y=72.00, z=1492.50], EntityItem['item.item.string'/131872, l='MpServer', x=-1040.88, y=18.13, z=1580.13], EntityItem['item.item.barley.seed'/133958, l='MpServer', x=-1055.25, y=67.13, z=1532.97], EntityItem['item.tile.mushroom15'/131918, l='MpServer', x=-993.63, y=19.13, z=1603.16], EntityItem['item.item.string'/127843, l='MpServer', x=-978.81, y=20.13, z=1550.16], EntityItem['item.item.string'/127842, l='MpServer', x=-981.16, y=19.13, z=1547.09], EntityItem['item.item.string'/131937, l='MpServer', x=-1042.66, y=18.13, z=1583.13], EntityLavaMonster['Lava Monster'/140157, l='MpServer', x=-962.50, y=43.97, z=1546.50], GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityItem['item.item.string'/131978, l='MpServer', x=-1015.84, y=20.13, z=1608.47], EntityItem['item.tile.caveplant0'/131977, l='MpServer', x=-1017.16, y=22.13, z=1610.13], EntityItem['item.item.agricraft:seedPotato'/138128, l='MpServer', x=-1018.25, y=69.13, z=1501.19], EntityItem['item.tile.gravel'/138129, l='MpServer', x=-1042.50, y=21.13, z=1580.50], EntityItem['item.tile.mushroom14'/132007, l='MpServer', x=-1004.38, y=6.13, z=1491.22], EntityItem['item.tile.gravel'/138158, l='MpServer', x=-1041.50, y=20.13, z=1576.53], EntityItem['item.tile.notGate'/129990, l='MpServer', x=-998.13, y=20.13, z=1587.13], MoCEntityRaccoon['Raccoon'/117721, l='MpServer', x=-1104.56, y=59.00, z=1510.41], MoCEntityRaccoon['Raccoon'/117723, l='MpServer', x=-1109.50, y=64.00, z=1507.50], MoCEntityMouse['Mouse'/117727, l='MpServer', x=-1109.50, y=62.00, z=1509.50], MoCEntityBunny['Bunny'/117729, l='MpServer', x=-1090.50, y=63.00, z=1509.50], MoCEntityBunny['Bunny'/117731, l='MpServer', x=-1094.50, y=64.00, z=1508.50], MoCEntityMouse['Mouse'/117733, l='MpServer', x=-1068.50, y=64.00, z=1506.50], EntitySkeleton['Skeleton'/136166, l='MpServer', x=-10.69, y=-47.53, z=41.12], MoCEntityMouse['Mouse'/117735, l='MpServer', x=-1069.50, y=64.00, z=1506.50], MoCEntityBoar['Boar'/117741, l='MpServer', x=-1057.59, y=65.00, z=1510.50], MoCEntityBoar['Boar'/117743, l='MpServer', x=-1058.19, y=64.00, z=1507.50], EntitySheep['Sheep'/117745, l='MpServer', x=-1056.13, y=65.00, z=1498.84], MoCEntityMouse['Mouse'/125936, l='MpServer', x=-1117.50, y=11.80, z=1555.50], EntityLavaMonster['Lava Monster'/140275, l='MpServer', x=-1054.50, y=2.53, z=1553.50], EntitySheep['Sheep'/117747, l='MpServer', x=-1059.25, y=65.00, z=1502.66], EntitySheep['Sheep'/117749, l='MpServer', x=-1058.03, y=64.00, z=1502.47], EntitySheep['Sheep'/117751, l='MpServer', x=-1059.66, y=64.00, z=1504.03], MoCEntityBigCat['BigCat'/136190, l='MpServer', x=-1025.50, y=64.00, z=1660.50], MoCEntityBigCat['BigCat'/136188, l='MpServer', x=-1023.50, y=64.00, z=1658.50], MoCEntityBoar['Boar'/125954, l='MpServer', x=-1084.50, y=59.00, z=1552.50], MoCEntityBunny['Bunny'/125961, l='MpServer', x=-1070.50, y=65.00, z=1556.50], MoCEntityBunny['Bunny'/125971, l='MpServer', x=-1069.50, y=65.00, z=1552.50], MoCEntityBoar['Boar'/125974, l='MpServer', x=-1051.56, y=64.00, z=1558.22], MoCEntityBoar['Boar'/125976, l='MpServer', x=-1043.34, y=63.00, z=1559.83], MoCEntityDeer['Deer'/115739, l='MpServer', x=-1134.50, y=65.00, z=1473.50], MoCEntityMouse['Mouse'/125979, l='MpServer', x=-1042.08, y=67.00, z=1549.38], MoCEntityDeer['Deer'/115741, l='MpServer', x=-1116.50, y=66.00, z=1474.50], MoCEntityMouse['Mouse'/125981, l='MpServer', x=-1043.56, y=66.00, z=1552.26], MoCEntityDeer['Deer'/115743, l='MpServer', x=-1113.50, y=64.00, z=1478.50], MoCEntitySnake['Snake'/125983, l='MpServer', x=-1029.00, y=67.00, z=1549.50], MoCEntityBigCat['BigCat'/115745, l='MpServer', x=-1100.09, y=71.00, z=1469.63], MoCEntityBigCat['BigCat'/115747, l='MpServer', x=-1101.50, y=69.00, z=1476.50], MoCEntityBunny['Bunny'/136224, l='MpServer', x=-957.50, y=64.00, z=1662.50], MoCEntityBunny['Bunny'/115749, l='MpServer', x=-1104.50, y=69.00, z=1476.50], MoCEntitySnake['Snake'/125989, l='MpServer', x=-1027.16, y=67.00, z=1545.50], MoCEntityBunny['Bunny'/115751, l='MpServer', x=-1103.50, y=68.00, z=1477.50], MoCEntityDeer['Deer'/115753, l='MpServer', x=-1099.22, y=69.00, z=1475.78], MoCEntityBear['Bear'/125993, l='MpServer', x=-1024.63, y=63.74, z=1555.38], MoCEntityGoat['Goat'/134187, l='MpServer', x=-977.16, y=65.00, z=1615.50], MoCEntityDeer['Deer'/115755, l='MpServer', x=-1100.81, y=69.00, z=1474.47], MoCEntityDuck['Duck'/125995, l='MpServer', x=-1031.62, y=65.81, z=1575.40], MoCEntityMouse['Mouse'/125997, l='MpServer', x=-1017.47, y=64.00, z=1567.38], MoCEntityBird['Bird'/136239, l='MpServer', x=-939.50, y=66.00, z=1661.50], MoCEntityMouse['Mouse'/125999, l='MpServer', x=-1026.37, y=65.00, z=1563.62], EntityHorse['Horse'/115759, l='MpServer', x=-1093.50, y=69.00, z=1476.50], EntityItem['item.item.string'/132147, l='MpServer', x=-1025.25, y=20.13, z=1613.31], MoCEntityBird['Bird'/136241, l='MpServer', x=-938.78, y=65.00, z=1660.41], MoCEntityBear['Bear'/126007, l='MpServer', x=-1020.31, y=64.44, z=1554.56], EntityHorse['Horse'/115767, l='MpServer', x=-1095.87, y=69.00, z=1477.13], EntityHorse['Horse'/115769, l='MpServer', x=-1090.03, y=67.00, z=1483.91], EntityHorse['Horse'/115773, l='MpServer', x=-1092.59, y=68.00, z=1479.09], MoCEntityGoat['Goat'/136255, l='MpServer', x=-944.34, y=66.00, z=1661.34], EntityHorse['Horse'/115779, l='MpServer', x=-1093.50, y=70.00, z=1474.50], MoCEntityOstrich['Ostrich'/115781, l='MpServer', x=-1087.50, y=69.00, z=1476.50], MoCEntityBoar['Boar'/128068, l='MpServer', x=-1106.78, y=64.00, z=1577.78], MoCEntityOstrich['Ostrich'/115783, l='MpServer', x=-1079.50, y=71.00, z=1469.50], MoCEntityBoar['Boar'/128070, l='MpServer', x=-1105.19, y=64.00, z=1576.19], MoCEntityBird['Bird'/115787, l='MpServer', x=-1019.69, y=71.00, z=1469.44], MoCEntityBoar['Boar'/126026, l='MpServer', x=-1009.22, y=68.00, z=1572.09], MoCEntityBird['Bird'/115789, l='MpServer', x=-1006.91, y=70.00, z=1473.78], MoCEntityBoar['Boar'/126028, l='MpServer', x=-1028.50, y=65.00, z=1576.25], MoCEntityDuck['Duck'/115791, l='MpServer', x=-984.56, y=67.00, z=1463.13], EntityItem['item.item.agricraft:seedPotato'/126031, l='MpServer', x=-1019.78, y=64.13, z=1561.59], EntityItem['item.item.agricraft:seedPotato'/126030, l='MpServer', x=-1020.56, y=65.13, z=1562.19], MoCEntityOstrich['Ostrich'/115793, l='MpServer', x=-968.50, y=68.00, z=1469.50], MoCEntityBoar['Boar'/128081, l='MpServer', x=-1079.50, y=64.00, z=1590.50], MoCEntityRaccoon['Raccoon'/126032, l='MpServer', x=-1012.28, y=69.00, z=1545.16], MoCEntityKitty['Kitty'/115795, l='MpServer', x=-980.03, y=69.00, z=1467.22], MoCEntityBoar['Boar'/128083, l='MpServer', x=-1079.50, y=65.00, z=1589.50], EntityPig['Pig'/126034, l='MpServer', x=-1002.38, y=72.00, z=1538.47], EntityItem['item.item.agricraft:seedCarrot'/142417, l='MpServer', x=-1052.28, y=61.13, z=1508.31], MoCEntityKitty['Kitty'/115797, l='MpServer', x=-988.38, y=68.00, z=1467.16], MoCEntityTurkey['Turkey'/128085, l='MpServer', x=-1070.75, y=64.00, z=1589.84], EntityPig['Pig'/126036, l='MpServer', x=-1006.86, y=72.00, z=1536.90], EntityHorse['Horse'/128087, l='MpServer', x=-1059.50, y=64.00, z=1577.50], EntityPig['Pig'/126038, l='MpServer', x=-1015.72, y=66.00, z=1548.50], MoCEntitySnake['Snake'/115801, l='MpServer', x=-975.50, y=67.00, z=1475.50], EntityHorse['Horse'/128089, l='MpServer', x=-1061.50, y=64.00, z=1576.50], EntityPig['Pig'/126040, l='MpServer', x=-1001.35, y=72.70, z=1538.47], MoCEntitySnake['Snake'/115805, l='MpServer', x=-977.50, y=67.00, z=1478.50], MoCEntityBunny['Bunny'/115809, l='MpServer', x=-966.00, y=67.00, z=1474.66], EntityHorse['Horse'/128097, l='MpServer', x=-1058.50, y=64.00, z=1579.50], MoCEntityBunny['Bunny'/115811, l='MpServer', x=-967.50, y=67.00, z=1472.50], MoCEntityBunny['Bunny'/115813, l='MpServer', x=-965.50, y=67.00, z=1470.50], EntityPig['Pig'/126053, l='MpServer', x=-970.50, y=71.00, z=1554.50], EntityHorse['Horse'/128101, l='MpServer', x=-1060.16, y=64.00, z=1574.06], MoCEntityBird['Bird'/115815, l='MpServer', x=-919.84, y=72.00, z=1467.72], EntityPig['Pig'/126055, l='MpServer', x=-973.50, y=72.00, z=1553.50], EntityPig['Pig'/126057, l='MpServer', x=-971.78, y=72.00, z=1552.47], MoCEntityFox['Fox'/128104, l='MpServer', x=-1048.47, y=64.00, z=1581.97], EntityPig['Pig'/126059, l='MpServer', x=-970.19, y=72.00, z=1553.81], MoCEntityGoat['Goat'/128106, l='MpServer', x=-1058.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115821, l='MpServer', x=-917.84, y=72.00, z=1464.16], EntityCow['Cow'/126061, l='MpServer', x=-981.38, y=72.00, z=1559.69], MoCEntityGoat['Goat'/128108, l='MpServer', x=-1060.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115823, l='MpServer', x=-916.50, y=72.00, z=1469.50], EntityCow['Cow'/126063, l='MpServer', x=-984.38, y=72.00, z=1558.22], EntityCow['Cow'/126065, l='MpServer', x=-984.75, y=72.00, z=1560.22], EntityCow['Cow'/126067, l='MpServer', x=-987.81, y=72.00, z=1558.22], MoCEntityMouse['Mouse'/113778, l='MpServer', x=-1086.50, y=72.00, z=1437.50], MoCEntityBoar['Boar'/126069, l='MpServer', x=-946.50, y=64.00, z=1550.50], MoCEntityGoat['Goat'/134262, l='MpServer', x=-974.84, y=64.00, z=1617.50], MoCEntityMouse['Mouse'/113780, l='MpServer', x=-1086.50, y=72.00, z=1435.50], EntityCow['Cow'/128116, l='MpServer', x=-1043.50, y=64.00, z=1591.50], MoCEntityBoar['Boar'/126071, l='MpServer', x=-949.50, y=64.00, z=1550.50], EntityCow['Cow'/128118, l='MpServer', x=-1043.50, y=64.00, z=1589.50], EntityCow['Cow'/128120, l='MpServer', x=-1045.50, y=64.00, z=1589.50], MoCEntitySnake['Snake'/126075, l='MpServer', x=-949.50, y=64.00, z=1548.50], EntityCow['Cow'/128122, l='MpServer', x=-1042.50, y=65.00, z=1587.50], EntityChicken['Chicken'/128124, l='MpServer', x=-1022.50, y=65.00, z=1583.50], EntityItem['item.item.string'/134271, l='MpServer', x=-1028.13, y=19.13, z=1616.72], MoCEntityKitty['Kitty'/134268, l='MpServer', x=-1095.56, y=63.00, z=1617.53], MoCEntityBunny['Bunny'/134274, l='MpServer', x=-1025.50, y=63.00, z=1620.50], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/142466, l='MpServer', x=-1034.69, y=67.13, z=1510.75], EntityChicken['Chicken'/128128, l='MpServer', x=-1026.34, y=64.00, z=1586.44], MoCEntityBunny['Bunny'/134272, l='MpServer', x=-1029.50, y=63.00, z=1622.50], EntityChicken['Chicken'/128130, l='MpServer', x=-1018.56, y=66.00, z=1575.56], MoCEntityBird['Bird'/134278, l='MpServer', x=-1035.50, y=64.00, z=1631.50], EntityChicken['Chicken'/128132, l='MpServer', x=-1020.81, y=66.00, z=1583.34], MoCEntityBird['Bird'/134276, l='MpServer', x=-1038.63, y=63.00, z=1627.13], MoCEntityMouse['Mouse'/126086, l='MpServer', x=-934.50, y=67.00, z=1547.50], MoCEntityDuck['Duck'/128134, l='MpServer', x=-1000.50, y=66.00, z=1590.50], MoCEntityMouse['Mouse'/126088, l='MpServer', x=-933.50, y=68.00, z=1544.50], MoCEntityDuck['Duck'/128136, l='MpServer', x=-1001.50, y=66.00, z=1591.50], MoCEntityBird['Bird'/126091, l='MpServer', x=-912.47, y=69.00, z=1546.88], MoCEntityBird['Bird'/134280, l='MpServer', x=-1035.75, y=64.00, z=1628.47], MoCEntityKitty['Kitty'/128138, l='MpServer', x=-1006.44, y=65.00, z=1601.78], MoCEntityBird['Bird'/126093, l='MpServer', x=-912.50, y=69.00, z=1549.50], MoCEntityKitty['Kitty'/128140, l='MpServer', x=-1011.70, y=66.00, z=1589.50], EntityLavaMonster['Lava Monster'/138387, l='MpServer', x=-999.50, y=1.50, z=1595.50], MoCEntityBird['Bird'/128161, l='MpServer', x=-989.50, y=67.00, z=1585.50], MoCEntityBird['Bird'/128163, l='MpServer', x=-989.47, y=67.00, z=1586.56], MoCEntityBird['Bird'/128165, l='MpServer', x=-996.16, y=66.00, z=1593.53], EntityPig['Pig'/128167, l='MpServer', x=-988.50, y=67.00, z=1586.50], EntityPig['Pig'/128169, l='MpServer', x=-991.47, y=66.00, z=1585.47], EntityPig['Pig'/128171, l='MpServer', x=-992.81, y=66.00, z=1586.81], EntityPig['Pig'/128173, l='MpServer', x=-993.22, y=66.00, z=1588.53], EntitySheep['Sheep'/128176, l='MpServer', x=-980.50, y=68.00, z=1581.50], EntityItem['item.item.string'/132272, l='MpServer', x=-1022.13, y=18.13, z=1614.88], EntitySheep['Sheep'/128178, l='MpServer', x=-980.50, y=68.00, z=1577.50], EntitySheep['Sheep'/128180, l='MpServer', x=-976.50, y=67.00, z=1582.22], EntitySheep['Sheep'/128182, l='MpServer', x=-976.50, y=67.00, z=1583.81], EntityPig['Pig'/128184, l='MpServer', x=-952.50, y=67.00, z=1587.50], EntityPig['Pig'/128186, l='MpServer', x=-954.50, y=67.00, z=1584.50], EntityPig['Pig'/128188, l='MpServer', x=-954.50, y=67.00, z=1582.50], EntityPig['Pig'/128190, l='MpServer', x=-952.50, y=68.00, z=1591.50], MoCEntityBunny['Bunny'/128193, l='MpServer', x=-940.50, y=64.00, z=1578.50], MoCEntityBunny['Bunny'/128195, l='MpServer', x=-939.50, y=64.00, z=1576.50], MoCEntityBunny['Bunny'/128197, l='MpServer', x=-939.50, y=64.00, z=1577.50], MoCEntityBoar['Boar'/113863, l='MpServer', x=-1052.50, y=70.00, z=1441.78], MoCEntityBird['Bird'/128199, l='MpServer', x=-947.50, y=65.00, z=1582.50], MoCEntityBoar['Boar'/113865, l='MpServer', x=-1052.50, y=70.00, z=1440.19], MoCEntityBigCat['BigCat'/117961, l='MpServer', x=-1132.50, y=64.00, z=1497.50], MoCEntityBird['Bird'/128201, l='MpServer', x=-948.50, y=65.00, z=1581.50], MoCEntityRaccoon['Raccoon'/113867, l='MpServer', x=-1040.28, y=68.00, z=1434.44], MoCEntityRaccoon['Raccoon'/113869, l='MpServer', x=-1044.41, y=71.00, z=1442.16], EntitySpider['Spider'/136399, l='MpServer', x=24.09, y=-45.40, z=37.66], EntityItem['item.tile.mushroom1'/117971, l='MpServer', x=-1009.31, y=6.13, z=1500.88], EntityItem['item.tile.mushroom2'/117972, l='MpServer', x=-1004.41, y=15.13, z=1506.22], MoCEntityMouse['Mouse'/113878, l='MpServer', x=-1000.75, y=68.00, z=1442.53], MoCEntityBear['Bear'/128214, l='MpServer', x=-912.50, y=64.00, z=1583.50], MoCEntityMouse['Mouse'/113880, l='MpServer', x=-1003.53, y=69.00, z=1435.75], MoCEntityBoar['Boar'/113884, l='MpServer', x=-986.47, y=70.00, z=1437.50], MoCEntityBoar['Boar'/113886, l='MpServer', x=-989.22, y=71.00, z=1450.31], MoCEntityBoar['Boar'/117982, l='MpServer', x=-994.50, y=68.00, z=1506.47], MoCEntityMouse['Mouse'/113888, l='MpServer', x=-997.78, y=69.00, z=1447.53], MoCEntityBoar['Boar'/117984, l='MpServer', x=-998.94, y=68.00, z=1497.84], MoCEntityMouse['Mouse'/117986, l='MpServer', x=-983.63, y=62.00, z=1486.94], MoCEntityDuck['Duck'/117988, l='MpServer', x=-1003.28, y=68.00, z=1503.53], MoCEntityDuck['Duck'/117990, l='MpServer', x=-1010.69, y=69.00, z=1506.78], EntityZombie['Zombie'/136426, l='MpServer', x=-26.76, y=-44.64, z=36.98], EntitySheep['Sheep'/117992, l='MpServer', x=-972.75, y=67.00, z=1500.44], EntitySheep['Sheep'/117996, l='MpServer', x=-961.69, y=66.00, z=1499.69], EntitySheep['Sheep'/117998, l='MpServer', x=-957.75, y=66.00, z=1504.84], EntityChicken['Chicken'/118000, l='MpServer', x=-967.50, y=66.00, z=1509.50], MoCEntityDeer['Deer'/113907, l='MpServer', x=-906.50, y=77.00, z=1432.50], EntityChicken['Chicken'/118002, l='MpServer', x=-966.50, y=66.00, z=1510.50], MoCEntityDeer['Deer'/113909, l='MpServer', x=-908.50, y=76.00, z=1432.50], MoCEntityBird['Bird'/113911, l='MpServer', x=-913.50, y=73.00, z=1441.50], EntityChicken['Chicken'/118006, l='MpServer', x=-965.50, y=66.00, z=1509.50], MoCEntityBird['Bird'/113913, l='MpServer', x=-916.50, y=74.00, z=1440.50], EntitySheep['Sheep'/118012, l='MpServer', x=-954.78, y=66.00, z=1511.38], MoCEntityHorse['WildHorse'/118016, l='MpServer', x=-938.56, y=67.00, z=1493.34], VengeanceSpirit['Vengeance Spirit'/144643, l='MpServer', x=-973.19, y=66.00, z=1487.81], EntityItem['item.item.ItemMutton'/144647, l='MpServer', x=-974.78, y=66.13, z=1490.94], EntityItem['item.tile.cloth.black'/144645, l='MpServer', x=-974.25, y=66.13, z=1491.16], MoCEntityHorse['WildHorse'/118026, l='MpServer', x=-937.50, y=67.00, z=1502.50], MoCEntityHorse['WildHorse'/118030, l='MpServer', x=-940.13, y=67.00, z=1500.03], MoCEntityBear['Bear'/118032, l='MpServer', x=-945.50, y=66.00, z=1496.50], MoCEntityTurkey['Turkey'/118034, l='MpServer', x=-926.50, y=75.00, z=1511.50], MoCEntityTurkey['Turkey'/118036, l='MpServer', x=-916.50, y=68.00, z=1508.50], EntityItem['item.item.string'/132377, l='MpServer', x=-1026.63, y=18.13, z=1612.88], VengeanceSpirit['Vengeance Spirit'/138521, l='MpServer', x=-1094.84, y=3.40, z=1568.81], MoCEntityEnt['Ent'/118044, l='MpServer', x=-918.50, y=69.00, z=1507.50], MoCEntityBunny['Bunny'/118054, l='MpServer', x=-915.41, y=74.00, z=1496.00], MoCEntityBunny['Bunny'/118056, l='MpServer', x=-912.50, y=72.00, z=1498.50], EntityLavaMonster['Lava Monster'/140584, l='MpServer', x=-997.72, y=3.07, z=1481.50], MoCEntityBunny['Bunny'/118058, l='MpServer', x=-913.50, y=72.00, z=1498.50], EntityZombie['Zombie'/136535, l='MpServer', x=-43.44, y=-42.80, z=18.61], EntityItem['item.item.string'/132471, l='MpServer', x=-1021.56, y=19.13, z=1614.88], EntityItem['item.item.string'/132469, l='MpServer', x=-1026.72, y=18.13, z=1612.13], EntityLavaMonster['Lava Monster'/132489, l='MpServer', x=-993.50, y=1.75, z=1582.50], EntityItem['item.item.netherquartz'/132530, l='MpServer', x=-1021.72, y=9.13, z=1576.28], EntityItem['item.item.barley.seed'/126391, l='MpServer', x=-1088.88, y=62.13, z=1507.59], MoCEntityMouse['Mouse'/105912, l='MpServer', x=-1035.16, y=64.00, z=1429.44], EntitySkeleton['Skeleton'/134589, l='MpServer', x=-7.58, y=-44.53, z=45.23], EntityZombie['Zombie'/134592, l='MpServer', x=-0.58, y=-43.53, z=46.69], EntityLavaMonster['Lava Monster'/140747, l='MpServer', x=-1090.50, y=3.06, z=1578.50], EntitySkeleton['Skeleton'/134617, l='MpServer', x=-1011.09, y=40.00, z=1586.34], EntityItem['item.tile.stonebrick'/126428, l='MpServer', x=-1089.13, y=12.13, z=1535.81], EntityItem['item.tile.sandStone.default'/126435, l='MpServer', x=-1087.88, y=55.13, z=1517.84], EntityItem['item.item.witchery:seedsartichoke'/126437, l='MpServer', x=-1083.94, y=60.13, z=1509.13], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126436, l='MpServer', x=-1084.56, y=61.13, z=1507.84], EntityItem['item.item.witchery:seedssnowbell'/126439, l='MpServer', x=-1082.13, y=62.13, z=1512.94], EntityItem['item.item.barley.seed'/126438, l='MpServer', x=-1083.78, y=60.13, z=1512.88], EntityItem['item.item.gysahl_seeds'/126441, l='MpServer', x=-1082.16, y=61.13, z=1510.41], EntityItem['item.item.witchery:seedssnowbell'/126440, l='MpServer', x=-1084.69, y=61.13, z=1513.38], EntityItem['item.item.agricraft:seedCarrot'/126443, l='MpServer', x=-1077.16, y=64.13, z=1515.38], EntityItem['item.tile.extrabiomes.flower.amaryllis_red'/126442, l='MpServer', x=-1079.75, y=66.13, z=1517.56], EntitySkeleton['Skeleton'/134633, l='MpServer', x=-959.50, y=66.00, z=1511.50], EntityItem['item.item.cotton.seed'/126445, l='MpServer', x=-1076.78, y=64.13, z=1513.31], EntityItem['item.item.seeds'/126444, l='MpServer', x=-1076.88, y=64.13, z=1510.13], MoCEntityScorpion['Scorpion'/134639, l='MpServer', x=-974.16, y=66.00, z=1491.82], EntityItem['item.item.barley.seed'/126447, l='MpServer', x=-1073.28, y=66.13, z=1518.66], EntityItem['item.item.agricraft:seedCarrot'/126446, l='MpServer', x=-1075.25, y=64.13, z=1510.69], EntitySpider['Spider'/136694, l='MpServer', x=-28.85, y=-40.37, z=40.13], EntityItem['item.tile.mushroom2'/130555, l='MpServer', x=-1035.28, y=24.13, z=1578.44], MoCEntityWWolf['WWolf'/134649, l='MpServer', x=-967.16, y=66.00, z=1507.56], EntityItem['item.tile.arsmagica2:tarmaroot'/130556, l='MpServer', x=-994.28, y=24.13, z=1593.59], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126465, l='MpServer', x=-1074.09, y=65.13, z=1536.69], MoCEntityRat['Rat'/134661, l='MpServer', x=-1008.13, y=68.00, z=1581.00], EntityZombie['Zombie'/134667, l='MpServer', x=-991.50, y=38.00, z=1482.50], EntityZombie['Zombie'/134669, l='MpServer', x=-992.50, y=38.00, z=1479.50], EntityItem['item.item.string'/132646, l='MpServer', x=-1027.88, y=18.13, z=1613.13], EntityItem['item.tile.mushroom10'/132655, l='MpServer', x=-1050.28, y=12.13, z=1578.28], EntityCaveSpider['Cave Spider'/136753, l='MpServer', x=-23.15, y=-51.37, z=30.14], EntityLavaMonster['Lava Monster'/142901, l='MpServer', x=-1100.50, y=3.36, z=1563.50], EntityItem['item.item.seeds_pumpkin'/136772, l='MpServer', x=-1062.81, y=65.13, z=1530.59], MoCEntityDuck['Duck'/130654, l='MpServer', x=-1122.50, y=63.00, z=1613.50], MoCEntityBoar['Boar'/124512, l='MpServer', x=-1030.19, y=67.00, z=1536.78], MoCEntityMouse['Mouse'/130656, l='MpServer', x=-1113.50, y=63.00, z=1612.50], MoCEntityBoar['Boar'/124514, l='MpServer', x=-1034.62, y=67.00, z=1539.80], EntityItem['item.tile.mushroom2'/128620, l='MpServer', x=-1042.81, y=15.13, z=1546.88], MoCEntityElephant['Elephant'/130668, l='MpServer', x=-1092.69, y=63.00, z=1612.72], MoCEntityBoar['Boar'/124530, l='MpServer', x=-1034.38, y=67.00, z=1546.47], MoCEntityBoar['Boar'/124532, l='MpServer', x=-1033.17, y=68.00, z=1526.12], MoCEntityBird['Bird'/124535, l='MpServer', x=-1036.75, y=67.17, z=1537.39], EntityItem['item.tile.mushroom1'/124534, l='MpServer', x=-1044.13, y=8.13, z=1525.13], EntityItem['item.item.cotton.seed'/136821, l='MpServer', x=-1093.25, y=10.13, z=1561.81], MoCEntityBird['Bird'/124537, l='MpServer', x=-1049.06, y=67.00, z=1544.54], MoCEntityBird['Bird'/124539, l='MpServer', x=-1038.31, y=66.00, z=1543.03], MoCEntityDeer['Deer'/124541, l='MpServer', x=-1040.78, y=67.00, z=1540.78], MoCEntityDeer['Deer'/124543, l='MpServer', x=-1038.66, y=67.00, z=1539.22], EntityHorse['Horse'/124545, l='MpServer', x=-1058.50, y=68.00, z=1528.97], EntityHorse['Donkey'/124547, l='MpServer', x=-1055.59, y=68.00, z=1528.28], MoCEntityBunny['Bunny'/124549, l='MpServer', x=-1059.67, y=66.74, z=1544.44], MoCEntityBunny['Bunny'/124551, l='MpServer', x=-1067.25, y=65.00, z=1548.09], MoCEntityBird['Bird'/124553, l='MpServer', x=-1078.50, y=60.00, z=1540.50], MoCEntityBird['Bird'/124555, l='MpServer', x=-1078.22, y=60.00, z=1539.94], EntitySheep['Sheep'/124557, l='MpServer', x=-1097.56, y=12.00, z=1540.16], EntitySheep['Sheep'/124559, l='MpServer', x=-1096.47, y=55.00, z=1541.94], EntityItem['item.tile.gravel'/142989, l='MpServer', x=-1041.71, y=19.83, z=1584.50], EntitySheep['Sheep'/124561, l='MpServer', x=-1094.03, y=12.00, z=1546.69], EntitySheep['Sheep'/124565, l='MpServer', x=-1097.91, y=12.00, z=1541.28], EntityItem['item.item.netherStalkSeeds'/132766, l='MpServer', x=-993.44, y=10.13, z=1543.22], EntityHuman['skyboy'/128673, l='MpServer', x=-1001.50, y=45.00, z=1527.50], EntityItem['item.tile.caveplant1'/132772, l='MpServer', x=-1024.88, y=8.13, z=1614.88], MoCEntityFox['Fox'/114345, l='MpServer', x=-1114.50, y=64.00, z=1442.19], MoCEntityMole['Mole'/114347, l='MpServer', x=-1125.50, y=64.00, z=1439.50], MoCEntityMouse['Mouse'/114349, l='MpServer', x=-1119.44, y=64.00, z=1439.03], MoCEntityMouse['Mouse'/114351, l='MpServer', x=-1123.09, y=64.00, z=1443.03], EntityItem['item.item.agricraft:seedPotato'/132780, l='MpServer', x=-1081.06, y=65.13, z=1511.53], EntityZombie['Zombie'/134834, l='MpServer', x=-14.59, y=-43.53, z=44.43], MoCEntityElephant['Elephant'/114355, l='MpServer', x=-1117.25, y=64.00, z=1432.94], EntitySkeleton['Skeleton'/134841, l='MpServer', x=-12.60, y=-44.53, z=43.85], EntitySkeleton['Skeleton'/136907, l='MpServer', x=-39.46, y=-39.37, z=30.79], MoCEntityBunny['Bunny'/134862, l='MpServer', x=-1070.50, y=64.00, z=1638.50], MoCEntityMole['Mole'/134860, l='MpServer', x=-1075.50, y=63.00, z=1629.50], MoCEntityBunny['Bunny'/134866, l='MpServer', x=-1069.50, y=64.00, z=1636.50], EntityItem['item.item.netherStalkSeeds'/132817, l='MpServer', x=-996.22, y=9.00, z=1537.09], MoCEntityMouse['Mouse'/122583, l='MpServer', x=-1099.44, y=41.55, z=1514.31], MoCEntityKitty['Kitty'/122585, l='MpServer', x=-1104.50, y=50.00, z=1521.50], MoCEntityKitty['Kitty'/122587, l='MpServer', x=-1105.50, y=51.00, z=1521.50], EntityItem['item.tile.gravel'/141023, l='MpServer', x=-1042.50, y=19.13, z=1576.50], MoCEntitySnake['Snake'/122595, l='MpServer', x=-1106.50, y=54.00, z=1518.50], MoCEntityBird['Bird'/134884, l='MpServer', x=-948.38, y=66.00, z=1633.50], MoCEntitySnake['Snake'/122603, l='MpServer', x=-1101.50, y=32.00, z=1521.50], MoCEntityBird['Bird'/134888, l='MpServer', x=-947.50, y=66.00, z=1635.50], MoCEntityOstrich['Ostrich'/122605, l='MpServer', x=-1111.50, y=49.00, z=1526.50], MoCEntityDuck['Duck'/122607, l='MpServer', x=-1087.50, y=62.05, z=1517.50], EntityItem['item.tile.notGate'/130799, l='MpServer', x=-1042.13, y=19.13, z=1616.03], EntityItem['item.tile.pressurePlate'/130798, l='MpServer', x=-1042.28, y=19.13, z=1615.16], EntityItem['item.item.netherStalkSeeds'/132850, l='MpServer', x=-994.25, y=9.00, z=1535.53], EntityItem['item.item.netherStalkSeeds'/132848, l='MpServer', x=-997.28, y=9.00, z=1538.63], EntityZombie['Zombie'/134907, l='MpServer', x=-12.60, y=-46.53, z=41.72], MoCEntityMouse['Mouse'/134905, l='MpServer', x=-912.50, y=66.00, z=1625.50], EntitySheep['Sheep'/124671, l='MpServer', x=-1108.50, y=59.00, z=1534.50], EntitySheep['Sheep'/124673, l='MpServer', x=-1107.78, y=58.00, z=1531.50], EntityItem['item.item.netherStalkSeeds'/132867, l='MpServer', x=-997.31, y=9.00, z=1537.81], EntitySheep['Sheep'/124675, l='MpServer', x=-1103.50, y=60.00, z=1538.50], EntitySheep['Sheep'/124677, l='MpServer', x=-1101.50, y=59.00, z=1537.50], MoCEntityFox['Fox'/124679, l='MpServer', x=-1121.72, y=55.00, z=1529.87], MoCEntityMouse['Mouse'/122630, l='MpServer', x=-1061.84, y=68.00, z=1527.59], EntityZombie['Zombie'/134922, l='MpServer', x=26.40, y=-43.53, z=38.33], MoCEntityBird['Bird'/122632, l='MpServer', x=-1052.63, y=65.00, z=1511.50], EntityItem['item.tile.mushroom10'/132875, l='MpServer', x=-1016.81, y=7.13, z=1610.84], MoCEntityBird['Bird'/122634, l='MpServer', x=-1052.44, y=65.00, z=1511.03], MoCEntityMouse['Mouse'/124682, l='MpServer', x=-903.50, y=68.00, z=1528.50], MoCEntityMole['Mole'/122636, l='MpServer', x=-1059.50, y=66.00, z=1515.50], MoCEntityMole['Mole'/122638, l='MpServer', x=-1055.25, y=66.00, z=1515.94], MoCEntityMouse['Mouse'/122662, l='MpServer', x=-1012.19, y=70.00, z=1506.69], MoCEntitySnake['Snake'/122668, l='MpServer', x=-1010.63, y=66.00, z=1522.28], MoCEntitySnake['Snake'/122670, l='MpServer', x=-1016.09, y=68.00, z=1521.50], MoCEntityFox['Fox'/122672, l='MpServer', x=-1003.13, y=66.00, z=1522.22], MoCEntityFox['Fox'/122674, l='MpServer', x=-1001.47, y=65.00, z=1527.97], EntityPig['Pig'/122676, l='MpServer', x=-1027.53, y=69.00, z=1519.38], EntityPig['Pig'/122678, l='MpServer', x=-1027.97, y=67.00, z=1498.94], MoCEntityAnt['Ant'/116537, l='MpServer', x=-1009.53, y=68.00, z=1437.41], EntityPig['Pig'/122680, l='MpServer', x=-1026.63, y=68.00, z=1528.47], MoCEntityAnt['Ant'/116539, l='MpServer', x=-1005.66, y=68.00, z=1438.31], MoCEntityBird['Bird'/124730, l='MpServer', x=-940.50, y=66.00, z=1529.50], EntityPig['Pig'/122682, l='MpServer', x=-1014.03, y=67.00, z=1519.47], MoCEntityAnt['Ant'/116541, l='MpServer', x=-1006.41, y=69.00, z=1436.81], MoCEntityBird['Bird'/124732, l='MpServer', x=-936.50, y=69.00, z=1531.50], MoCEntitySnake['Snake'/122684, l='MpServer', x=-1027.39, y=69.00, z=1524.11], MoCEntityAnt['Ant'/116543, l='MpServer', x=-1003.63, y=68.00, z=1439.28], MoCEntitySnake['Snake'/122686, l='MpServer', x=-1024.81, y=69.00, z=1519.41], MoCEntityBird['Bird'/124734, l='MpServer', x=-937.63, y=68.00, z=1529.00], MoCEntityBoar['Boar'/124737, l='MpServer', x=-1002.13, y=67.00, z=1531.63], EntityItem['item.tile.mushroom9'/124736, l='MpServer', x=-987.13, y=4.13, z=1537.13], MoCEntityBoar['Boar'/124739, l='MpServer', x=-998.06, y=65.00, z=1529.22], EntityItem['item.item.agricraft:seedPotato'/137042, l='MpServer', x=-1009.78, y=64.13, z=1606.72], MoCEntityMouse['Mouse'/114515, l='MpServer', x=-985.22, y=66.00, z=1462.16], MoCEntityTurkey['Turkey'/122708, l='MpServer', x=-940.50, y=67.00, z=1526.50], MoCEntityBee['Bee'/116567, l='MpServer', x=-995.19, y=69.00, z=1442.97], MoCEntityTurkey['Turkey'/122710, l='MpServer', x=-943.50, y=66.00, z=1526.50], MoCEntityFly['Fly'/116569, l='MpServer', x=-995.44, y=70.00, z=1438.81], MoCEntityBunny['Bunny'/122712, l='MpServer', x=-914.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116571, l='MpServer', x=-997.75, y=69.00, z=1438.53], MoCEntityBunny['Bunny'/122714, l='MpServer', x=-913.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116573, l='MpServer', x=-995.59, y=70.00, z=1438.34], MoCEntityBunny['Bunny'/122716, l='MpServer', x=-913.50, y=67.00, z=1514.50], MoCEntityMouse['Mouse'/122718, l='MpServer', x=-903.81, y=66.00, z=1519.13], MoCEntityMouse['Mouse'/122720, l='MpServer', x=-903.25, y=66.00, z=1519.28], MoCEntityGoat['Goat'/114533, l='MpServer', x=-948.50, y=69.00, z=1448.50], MoCEntityBunny['Bunny'/114535, l='MpServer', x=-930.50, y=72.00, z=1452.50], MoCEntityBunny['Bunny'/114537, l='MpServer', x=-928.50, y=72.00, z=1452.50], EntityCreeper['Creeper'/137067, l='MpServer', x=-1027.97, y=23.00, z=1610.44], MoCEntityTurkey['Turkey'/114539, l='MpServer', x=-929.50, y=72.00, z=1459.50], MoCEntityTurkey['Turkey'/114541, l='MpServer', x=-929.50, y=72.00, z=1457.50], EntityStoneCreeper['Stone Creeper'/137069, l='MpServer', x=-1029.44, y=22.00, z=1611.59], EntityZombie['Zombie'/135026, l='MpServer', x=19.40, y=-45.53, z=40.10], MoCEntityBird['Bird'/124805, l='MpServer', x=-1012.53, y=68.00, z=1553.56], MoCEntityBird['Bird'/124807, l='MpServer', x=-1012.72, y=67.81, z=1549.78], MoCEntityBoar['Boar'/114566, l='MpServer', x=-1018.41, y=72.00, z=1448.63], MoCEntityBird['Bird'/124809, l='MpServer', x=-997.53, y=71.00, z=1561.00], MoCEntityBoar['Boar'/114568, l='MpServer', x=-1020.47, y=67.00, z=1446.53], EntitySkeleton['Skeleton'/137099, l='MpServer', x=15.70, y=-60.27, z=15.11], EntityHorse['Horse'/124811, l='MpServer', x=-958.87, y=64.00, z=1541.13], EntityHorse['Horse'/124813, l='MpServer', x=-957.50, y=64.00, z=1540.50], MoCEntitySnake['Snake'/124815, l='MpServer', x=-957.66, y=64.00, z=1545.88], MoCEntitySnake['Snake'/124817, l='MpServer', x=-959.50, y=64.00, z=1543.50], EntityItem['item.item.bone'/145299, l='MpServer', x=-1009.44, y=40.13, z=1585.63], EntityCow['Cow'/124819, l='MpServer', x=-981.50, y=73.00, z=1543.50], EntityHuman['AnderZEL'/137105, l='MpServer', x=-1045.50, y=44.00, z=1453.50], EntityCow['Cow'/124821, l='MpServer', x=-980.50, y=73.00, z=1540.50], EntityCreeper['Creeper'/135063, l='MpServer', x=-1025.50, y=30.00, z=1562.50], EntityCow['Cow'/124823, l='MpServer', x=-983.50, y=73.00, z=1540.50], EntityCow['Cow'/124825, l='MpServer', x=-981.50, y=70.00, z=1538.50], MoCEntityOgre['Ogre'/137117, l='MpServer', x=-1088.53, y=63.00, z=1610.88], EntityChicken['Chicken'/124832, l='MpServer', x=-992.44, y=67.00, z=1531.56], EntityChicken['Chicken'/124836, l='MpServer', x=-982.50, y=71.00, z=1539.50], EntitySpider['Spider'/135077, l='MpServer', x=-1022.50, y=10.00, z=1580.50], MoCEntityAnt['Ant'/116651, l='MpServer', x=-1051.25, y=71.00, z=1466.03], EntityChicken['Chicken'/124842, l='MpServer', x=-982.50, y=73.00, z=1540.50], EntityTrail['unknown'/77741, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityChicken['Chicken'/124845, l='MpServer', x=-980.50, y=69.00, z=1536.50], EntitySkeleton['Skeleton'/137137, l='MpServer', x=-964.50, y=69.00, z=1587.50], EntityZombie['Zombie'/137143, l='MpServer', x=-1039.44, y=36.00, z=1563.94], EntityCreeper['Creeper'/135099, l='MpServer', x=-985.34, y=17.00, z=1514.97], MoCEntitySnake['Snake'/114619, l='MpServer', x=-1063.78, y=72.00, z=1459.22], EntityHuman['jadedcat'/135097, l='MpServer', x=-994.50, y=47.00, z=1520.50], EntityCreeper['Creeper'/137145, l='MpServer', x=-1032.50, y=37.00, z=1560.50], MoCEntityRaccoon['Raccoon'/114621, l='MpServer', x=-973.50, y=69.00, z=1453.50], MoCEntityRaccoon['Raccoon'/114623, l='MpServer', x=-973.50, y=70.00, z=1450.50], MoCEntityBunny['Bunny'/126923, l='MpServer', x=-1128.50, y=64.00, z=1562.50], MoCEntityBunny['Bunny'/126925, l='MpServer', x=-1129.94, y=64.00, z=1561.91], MoCEntityBunny['Bunny'/126927, l='MpServer', x=-1131.50, y=64.00, z=1561.50], EntityItem['item.item.netherquartz'/133069, l='MpServer', x=-1017.22, y=10.13, z=1573.88], MoCEntityTurkey['Turkey'/126945, l='MpServer', x=-1106.50, y=64.00, z=1573.50], MoCEntityEnt['Ent'/126947, l='MpServer', x=-1103.47, y=64.00, z=1575.50], MoCEntityEnt['Ent'/126951, l='MpServer', x=-1106.66, y=64.00, z=1576.44], MoCEntityBear['Bear'/114665, l='MpServer', x=-910.25, y=72.00, z=1454.59], MoCEntityBunny['Bunny'/126966, l='MpServer', x=-1095.50, y=64.00, z=1575.50], MoCEntityBunny['Bunny'/126968, l='MpServer', x=-1094.50, y=65.00, z=1572.50], MoCEntityOstrich['Ostrich'/126971, l='MpServer', x=-1070.47, y=66.00, z=1568.25], MoCEntityTurkey['Turkey'/126973, l='MpServer', x=-1067.50, y=64.00, z=1563.50], MoCEntityDuck['Duck'/126975, l='MpServer', x=-1078.16, y=65.00, z=1571.81]]     Retry entities: 0 total; []     Server brand: fml,forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.7.10     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 958275176 bytes (913 MB) / 7024934912 bytes (6699 MB) up to 8619819008 bytes (8220 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx9248m -Xms256m     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_D6 261 mods loaded, 258 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     UCHIJAAAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)      UCHIJAAAA    FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    AM2-Preloader{0.0.3} [AMCore] (minecraft.jar)      UCHIJAAAA    appliedenergistics2-core{rv3-beta-6} [Applied Energistics 2 Core] (minecraft.jar)      UCHIJAAAA    Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    bowinfinityfix{rv0} [Bow Infinity Fix] (minecraft.jar)      UCHIJAAAA    CodeChickenCore{1.0.7.48} [CodeChicken Core] (minecraft.jar)      UCHIJAAAA    Micdoodlecore{} [Micdoodle8 Core] (minecraft.jar)      UCHIJAAAA    NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar)      UCHIJAAAA    voltzenginepreloader{0.0.1} [Voltz Engine Preloader] (minecraft.jar)      UCHIJAAAA    xaerominimap_core{1.7.10-1.0} [XaeroMinimapCore] (minecraft.jar)      UCHIJAAAA    xaeroworldmap_core{1.7.10-1.0} [XaeroWorldMapCore] (minecraft.jar)      UCHIJAAAA    OpenModsCore{0.10.1} [OpenModsCore] (minecraft.jar)      UCHIJAAAA    <CoFH ASM>{000} [CoFH ASM] (minecraft.jar)      UCHIJAAAA    FoamFixCore{1.0.4} [FoamFixCore] (minecraft.jar)      UCHIJAAAA    FastCraft{1.25} [FastCraft] (fastcraft-1.25.jar)      UCHIJAAAA    unimixins{0.1.17} [UniMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-mixin{0.1.17} [UniMixins: Mixin (UniMix)] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-compat{0.1.17} [UniMixins: Compatibility] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixingasm{0.3} [UniMixins: Mixingasm] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    spongemixins{2.0.1} [UniMixins: SpongeMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinbooterlegacy{1.2.1} [UniMixins: MixinBooterLegacy] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gasstation{0.5.1} [UniMixins: GasStation] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gtnhmixins{2.2.0} [UniMixins: GTNHMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinextras{0.1.17} [UniMixins: MixinExtras] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar)      UCHIJAAAA    arsmagica2{1.4.0.009} [Ars Magica 2] (1.7.10_AM2-1.4.0.009.jar)      UCHIJAAAA    DamageIndicatorsMod{3.3.2} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.3.2.jar)      UCHIJAAAA    bspkrsCore{6.16} [bspkrsCore] ([1.7.10]bspkrsCore-universal-6.16.jar)      UCHIJAAAA    FloatingRuins{1.7.10.r02} [FloatingRuins] ([1.7.10]FloatingRuins-universal-1.7.10.r02.jar)      UCHIJAAAA    movillages{1.4.2} [Mo' Villages] ([1.7.10]MoVillages-1.4.2.jar)      UCHIJAAAA    abyssalcraft{1.9.1.3} [AbyssalCraft] (AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar)      UCHIJAAAA    CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar)      UCHIJAAAA    BuildCraft|Core{7.1.25} [BuildCraft] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Energy{7.1.25} [BC Energy] (buildcraft-7.1.25.jar)      UCHIJAAAA    ActuallyAdditions{1.7.10-r21} [Actually Additions] (ActuallyAdditions-1.7.10-r21.jar)      UCHIJAAAA    IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.827-experimental.jar)      UCHIJAAAA    AdvancedSolarPanel{1.7.10-3.5.1} [Advanced Solar Panels] (AdvancedSolarPanel_1.7.10_Edition.jar)      UCHIJAAAA    Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar)      UCHIJAAAA    adventurebackpack{1.7.10-0.8b} [Adventure Backpack] (adventurebackpack-1.7.10-0.8c.jar)      UCHIJAAAA    aether_legacy{v1.1.2.2} [The Aether] (aether-1.7.10-v1.1.2.3.jar)      UCHIJAAAA    AgriCraft{1.7.10-1.5.0} [AgriCraft] (AgriCraft-1.7.10-1.5.0.jar)      UCHIJAAAA    aiimprovements{0.0.1.8} [AI Improvements] (AIImprovements-1.7.10-0.0.1b8.jar)      UCHIJAAAA    antiidconflict{1.3.5} [Anti Id Conflict] (AntiIdConflict-1.3.5-1.7.10.jar)      UCHIJAAAA    appliedenergistics2{rv3-beta-6} [Applied Energistics 2] (appliedenergistics2-rv3-beta-6.jar)      UCHIJAAAA    Aquaculture{1.2.6} [Aquaculture] (Aquaculture-1.7.10-1.2.6.21.jar)      UCHIJAAAA    Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar)      UCHIJAAAA    atum{0.6} [Atum] (Atum-1.7.10-0.6.77.jar)      UCHIJAAAA    AWWayofTime{v1.3.3} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.3.3-17.jar)      UCHIJAAAA    Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar)      UCHIJAAAA    Botania{r1.8-249} [Botania] (Botania r1.8-249.jar)      UCHIJAAAA    Avaritia{1.13} [Avaritia] (Avaritia-1.13.jar)      UCHIJAAAA    iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar)      UCHIJAAAA    BackTools{4.0.0} [BackTools] (BackTools-4.0.0.jar)      UCHIJAAAA    BBG{1.0.0} [BetterBedrockGen] (BBG-1.0.0.jar)      UCHIJAAAA    bdlib{1.9.5.1} [BD Lib] (bdlib-1.9.5.1-mc1.7.10.jar)      UCHIJAAAA    Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar)      UCHIJAAAA    Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar)      UCHIJAAAA    BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar)      UCHIJAAAA    ExtrabiomesXL{3.16.4} [ExtrabiomesXL] (extrabiomesxl_1.7.10-3.16.4.jar)      UCHIJAAAA    Forestry{4.2.16.64} [Forestry for Minecraft] (forestry_1.7.10-4.2.16.64.jar)      UCHIJAAAA    beebetteratbees{0.2} [BeeBetterAtBees] (BeeBetterAtBees-0.3.jar)      UCHIJAAAA    BetterAchievements{0.1.0} [Better Achievements] (BetterAchievements-1.7.10-0.1.0.jar)      UCHIJAAAA    BetterPing{1.0} [Better Ping] (BetterPing-1.7.10-1.0.jar)      UCHIJAAAA    BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar)      UCHIJAAAA    BiblioWoodsBoP{1.9} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.9].jar)      UCHIJAAAA    BiblioWoodsEBXL{1.4} [BiblioWoods ExtraBiomesXL Edition] (BiblioWoods[ExtraBiomesXL][v1.4].jar)      UCHIJAAAA    BiblioWoodsForestry{1.7} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.7].jar)      UCHIJAAAA    BiblioWoodsNatura{1.5} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.5].jar)      UCHIJAAAA    ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar)      UCHIJAAAA    ThermalExpansion{1.7.10R4.1.5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.1.5-248.jar)      UCHIJAAAA    BigReactors{0.4.3A} [Big Reactors] (BigReactors-0.4.3A.jar)      UCHIJAAAA    BinnieCore{2.0.22.7} [Binnie Core] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Botany{2.0.22.7} [Botany] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraTrees{2.0.22.7} [Extra Trees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Genetics{2.0.22.7} [Genetics] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraBees{2.0.22.7} [Extra Bees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    blur{MC1.7.10-1.0.1-2} [Blur] (Blur-MC1.7.10-1.0.1-2.jar)      UCHIJAAAA    BrandonsCore{1.0.0.12} [Brandon's Core] (BrandonsCore-1.0.0.12.jar)      UCHIJAAAA    BuildCraft|Builders{7.1.25} [BC Builders] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Robotics{7.1.25} [BC Robotics] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Silicon{7.1.25} [BC Silicon] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Transport{7.1.25} [BC Transport] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Factory{7.1.25} [BC Factory] (buildcraft-7.1.25.jar)      UCHIJAAAA    Railcraft{9.12.2.0} [Railcraft] (Railcraft_1.7.10-9.12.2.0.jar)      UCHIJAAAA    TwilightForest{2.4.3} [The Twilight Forest] (TwilightForest-2.4.3.jar)      UCHIJAAAA    ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar)      UCHIJAAAA    CarpentersBlocks{3.3.8.2} [Carpenter's Blocks] (Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar)      UCHIJAAAA    ChestTransporter{2.0.6} [Chest Transporter] (ChestTransporter-1.7.10-2.0.6.jar)      UCHIJAAAA    ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar)      UCHIJAAAA    chococraft{4.1.5} [Clienthax's ChocoCraft] (ChocoCraft-4.1.5.jar)      UCHIJAAAA    CompactSolars{4.4.39.315} [Compact Solar Arrays] (CompactSolars-1.7.10-4.4.39.315-universal.jar)      UCHIJAAAA    ComputerCraft{1.75} [ComputerCraft] (ComputerCraft1.75.jar)      UCHIJAAAA    cosmeticarmorreworked{1.7.10-v7} [CosmeticArmorReworked] (CosmeticArmorReworked-1.7.10-v7.jar)      UCHIJAAAA    CustomSpawner{3.3.0} [DrZhark's CustomSpawner] (CustomMobSpawner 3.3.0.zip)      UCHIJAAAA    dimensionalcake{0.0.1} [Dimensional Cake] (dimensionalcakes-0.0.1.jar)      UCHIJAAAA    DisenchanterMod{1.6} [Disenchanter] (DisenchanterMod-[1.7.10]1.6.jar)      UCHIJAAAA    DraconicEvolution{1.0.2h} [Draconic Evolution] (Draconic-Evolution-1.7.10-1.0.2h.jar)      UCHIJAAAA    MoCreatures{6.3.1} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v6.3.1.zip)      UCHIJAAAA    DynamicLights{1.3.9a} [Dynamic Lights] (Dynamic.Lights-1.3.9abugfix2024.jar)      UCHIJAAAA    dsurround{1.0.6.4} [Dynamic Surroundings] (DynamicSurroundings-1.7.10-1.0.6.4.jar)      UCHIJAAAA    elementalcreepers{4.3.0} [Elemental Creepers] (Elemental Creepers-universal_1.7.10-4.3.0.jar)      UCHIJAAAA    eplus{3.0.2-d} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.2-d.jar)      UCHIJAAAA    Enchiridion{1.3} [Enchiridion] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    Enchiridion2{2.0.2a} [Enchiridion 2] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    endercore{1.7.10-0.2.0.40_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.40_beta.jar)      UCHIJAAAA    endercrop{1.7.10-1.1} [Ender Crop] (endercrop-1.7.10-1.2.jar)      UCHIJAAAA    MineFactoryReloaded{1.7.10R2.8.1} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar)      UCHIJAAAA    EnderIO{1.7.10-2.3.0.430_beta} [Ender IO] (EnderIO-1.7.10-2.3.0.430_beta.jar)      UCHIJAAAA    Roguelike{roguelike-1.5.3-GTNH-master.5+8684ddd572-dirty-master.9+2f9a51e578-dirty} [Roguelike Dungeons] (roguelike-1.5.5.jar)      UCHIJAAAA    enderlicious{Enderlicious} [§5Enderlicious] (enderlicious-1.1.2.jar)      UCHIJAAAA    EnderTech{1.7.10-0.3.2.405} [EnderTech] (EnderTech-1.7.10-0.3.2.405.jar)      UCHIJAAAA    enderutilities{0.5.3} [Ender Utilities] (enderutilities-1.7.10-0.5.3.jar)      UCHIJAAAA    EnderZoo{1.7.10-1.0.15.32} [Ender Zoo] (EnderZoo-1.7.10-1.0.15.32.jar)      UCHIJAAAA    entityculling{@VER@} [EntityCulling] (entityculling-1.6.4-mc1.7.10.jar)      UCHIJAAAA    evilcraft{0.9.13} [EvilCraft] (EvilCraft-1.7.10-0.9.13.jar)      UCHIJAAAA    golems{1.20} [Extra Golems] (Extra-Golems[1.7.10]-1.20.jar)      UCHIJAAAA    extracells{2.4.0} [Extra Cells 2] (ExtraCells-1.7.10-2.4.0.jar)      UCHIJAAAA    golems_addon_tconstruct{1.08} [Tinkers' Golems Addon] (ExtraGolemsTinkersAddon[1.7.10]-1.08.jar)      UCHIJAAAA    ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar)      UCHIJAAAA    harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar)      UCHIJAAAA    ImmersiveEngineering{0.7.7} [Immersive Engineering] (ImmersiveEngineering-0.7.7.jar)      UCHIJAAAA    TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar)      UCHIJAAAA    ExtraTiC{1.4.6} [ExtraTiC] (ExtraTiC-1.7.10-1.4.6.jar)      UCHIJAAAA    farlanders{1.2b} [The Farlanders] (farlanders-1.7.10-v1.2b.jar)      UCHIJAAAA    foamfix{@VERSION@} [FoamFix] (FoamFix-1.7.10-universal-1.0.4.jar)      UCHIJAAAA    FoodExpansion{1.0} [Food Expansion] (FoodExpansion1.1.1-mc1.7.10.jar)      UCHIJAAAA    llibrary{1.5.2} [LLibrary] (llibrary-1.5.2-1.7.10.jar)      UCHIJAAAA    fossil{7.3.2} [Fossils and Archeology Revival] (fossilsarcheology-7.3.2.jar)      UCHIJAAAA    GalacticraftCore{3.0.12} [Galacticraft Core] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    GalacticraftMars{3.0.12} [Galacticraft Planets] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    MagicBees{2.4.4} [Magic Bees] (magicbees-1.7.10-2.4.4.jar)      UCHIJAAAA    gendustry{1.6.3.132} [GenDustry] (gendustry-1.6.3.132-mc1.7.10.jar)      UCHIJAAAA    GraviGun{4.0.0-beta} [GraviGun] (GravityGun-4.0.0-beta.jar)      UCHIJAAAA    gtnhlib{0.5.13} [GTNH Lib] (gtnhlib-0.5.13.jar)      UCHIJAAAA    headcrumbs{1.7.4} [Headcrumbs] (Headcrumbs-1.7.4.jar)      UCHIJAAAA    hexcraft{0.13.2} [HEXCraft] (HEXCraft-1.7.10-0.13.2.jar)      UCHIJAAAA    hexxitgear{1.5.2R1.0} [Hexxit Gear] (HexxitGear-1.7.10-4.0a.jar)      UCHIJAAAA    voltzengine{1.11.0.491} [Voltz Engine] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    icbmclassic{2.16.4.3} [ICBM-Classic] (ICBM-classic-1.7.10-2.16.4b3.jar)      UCHIJAAAA    immersivecavegen{1.2g-hotfix5} [Immersive Cavegen] (immersivecavegen-1.2g-hotfix5.jar)      UCHIJAAAA    immersiveintegration{0.6.8} [Immersive Integration] (immersiveintegration-0.6.8.jar)      UCHIJAAAA    Instrumentus{1.7.10-1.4.1} [Instrumentus] (Instrumentus-1.4.1.jar)      UCHIJAAAA    InventoryPets{1.5.2} [Inventory Pets] (inventorypets-1.7.10-1.5.2-universal.jar)      UCHIJAAAA    inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar)      UCHIJAAAA    IronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar)      UCHIJAAAA    ironfurnaces{1.2.4} [Iron Furnaces] (ironfurnaces-1.2.4R.jar)      UCHIJAAAA    irontank{1.7.10-1.1.16.16} [Iron Tanks] (irontanks-1.7.10-1.1.16.16.jar)      UCHIJAAAA    jaff{1.4.2_for_1.7.10} [Just a Few Fish] (JustAFewFish-1.4.2_for_1.7.10.jar)      UCHIJAAAA    LavaMonsters{2.2.1} [Lava Monsters] (LavaMonsters-1.7.10-2.2.1.jar)      UCHIJAAAA    legendgear{2.b.2.1} [LegendGear 2] (LegendGear 2-1.7.10-2.b.2.1.jar)      UCHIJAAAA    levels{r3.0.1} [Levels] (Levels-1.7.10-r3.0.1.jar)      UCHIJAAAA    lpb{1.0} [Loading Progress Bar] (Loading-Progress-Bar-v1.0-mc1.7.10.jar)      UCHIJAAAA    login_shield{1.7.10-2-gf6e21a7} [Login Shield] (Login_Shield-1.7.10-2-gf6e21a7.jar)      UCHIJAAAA    lucky{5.1.0} [Lucky Block] (lucky-block-forge-1.7.10-1.0.jar)      UCHIJAAAA    LunatriusCore{1.1.2.21} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.21-universal.jar)      UCHIJAAAA    Mekanism{9.1.1} [Mekanism] (Mekanism-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    magicalcrops{4.0.0_PUBLIC_BETA_4b} [Magical Crops: Core] (magicalcrops-4.0.0_PUBLIC_BETA_5.jar)      UCHIJAAAA    MekanismGenerators{9.1.1} [MekanismGenerators] (MekanismGenerators-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    MekanismTools{9.1.1} [MekanismTools] (MekanismTools-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    meteors{2.14.3} [Falling Meteors] (meteors-1.7.10-2.14.3.jar)      UCHIJAAAA    MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.1} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.1} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatChococraft{1.7.10R2.8.1} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.1} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForestry{1.7.10R2.8.1} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.1} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatIC2{1.7.10R2.8.1} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MrTJPCoreMod{1.1.0.33} [MrTJPCore] (MrTJPCore-1.1.0.33-universal.jar)      UCHIJAAAA    ProjRed|Core{4.7.0pre12.95} [ProjectRed Core] (ProjectRed-1.7.10-4.7.0pre12.95-Base.jar)      UCHIJAAAA    ProjRed|Exploration{4.7.0pre12.95} [ProjectRed Exploration] (ProjectRed-1.7.10-4.7.0pre12.95-World.jar)      UCHIJAAAA    MineFactoryReloaded|CompatProjRed{1.7.10R2.8.1} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.1} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.1} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.1} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.1} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.1} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatVanilla{1.7.10R2.8.1} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    testdummy{1.0} [MmmMmmMmmMmm] (MmmMmmMmmMmm-1.7.10-1.9.jar)      UCHIJAAAA    mozombies{2.1.0} [Mo' Zombies] (mo_zombies_2.1.0.jar)      UCHIJAAAA    numina{1.7.10} [Numina] (Numina-0.4.1.106.jar)      UCHIJAAAA    p455w0rdslib{1.0.4} [p455w0rd's Library] (p455w0rdslib-1.7.10-1.0.4.jar)      UCHIJAAAA    ae2wct{1.7.10-rv3-1.8.7.4b} [AE2 Wireless Crafting Terminal] (WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar)      UCHIJAAAA    powersuits{1.7.10-0.11.1.117} [MachineMuse's Modular Powersuits] (ModularPowersuits-1.7.10-0.11.1.117.jar)      UCHIJAAAA    MoreBows{1.0.10} [More Bows Restrung] (MoreBows-1.0.10.jar)      UCHIJAAAA    MouseTweaks{2.4.4} [Mouse Tweaks] (MouseTweaks-2.4.4-mc1.7.10.jar)      UCHIJAAAA    mowziesmobs{1.2.9} [Mowzie's Mobs] (MowziesMobs-1.2.99.jar)      UCHIJAAAA    cfm{3.4.7} [§9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar)      UCHIJAAAA    Mystcraft{0.12.3.04} [Mystcraft] (mystcraft-1.7.10-0.12.3.04.jar)      UCHIJAAAA    naturescompass{1.3.1} [Nature's Compass] (NaturesCompass-1.7.10-1.3.1.jar)      UCHIJAAAA    NetherOres{1.7.10R2.3.1} [Nether Ores] (NetherOres-[1.7.10]2.3.1-22.jar)      UCHIJAAAA    notenoughIDs{1.4.3.4} [NotEnoughIDs] (NotEnoughIDs-1.4.3.4.jar)      UCHIJAAAA    NuclearCraft{1.9g} [NuclearCraft] (NuclearCraft-1.9g--1.7.10.jar)      UCHIJAAAA    samsocean{1.7.10-1.0.0} [Classic Oceans] (OceanFloor-1.7.10-1.0.0.jar)      UCHIJAAAA    OpenMods{0.10.1} [OpenMods] (OpenModsLib-1.7.10-0.10.1.jar)      UCHIJAAAA    OpenBlocks{1.6} [OpenBlocks] (OpenBlocks-1.7.10-1.6.jar)      UCHIJAAAA    openmodularturrets{2.3.6} [Open Modular Turrets] (OpenModularTurrets-2.3.6.jar)      UCHIJAAAA    PickleTweaks{1.5} [PickleTweaks] (PickleTweaks-1.6.jar)      UCHIJAAAA    PortalGun{4.0.0-beta-6} [PortalGun] (PortalGun-4.0.0-beta-6-fix-1.jar)      UCHIJAAAA    pressure{1.3.0.fix1} [Pressure Pipes] (pressure-1.3.0.fix1-mc1.7.10.jar)      UCHIJAAAA    primitivemobs{1.0} [Primitive Mobs] (primitivemobs-1.0c-1.7.10.jar)      UCHIJAAAA    ProjectE{1.7.10-PE1.10.1} [ProjectE] (ProjectE-1.7.10-PE1.10.1.jar)      UCHIJAAAA    ProjRed|Transmission{4.7.0pre12.95} [ProjectRed Transmission] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Transportation{4.7.0pre12.95} [ProjectRed Transportation] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    ProjRed|Compatibility{4.7.0pre12.95} [ProjectRed Compatibility] (ProjectRed-1.7.10-4.7.0pre12.95-Compat.jar)      UCHIJAAAA    ProjRed|Integration{4.7.0pre12.95} [ProjectRed Integration] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Fabrication{4.7.0pre12.95} [ProjectRed Fabrication] (ProjectRed-1.7.10-4.7.0pre12.95-Fabrication.jar)      UCHIJAAAA    ProjRed|Illumination{4.7.0pre12.95} [ProjectRed Illumination] (ProjectRed-1.7.10-4.7.0pre12.95-Lighting.jar)      UCHIJAAAA    ProjRed|Expansion{4.7.0pre12.95} [ProjectRed Expansion] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    quantumflux{1.7.10-1.3.4} [QuantumFlux] (QuantumFlux-1.7.10-1.3.4.jar)      UCHIJAAAA    RandomThings{2.2.4} [Random Things] (RandomThings-2.2.4.jar)      UCHIJAAAA    reborncore{1.1.0.15} [RebornCore] (RebornCore-1.1.0.15-universal.jar)      UCHIJAAAA    rfutilities{0.5-hotfix4} [RFUtilities] (RFUtilities-MC1.7.10-0.5-hotfix4.jar)      UCHIJAAAA    secretroomsmod{4.7.1} [The SecretRoomsMod] (secretroomsmod-1.7.10-4.7.1.413.jar)      UCHIJAAAA    simplecore{1.1.1.3} [SimpleCore API] (simplecore-1.7.10-1.1.1.3.jar)      UCHIJAAAA    simpleores{1.6.1.4} [SimpleOres 2] (simpleores-1.7.10-1.6.1.4.jar)      UCHIJAAAA    SophisticatedWolves{3.2.0} [SophisticatedWolves] (Sophisticated Wolves 3.2.0.jar)      UCHIJAAAA    Stackie{1.6.0.36} [Stackie] (Stackie-1.7.10-1.6.0.36-universal.jar)      UCHIJAAAA    StevesFactoryManager{A93} [Steve's Factory Manager] (StevesFactoryManagerA93.jar)      UCHIJAAAA    StevesAddons{0.10.16} [Steve's Addons] (StevesAddons-1.7.10-0.10.16.jar)      UCHIJAAAA    StevesCarts{2.0.0.b18} [Steve's Carts 2] (StevesCarts2.0.0.b18.jar)      UCHIJAAAA    StorageDrawers{1.7.10-1.10.9} [Storage Drawers] (StorageDrawers-1.7.10-1.10.9.jar)      UCHIJAAAA    Sync{4.0.1} [Sync] (Sync-4.0.1.jar)      UCHIJAAAA    techreborn{0.7.21.1131} [TechReborn] (TechReborn-1.7.10-0.7.21.1131-universal.jar)      UCHIJAAAA    thaumcraftneiplugin{@VERSION@} [Thaumcraft NEI Plugin] (thaumcraftneiplugin-1.7.10-1.7a.jar)      UCHIJAAAA    thebetweenlands{1.0.6-alpha} [The Betweenlands] (TheBetweenlands-1.0.6-alpha-universal.jar)      UCHIJAAAA    erebus{0.4.7} [Erebus] (TheErebus-0.4.7.jar)      UCHIJAAAA    ThermalDynamics{1.7.10R1.2.1} [Thermal Dynamics] (ThermalDynamics-[1.7.10]1.2.1-172.jar)      UCHIJAAAA    TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar)      UCHIJAAAA    tumbleweed{1.7.10-0.2} [Tumbleweed] (tumbleweed-1.7.10-0.2.jar)      UCHIJAAAA    ultimate_unicorn_mod{1.5.17} [Wings, Horns, and Hooves, the Ultimate Unicorn Mod!] (ultimate_unicorn_mod-1.7.10-1.5.17.jar)      UCHIJAAAA    vampirism{0.7.9} [Vampirism] (Vampirism-1.7.10-0.7.9.jar)      UCHIJAAAA    VanillaPlus{1.5.1} [VanillaPlus] (VanillaPlus-1.7.10-1.5.1.jar)      UCHIJAAAA    VeinMiner{0.36.0_1.7.10-28a7f13} [Vein Miner] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    VeinMinerModSupport{0.36.0_1.7.10-28a7f13} [Mod Support] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    voltzenginemodflag{1.11.0.491} [VoltzEngine mod protection, flag, and region system] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    voltzenginemodcompat{1.11.0.491} [Voltz Engine Mod Compatibility Loader] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar)      UCHIJAAAA    wailaplugins{MC1.7.10-0.2.0-25} [WAILA Plugins] (WAILAPlugins-MC1.7.10-0.2.0-25.jar)      UCHIJAAAA    wawla{1.3.1} [What Are We Looking At] (Wawla-1.0.5.120.jar)      UCHIJAAAA    wildnetherwart{2.1} [Wild Netherwart] (wild_netherwart-1.7.10-v2.1.jar)      UCHIJAAAA    witchery{0.24.1} [Witchery] (witchery-1.7.10-0.24.1.jar)      UCHIJAAAA    wolfarmor{1.3.0} [Wolf Armor and Storage] (wolfarmor-1.3.0.1.jar)      UCHIJAAAA    XaeroMinimapFair{21.10.40} [Xaero's Minimap] (Xaeros_Minimap_FP21.10.40_Forge_1.7.10.jar)      UCHIJAAAA    XaeroWorldMap{1.14.1.32} [Xaero's World Map] (XaerosWorldMap_1.14.1.32_Forge_1.7.10.jar)      UCHIJAAAA    McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    ForgeRelocation{0.0.1.4} [ForgeRelocation] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    MCFrames{1.0} [MCFrames] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-0.0.1.2-universal.jar)      UCHIJAAAA    libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar)      UCHIJAAAA    IguanaTweaksTConstruct{1.7.10-2.1.6.163} [Iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.6.jar)      UCHIJAAAA    jaopca{1.7.10-W.0.6.25} [JAOPCA] (JAOPCA-1.7.10-W.0.6.25.jar)      UCHIJAAAA    UniDict{1.7.10-2.9.2} [UniDict] (UniDict-1.7.10-2.9.2.jar)      UCHIJAAAA    ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UD    MineFactoryReloaded|CompatAtum{1.7.10R2.8.1} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatBackTools{1.7.10R2.8.1} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.1} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 551.76' Renderer: 'NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2'     OpenModsLib class transformers: [stencil_patches:FINISHED],[movement_callback:FINISHED],[player_damage_hook:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:FINISHED],[player_render_hook:FINISHED]     Class transformer null safety: all safe     CoFHCore: -[1.7.10]3.1.4-329     AE2 Version: beta rv3-beta-6 for Forge 10.13.4.1448     Mantle Environment: DO NOT REPORT THIS CRASH! Unsupported mods in environment: optifine     ThermalFoundation: -[1.7.10]1.2.6-118     ThermalExpansion: -[1.7.10]4.1.5-248     MineFactoryReloaded: -[1.7.10]2.8.1-174     TConstruct Environment: Environment healthy.     NetherOres: -[1.7.10]2.3.1-22     ThermalDynamics: -[1.7.10]1.2.1-172     List of loaded APIs:          * AbyssalCraftAPI (1.7) from AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar         * ActuallyAdditionsAPI (3) from ActuallyAdditions-1.7.10-r21.jar         * ae2wct|API (1.7.10-rv3-1.8.6b) from WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar         * AgriCraftAPI (1.0) from AgriCraft-1.7.10-1.5.0.jar         * appliedenergistics2|API (rv3) from appliedenergistics2-rv3-beta-6.jar         * Baubles|API (1.0.1.10) from Baubles-1.7.10-1.0.1.10.jar         * BetterAchievements|API (0.1.0) from BetterAchievements-1.7.10-0.1.0.jar         * BiomesOPlentyAPI (1.0.0) from BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar         * BloodMagicAPI (1.3.3-13) from BloodMagic-1.7.10-1.3.3-17.jar         * BotaniaAPI (76) from Botania r1.8-249.jar         * BuildCraftAPI|blocks (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|blueprints (1.5) from buildcraft-7.1.25.jar         * BuildCraftAPI|boards (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|core (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|crops (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|events (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|facades (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|filler (4.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|fuels (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|gates (4.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|items (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|library (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|lists (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|power (1.3) from buildcraft-7.1.25.jar         * BuildCraftAPI|recipes (3.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|robotics (3.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|statements (1.1) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tablet (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tiles (1.2) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tools (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|transport (4.1) from Railcraft_1.7.10-9.12.2.0.jar         * CarpentersBlocks|API (3.3.7) from Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar         * ChiselAPI (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Carving (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Rendering (0.1.1) from Chisel-2.9.5.11.jar         * CoFHAPI (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|block (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|core (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|energy (1.7.10R1.0.7) from StevesAddons-1.7.10-0.10.16.jar         * CoFHAPI|fluid (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|inventory (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|item (1.7.10R1.0.10) from Mekanism-1.7.10-9.1.1.1031.jar         * CoFHAPI|modhelpers (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|tileentity (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|transport (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|world (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|audio (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|container (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element|listbox (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|slot (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|inventory (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render|particle (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|helpers (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|position (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|world (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|world|feature (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * ComputerCraft|API (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|FileSystem (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Lua (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Media (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Peripheral (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Permissions (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Redstone (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Turtle (1.75) from ComputerCraft1.75.jar         * DraconicEvolution|API (1.2) from Draconic-Evolution-1.7.10-1.0.2h.jar         * EnderIOAPI (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Redstone (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Teleport (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Tools (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * ForestryAPI|apiculture (4.8.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|arboriculture (4.2.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|circuits (3.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|core (5.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|farming (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|food (1.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|fuels (2.0.1) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * ForestryAPI|genetics (4.7.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|hives (4.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|lepidopterology (1.3.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|mail (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|multiblock (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|recipes (5.4.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|storage (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|world (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForgeRelocation|API (0.0.1.4) from ForgeRelocation-0.0.1.4-universal.jar         * Fossils and Archeology Revival API (7.3.1) from fossilsarcheology-7.3.2.jar         * Galacticraft API (1.1) from Galacticraft-1.7-3.0.12.504.jar         * gendustryAPI (2.3.0) from gendustry-1.6.3.132-mc1.7.10.jar         * IC2API (1.0) from industrialcraft-2-2.2.827-experimental.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.7.7.jar         * MekanismAPI|core (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|energy (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|gas (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|infuse (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|laser (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|reactor (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|recipe (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|transmitter (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|util (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * Mystcraft|API (0.1) from mystcraft-1.7.10-0.12.3.04.jar         * OpenBlocks|API (1.1) from OpenBlocks-1.7.10-1.6.jar         * pressureAPI (1.3.0.fix1) from pressure-1.3.0.fix1-mc1.7.10.jar         * ProjectEAPI (7) from ProjectE-1.7.10-PE1.10.1.jar         * RailcraftAPI|bore (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|carts (1.6.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|core (1.5.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|crafting (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|electricity (2.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|events (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|fuel (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|helpers (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|items (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|locomotive (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|signals (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|tracks (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * reborncoreAPI (1.1.0.15) from RebornCore-1.1.0.15-universal.jar         * StorageDrawersAPI (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|config (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|event (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|inventory (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|pack (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|registry (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|render (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage-attribute (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * techrebornAPI (0.7.21.1131) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * Thaumcraft|API (4.2.2.0) from Railcraft_1.7.10-9.12.2.0.jar         * VeinMinerApi (0.3) from VeinMiner-1.7.10-0.36.0.496+28a7f13.jar         * VoltzEngineAPI (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|crafting-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|data (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|event (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosive-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosives (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|recipe (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tile (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tools (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|weapons (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * WailaAPI (1.2) from Waila-1.5.10_1.7.10.jar     Chisel: Errors like "[FML]: Unable to lookup ..." are NOT the cause of this crash. You can safely ignore these errors. And update forge while you're at it.     EnderIO: Found the following problem(s) with your installation:                   * Optifine is installed. This is NOT supported.                   * An unknown AE2 API is installed (rv3 from appliedenergistics2-rv3-beta-6.jar).                     Ender IO was build against API version rv2 and may or may not work with a newer version.                   * The RF API that is being used (1.7.10R1.0.2 from <unknown>) differes from that that is reported as being loaded (1.7.10R1.0.7 from StevesAddons-1.7.10-0.10.16.jar).                     It is a supported version, but that difference may lead to problems.                  This may have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.     Stencil buffer state: Function set: GL30, pool: forge, bits: 8     Forestry : Warning: You have mods that change the behavior of Minecraft, ForgeModLoader, and/or Minecraft Forge to your client:  Optifine These may have caused this error, and may not be supported. Try reproducing the crash WITHOUT these mods, and report it then.     AE2 Integration: IC2:ON, RotaryCraft:OFF, RC:ON, BuildCraftCore:ON, BuildCraftTransport:ON, BuildCraftBuilder:ON, RF:ON, RFItem:ON, MFR:ON, DSU:ON, FZ:OFF, FMP:ON, RB:OFF, CLApi:OFF, Waila:ON, InvTweaks:ON, NEI:ON, CraftGuide:OFF, Mekanism:ON, ImmibisMicroblocks:OFF, BetterStorage:OFF, OpenComputers:OFF, PneumaticCraft:OFF     Launched Version: forge-10.13.4.1614     LWJGL: 2.9.1     OpenGL: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.76, NVIDIA Corporation     GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported.     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs: []     Current Language: English (US)     Profiler Position: N/A (disabled)     Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     Anisotropic Filtering: Off (1)     OptiFine Version: OptiFine_1.7.10_HD_U_D6     Render Distance Chunks: 8     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     OpenGlVersion: 4.6.0 NVIDIA 551.76     OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 4
    • Also doubting if my usage of awardStat is correct. It just looks like this right now: player.awardStat(SampleModRegistry.FIREWORK_BOOSTS_USED.getId()); but there are places vanilla Minecraft uses the function like this: .awardStat(Stats.CUSTOM.get(Stats.DAMAGE_BLOCKED_BY_SHIELD)
    • Make a test without fancytrinkets
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.