Jump to content

[1.10.2][solved] Place block in world with rotation


KYPremco

Recommended Posts

I have a problem with my mod.

It's my first thing i try out but just can't find anywhere an aswer.

I want to save a structure that a player build in a 15x15x15 area and then rebuild it. this works for how far i am.

 

But when it's building it changes the direction of  the stairs, doors will be bugged and chests didn't test. Also my wood block went from spruce to normal.

 

I activate CreateStructure when i click on the top and startStructure on north side

 


When i use this on WithProperty it crashes and saying that the block (dispenser) doesnt have it

public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);

 

Code:

package com.kyproject.mynewmod.tileentity;
import net.minecraft.block.Block;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.IBlockState;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.BlockPos;
import net.minecraftforge.common.capabilities.Capability;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.ItemStackHandler;

import java.util.ArrayList;

public class TileEntityBuilder extends TileEntity implements ITickable {

    public ArrayList<BlockPlace> blockStructure = new ArrayList<>();
    public ArrayList<BlockPlace> ORGIN = new ArrayList<>();

    ItemStackHandler inventory = new ItemStackHandler(9);
    boolean blockIsBuilding = false;
    int countBlocks = 0;
    int counter = 0;

    public static class BlockPlace {
        public Block block;
        public BlockPos pos;
        public IBlockState state;

        public BlockPlace(BlockPos pos, Block block, IBlockState state) {
            this.pos = pos;
            this.block = block;
            this.state = state;
        }
    }

    public void createStructure() {
        ArrayList<BlockPlace> blocks = new ArrayList<>();
        for(int x = 0;x < 15;x++) {
            for(int z = 1;z < 15;z++) {
                for(int y = 0;y < 15; y++) {
                    if(!worldObj.isAirBlock(pos.add(x,y,z))) {
                        blocks.add(new BlockPlace(pos.add(x,y,z),worldObj.getBlockState(pos.add(x,y,z)).getBlock(), worldObj.getBlockState(pos.add(x,y,z)).getBlock().getBlockState().getBaseState()));
                    }
                }
            }

        }
        ORGIN = blocks;
    }

    // Tried this but error occured
    public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);

    public void startStructure() {
        blockStructure.clear();
        blockStructure = (ArrayList<BlockPlace>) ORGIN.clone();
        blockIsBuilding = true;
        countBlocks = 0;
        counter = 0;
    }

    @Override
    public void update() {
        if(blockIsBuilding) {
            if(counter == 0) {
                if(blockStructure.size() == 0) {
                    blockIsBuilding = false;
                    countBlocks = 0;
                } else {
                    worldObj.setBlockState(blockStructure.get(0).pos, blockStructure.get(0).block.getDefaultState());
                    if(blockStructure.size()- 1 > 1) {
                        worldObj.setBlockState(blockStructure.get(blockStructure.size() - 1).pos, blockStructure.get(blockStructure.size() - 1).block.getDefaultState());
                        blockStructure.remove(blockStructure.size() - 1);
                    }
                    blockStructure.remove(0);
                    countBlocks++;
                }
                counter = 0;
            } else {
                counter++;
            }
            System.out.println(countBlocks);
        }


    }


    //Some other stuff
    @Override
    public void readFromNBT(NBTTagCompound compound) {
        super.readFromNBT(compound);
        inventory.deserializeNBT(compound.getCompoundTag("inventory"));
    }

    @Override
    public NBTTagCompound writeToNBT(NBTTagCompound compound) {
        compound.setTag("inventory", inventory.serializeNBT());
        return super.writeToNBT(compound);
    }

    @Override
    public boolean hasCapability(Capability<?> capability, EnumFacing facing) {
        return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing);
    }

    @Override
    public <T> T getCapability(Capability<T> capability, EnumFacing facing) {
        return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ? (T)inventory : super.getCapability(capability, facing);
    }
}

 

Edited by KYPremco
Link to comment
Share on other sites

// Tried this but error occured
    public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);

 

Of course it failed.

 

1) That property does not match BlockHorizontal.FACING, it's a completely different property. It just happens to have the same name and same values. Don't just create properties willy nilly, use a reference to the original. public static final PropertyDirection FACING = BlockHorizontal.FACING; magic.

2) Dispensers don't use horizontal facing, they use omnidirectional facing: that is, they can face UP and DOWN too.

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

Thank Draco that maded a little bit more clear.

I got it working but ended up doing it totally different.

 

If you still see something stupid please tell me.

 

package com.kyproject.mynewmod.tileentity;
import net.minecraft.block.BlockDirectional;
import net.minecraft.block.BlockHorizontal;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.IBlockState;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import net.minecraftforge.common.capabilities.Capability;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.ItemStackHandler;

import java.util.ArrayList;

public class TileEntityBuilder extends TileEntity implements ITickable {

    public ArrayList<BlockPlace> blockStructure = new ArrayList<>();
    public ArrayList<BlockPlace> ORGIN = new ArrayList<>();

    ItemStackHandler inventory = new ItemStackHandler(9);
    boolean blockIsBuilding = false;
    int countBlocks = 0;
    int counter = 0;

    public static class BlockPlace {
        public BlockPos pos;
        public IBlockState state;

        public BlockPlace(BlockPos pos, IBlockState state) {
            this.pos = pos;
            this.state = state;
        }
    }

    public void createStructure() {
        ArrayList<BlockPlace> blocks = new ArrayList<>();
        for(int x = 0;x < 15;x++) {
            for(int z = 1;z < 15;z++) {
                for(int y = 0;y < 15; y++) {
                    if(!worldObj.isAirBlock(pos.add(x,y,z))) {
                        IBlockState state = worldObj.getBlockState(pos.add(x,y,z)).getActualState(worldObj, pos.add(x,y,z));
                        blocks.add(new BlockPlace(pos.add(x,y,z), state));
                    }
                }
            }

        }
        ORGIN = blocks;
    }

    public void startStructure() {
        blockStructure.clear();
        blockStructure = (ArrayList<BlockPlace>) ORGIN.clone();
        blockIsBuilding = true;
        countBlocks = 0;
        counter = 0;
    }

    @Override
    public void update() {
        if(blockIsBuilding) {
            if(counter == 0) {
                if(blockStructure.size() == 0) {
                    blockIsBuilding = false;
                    countBlocks = 0;
                } else {
                    worldObj.setBlockState(blockStructure.get(0).pos, blockStructure.get(0).state);

                    if(blockStructure.size() - 1 > 1) {
                        worldObj.setBlockState(blockStructure.get(blockStructure.size() - 1).pos, blockStructure.get(blockStructure.size() - 1).state);
                        blockStructure.remove(blockStructure.size() - 1);
                    }
                    blockStructure.remove(0);
                    countBlocks++;
                }
                counter = 0;
            } else {
                counter++;
            }
            System.out.println(countBlocks);
        }


    }

    @Override
    public void readFromNBT(NBTTagCompound compound) {
        super.readFromNBT(compound);
        inventory.deserializeNBT(compound.getCompoundTag("inventory"));
    }

    @Override
    public NBTTagCompound writeToNBT(NBTTagCompound compound) {
        compound.setTag("inventory", inventory.serializeNBT());
        return super.writeToNBT(compound);
    }

    @Override
    public boolean hasCapability(Capability<?> capability, EnumFacing facing) {
        return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing);
    }

    @Override
    public <T> T getCapability(Capability<T> capability, EnumFacing facing) {
        return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY ? (T)inventory : super.getCapability(capability, facing);
    }
}

 

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

    • Created new worlds and still had problems https://mclo.gs/ZoySn3o
    • Hello There! In the 169th episode of Hunger Games this is an EXTREMELY short game which we didn't think that was going to happen with 10 people in this game but this is an extremely great and fast game!  
    • I am dont understand what the cause of the crash was, due to me not knowing coding.  Here is the crash log   ---- Minecraft Crash Report ---- // On the bright side, I bought you a teddy bear! Time: 2024-05-21 17:43:48 EDT Description: Exception ticking world java.util.ConcurrentModificationException     at java.util.HashMap$HashIterator.nextNode(HashMap.java:1473)     at java.util.HashMap$KeyIterator.next(HashMap.java:1497)     at net.minecraft.entity.EntityTracker.sendLeashedEntitiesInChunk(EntityTracker.java:386)     at net.minecraft.server.management.PlayerChunkMapEntry.sendToPlayers(PlayerChunkMapEntry.java:162)     at net.minecraft.server.management.PlayerChunkMap.tick(SourceFile:165)     at net.minecraft.world.WorldServer.tick(WorldServer.java:227)     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:756)     at net.minecraft.server.dedicated.DedicatedServer.updateTimeLightAndEntities(DedicatedServer.java:397)     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:748) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Affected level --   Level name: world   All players: 2 total; [GCEntityPlayerMP['gStar351'/118636, l='world', x=-668.21, y=68.00, z=488.64], GCEntityPlayerMP['BulkRapier'/131507, l='world', x=-73.50, y=66.00, z=336.50]]   Chunk stats: ServerChunkCache: 601 Drop: 0   Level seed: -4867759358632803902   Level generator: ID 06 - BIOMESOP, ver 0. Features enabled: true   Level generator options:    Level spawn location: World: (32,64,256), Chunk: (at 0,4,0 in 2,16; contains blocks 32,0,256 to 47,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)   Level time: 1413585 game time, 3284 day time   Level dimension: 0   Level storage version: 0x04ABD - Anvil   Level weather: Rain time: 112654 (now: false), thunder time: 6708 (now: false)   Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false -- System Details --   Minecraft Version: 1.12.2   Operating System: Linux (amd64) version 4.15.0-176-generic   Java Version: 1.8.0_311, Oracle Corporation   Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation   Memory: 6334348984 bytes (6040 MB) / 8189378560 bytes (7810 MB) up to 22906667008 bytes (21845 MB)   JVM Flags: 2 total; -Xmx24576M -Xms512M   IntCache: cache: 0, tcache: 0, allocated: 4, tallocated: 105   FML: MCP 9.42 Powered by Forge 14.23.5.2854 269 mods loaded, 267 mods active        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored                | State  | ID                                | Version                  | Source                                                      | Signature                                |        |:------ |:--------------------------------- |:------------------------ |:----------------------------------------------------------- |:---------------------------------------- |        | LCHIJA | minecraft                         | 1.12.2                   | minecraft.jar                                               | None                                     |        | LCHIJA | mcp                               | 9.42                     | minecraft.jar                                               | None                                     |        | LCHIJA | FML                               | 8.0.99.99                | twitch_mc_eternal_lite_1.3.8.1.jar                          | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | forge                             | 14.23.5.2854             | twitch_mc_eternal_lite_1.3.8.1.jar                          | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | advancedrocketrycore              | 1                        | minecraft.jar                                               | None                                     |        | LCHIJA | ColorUtility                      | 1.0.4                    | minecraft.jar                                               | None                                     |        | LCHIJA | creativecoredummy                 | 1.0.0                    | minecraft.jar                                               | None                                     |        | LCHIJA | micdoodlecore                     | 4.0.6                    | minecraft.jar                                               | None                                     |        | LCHIJA | ivtoolkit                         | 1.3.3-1.12               | minecraft.jar                                               | None                                     |        | LCHIJA | littletilescore                   | 1.0.0                    | minecraft.jar                                               | None                                     |        | LCHIJA | openmodscore                      | 0.12.2                   | minecraft.jar                                               | None                                     |        | LCHIJA | foamfixcore                       | 7.7.4                    | minecraft.jar                                               | None                                     |        | LCHIJA | opencomputers|core                | 1.7.5.192                | minecraft.jar                                               | None                                     |        | LCHIJA | randompatches                     | 1.12.2-1.22.1.10         | randompatches-1.12.2-1.22.1.10.jar                          | None                                     |        | LCHIJA | tweakersconstruct                 | 1.12.2-1.6.0             | tweakersconstruct-1.12.2-1.6.0.jar                          | None                                     |        | LCHIJA | fastbench                         | 1.7.3                    | FastWorkbench-1.12.2-1.7.3.jar                              | None                                     |        | LCHIJA | actuallyadditions                 | 1.12.2-r152              | ActuallyAdditions-1.12.2-r152.jar                           | None                                     |        | LCHIJA | forgeendertech                    | 1.12.2-4.5.5.0           | ForgeEndertech-1.12.2-4.5.5.0-build.0561.jar                | None                                     |        | LCHIJA | adlods                            | 1.12.2-1.0.8.0           | AdLods-1.12.2-1.0.8.0-build.0504.jar                        | None                                     |        | LCHIJA | redstoneflux                      | 2.1.1                    | RedstoneFlux-1.12-2.1.1.1-universal.jar                     | None                                     |        | LCHIJA | cofhcore                          | 4.6.6                    | CoFHCore-1.12.2-4.6.6.1-universal.jar                       | None                                     |        | LCHIJA | libvulpes                         | 0.4.2.-75                | LibVulpes-1.12.2-0.4.2-75-universal.jar                     | None                                     |        | LCHIJA | advancedrocketry                  | 1.7.0.-232               | AdvancedRocketry-1.12.2-1.7.0-232-universal.jar             | None                                     |        | LCHIJA | appliedenergistics2               | rv6-stable-7             | appliedenergistics2-rv6-stable-7.jar                        | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |        | LCHIJA | bdlib                             | 1.14.3.12                | bdlib-1.14.3.12-mc1.12.2.jar                                | None                                     |        | LCHIJA | ae2stuff                          | 0.7.0.4                  | ae2stuff-0.7.0.4-mc1.12.2.jar                               | None                                     |        | LCHIJA | baubles                           | 1.5.2                    | Baubles-1.12-1.5.2.jar                                      | None                                     |        | LCHIJA | roots                             | 1.12.2-3.0.33            | Roots-1.12.2-3.0.33.jar                                     | None                                     |        | LCHIJA | mysticalworld                     | 1.12.2-1.9.8             | mysticalworld-1.12.2-1.9.8.jar                              | None                                     |        | LCHIJA | endercore                         | 1.12.2-0.5.76            | EnderCore-1.12.2-0.5.76.jar                                 | None                                     |        | LCHIJA | crafttweaker                      | 4.1.20                   | CraftTweaker2-1.12-4.1.20.635.jar                           | None                                     |        | LCHIJA | mtlib                             | 3.0.6                    | MTLib-3.0.6.jar                                             | None                                     |        | LCHIJA | modtweaker                        | 4.0.18                   | modtweaker-4.0.18.jar                                       | None                                     |        | LCHIJA | jei                               | 4.16.1.302               | jei_1.12.2-4.16.1.302.jar                                   | None                                     |        | LCHIJA | thaumcraft                        | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar                            | None                                     |        | LCHIJA | codechickenlib                    | 3.2.3.358                | CodeChickenLib-1.12.2-3.2.3.358-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | cofhworld                         | 1.4.0                    | CoFHWorld-1.12.2-1.4.0.1-universal.jar                      | None                                     |        | LCHIJA | thermalfoundation                 | 2.6.7                    | ThermalFoundation-1.12.2-2.6.7.1-universal.jar              | None                                     |        | LCHIJA | thermalexpansion                  | 5.5.7                    | ThermalExpansion-1.12.2-5.5.7.1-universal.jar               | None                                     |        | LCHIJA | enderio                           | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | mantle                            | 1.12-1.3.3.55            | Mantle-1.12-1.3.3.55.jar                                    | None                                     |        | LCHIJA | chisel                            | MC1.12.2-1.0.2.45        | Chisel-MC1.12.2-1.0.2.45.jar                                | None                                     |        | LCHIJA | enderiointegrationtic             | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | tombstone                         | 4.1.2                    | tombstone-4.1.2-1.12.2.jar                                  | None                                     |        | LCHIJA | quark                             | r1.6-179                 | Quark-r1.6-179.jar                                          | None                                     |        | LCHIJA | twilightforest                    | 3.11.1021                | twilightforest-1.12.2-3.11.1021-universal.jar               | None                                     |        | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183        | TConstruct-1.12.2-2.13.0.183.jar                            | None                                     |        | LCHIJA | p455w0rdslib                      | 2.3.161                  | p455w0rdslib-1.12.2-2.3.161.jar                             | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | ae2wtlib                          | 1.0.34                   | AE2WTLib-1.12.2-1.0.34.jar                                  | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | infinitylib                       | 1.12.2-1.12.1            | infinitylib-1.12.1.jar                                      | None                                     |        | LCHIJA | agricraft                         | 2.12.0-1.12.2-b2         | agricraft-2.12.0-1.12.2-b2.jar                              | None                                     |        | LCHIJA | aiimprovements                    | 0.0.1.3                  | AIImprovements-1.12-0.0.1b3.jar                             | None                                     |        | LCHIJA | akashictome                       | 1.2-12                   | AkashicTome-1.2-12.jar                                      | None                                     |        | LCHIJA | applecore                         | 3.4.0                    | AppleCore-mc1.12.2-3.4.0.jar                                | None                                     |        | LCHIJA | appleskin                         | 1.0.14                   | AppleSkin-mc1.12-1.0.14.jar                                 | None                                     |        | LCHIJA | architecturecraft                 | @VERSION@                | architecturecraft-1.12-3.98.jar                             | None                                     |        | LCHIJA | conarm                            | 1.2.5.10                 | conarm-1.12.2-1.2.5.10.jar                                  | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | armoryexpansion                   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | armoryexpansion-custommaterials   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | llibrary                          | 1.7.20                   | llibrary-1.7.20-1.12.2.jar                                  | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |        | LCHIJA | iceandfire                        | 1.9.1                    | iceandfire-1.9.1-1.12.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-iceandfire        | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | armoryexpansion-matteroverdrive   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | aroma1997core                     | 2.0.0.2.b167             | Aroma1997Core-1.12.2-2.0.0.2.b167.jar                       | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | aromabackup                       | 3.0.0.0.b135             | AromaBackup-1.12.2-3.0.0.0.b135.jar                         | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | aromabackuprecovery               | 3.0.0.0.b135             | AromaBackup-1.12.2-3.0.0.0.b135.jar                         | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | artifacts                         | 1.12.2-1.2.3             | Artifacts-1.12.2-1.2.3.jar                                  | None                                     |        | LCHIJA | astralsorcery                     | 1.10.27                  | astralsorcery-1.12.2-1.10.27.jar                            | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |        | LCHIJA | attributefix                      | 1.0.4                    | AttributeFix-1.12.2-1.0.4.jar                               | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | atum                              | 2.0.20                   | Atum-1.12.2-2.0.20.jar                                      | None                                     |        | LCHIJA | mdecore                           | 1.12-1.1                 | mdecore-1.12-1.1.jar                                        | None                                     |        | LCHIJA | autooredictconv                   | 1.12-1.0.1               | autooredictconv-1.12-1.0.1.jar                              | None                                     |        | LCHIJA | autoreglib                        | 1.3-32                   | AutoRegLib-1.3-32.jar                                       | None                                     |        | LCHIJA | badwithernocookiereloaded         | 1.12.2-3.4.18            | badwithernocookiereloaded-1.12.2-3.4.18.jar                 | None                                     |        | LCHIJA | battletowers                      | 1.6.5                    | BattleTowers-1.12.2.jar                                     | None                                     |        | LCHIJA | betterbuilderswands               | 0.13.2                   | BetterBuildersWands-1.12.2-0.13.2.271+5997513.jar           | None                                     |        | LCHIJA | botania                           | r1.10-363                | Botania r1.10-363.jar                                       | None                                     |        | LCHIJA | mowziesmobs                       | 1.5.8                    | mowziesmobs-1.5.8.jar                                       | None                                     |        | LCHIJA | patchouli                         | 1.0-23.6                 | Patchouli-1.0-23.6.jar                                      | None                                     |        | LCHIJA | bewitchment                       | 0.22.63                  | bewitchment-1.12.2-0.0.22.64.jar                            | None                                     |        | LCHIJA | bibliocraft                       | 2.4.5                    | BiblioCraft[v2.4.5][MC1.12.2].jar                           | None                                     |        | LCHIJA | biomesoplenty                     | 7.0.1.2444               | BiomesOPlenty-1.12.2-7.0.1.2444-universal.jar               | None                                     |        | LCHIJA | biomestaff                        | 1.0.0                    | BiomeStaff-1.12.2-1.0.0.jar                                 | None                                     |        | LCHIJA | guideapi                          | 1.12-2.1.8-63            | Guide-API-1.12-2.1.8-63.jar                                 | None                                     |        | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105         | BloodMagic-1.12.2-2.4.3-105.jar                             | None                                     |        | LCHIJA | bookshelf                         | 2.3.590                  | Bookshelf-1.12.2-2.3.590.jar                                | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | brokenwings                       | 2.0.0                    | brokenwings-3.0.0.jar                                       | None                                     |        | LCHIJA | buildinggadgets                   | 2.8.4                    | BuildingGadgets-2.8.4.jar                                   | None                                     |        | LCHIJA | reborncore                        | 3.19.5                   | RebornCore-FORK-1.12.2-3.19.5-universal.jar                 | None                                     |        | LCHIJA | techreborn                        | 2.27.3.1084              | TechReborn-1.12.2-2.27.3.1084-universal.jar                 | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |        | LCHIJA | forestry                          | 5.8.2.422                | forestry_1.12.2-5.8.2.422.jar                               | None                                     |        | LCHIJA | careerbees                        | 1.0                      | careerbees-0.4.0.jar                                        | None                                     |        | LCHIJA | chameleon                         | 1.12-4.1.3               | Chameleon-1.12-4.1.3.jar                                    | None                                     |        | LCHIJA | champions                         | 1.12.2-1.0.11.10         | champions-1.12.2-1.0.11.10.jar                              | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | chancecubes                       | 1.12.2-5.0.2.385         | ChanceCubes-1.12.2-5.0.2.385.jar                            | None                                     |        | LCHIJA | charm                             | 1.4                      | Charm-1.12.2-1.4.1.jar                                      | None                                     |        | LCHIJA | chiselsandbits                    | 14.33                    | chiselsandbits-14.33.jar                                    | None                                     |        | LCHIJA | chunkpregenerator                 | 2.5.0                    | Chunk Pregenerator-V1.12-2.5.0.jar                          | None                                     |        | LCHIJA | clumps                            | 3.1.2                    | Clumps-3.1.2.jar                                            | None                                     |        | LCHIJA | cyclopscore                       | 1.6.7                    | CyclopsCore-1.12.2-1.6.7.jar                                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | commoncapabilities                | 2.4.8                    | CommonCapabilities-1.12.2-2.4.8.jar                         | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | cookingforblockheads              | 6.5.0                    | CookingForBlockheads_1.12.2-6.5.0.jar                       | None                                     |        | LCHIJA | cosmeticarmorreworked             | 1.12.2-v5a               | CosmeticArmorReworked-1.12.2-v5a.jar                        | aaaf83332a11df02406e9f266b1b65c1306f0f76 |        | LCHIJA | craftingtweaks                    | 8.1.9                    | CraftingTweaks_1.12.2-8.1.9.jar                             | None                                     |        | LCHIJA | craftstudioapi                    | 1.0.0                    | CraftStudio-1.0.0.93-mc1.12-alpha.jar                       | None                                     |        | LCHIJA | crafttweakerjei                   | 2.0.3                    | CraftTweaker2-1.12-4.1.20.635.jar                           | None                                     |        | LCHIJA | creativecore                      | 1.10.0                   | CreativeCore_v1.10.61_mc1.12.2.jar                          | None                                     |        | LCHIJA | cucumber                          | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                                   | None                                     |        | LCHIJA | culinaryconstruct                 | 1.3.4                    | culinaryconstruct-1.3.4.jar                                 | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 |        | LCHIJA | customizeddungeonloot             | 1.0.3                    | Customized-Dungeon-Loot-1.12 -(v.1.0.3).jar                 | None                                     |        | LCHIJA | waila                             | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                                 | None                                     |        | LCHIJA | stg                               | 1.12.2-1.2.3             | stg-1.12.2-1.2.3.jar                                        | None                                     |        | LCHIJA | danknull                          | 1.7.101                  | DankNull-1.12.2-1.7.101.jar                                 | 644f38521a349310a5dae0239577dc7beebefaec |        | LCHIJA | darknesslib                       | 1.1.0                    | DarknessLib-1.12.2-1.1.0.jar                                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | doggytalents                      | 1.15.1.6                 | DoggyTalents-1.12.2-1.15.1.6.jar                            | None                                     |        | LCHIJA | dungeontactics                    | DT-0.16.9                | DungeonTactics-1.12.2-0.16.9.jar                            | None                                     |        | LCHIJA | ebwizardry                        | 4.3.4                    | ElectroblobsWizardry-4.3.4-MC1.12.2.jar                     | None                                     |        | LCHIJA | enderiobase                       | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduits                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduitsappliedenergistics | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | opencomputers                     | 1.7.5.192                | OpenComputers-MC1.12.2-1.7.5.192.jar                        | None                                     |        | LCHIJA | enderioconduitsopencomputers      | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduitsrefinedstorage     | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiointegrationforestry        | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiointegrationticlate         | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioinvpanel                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | ftblib                            | 5.4.7.2                  | FTBLib-5.4.7.2.jar                                          | None                                     |        | LCHIJA | enderiomachines                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiopowertools                 | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | mcmultipart                       | 2.5.3                    | MCMultiPart-2.5.3.jar                                       | None                                     |        | LCHIJA | mekanism                          | 1.12.2-9.8.3.390         | Mekanism-1.12.2-9.8.3.390.jar                               | None                                     |        | LCHIJA | gasconduits                       | 5.3.70                   | EnderIO-conduits-mekanism-1.12.2-5.3.70.jar                 | None                                     |        | LCHIJA | enderstorage                      | 2.4.6.137                | EnderStorage-1.12.2-2.4.6.137-universal.jar                 | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | erebus                            | 1.0.32                   | Erebus-1.0.32.jar                                           | None                                     |        | LCHIJA | extracells                        | 2.6.5                    | ExtraCells-1.12.2-2.6.5.jar                                 | None                                     |        | LCHIJA | extrautils2                       | 1.0                      | extrautils2-1.12-1.9.9.jar                                  | None                                     |        | LCHIJA | farmingforblockheads              | 3.1.28                   | FarmingForBlockheads_1.12.2-3.1.28.jar                      | None                                     |        | LCHIJA | mod_lavacow                       | 1.2.4                    | Fish's Undead Rising-1.2.4a.jar                             | None                                     |        | LCHIJA | sonarcore                         | 5.0.19                   | sonarcore-1.12.2-5.0.19-20.jar                              | None                                     |        | LCHIJA | fluxnetworks                      | 4.1.0                    | FluxNetworks-1.12.2-4.1.1.34.jar                            | None                                     |        | LCHIJA | foamfix                           | 0.10.14-1.12.2           | foamfix-0.10.14-1.12.2.jar                                  | None                                     |        | LCHIJA | forgelin                          | 1.8.4                    | Forgelin-1.8.4.jar                                          | None                                     |        | LCHIJA | forgemultipartcbe                 | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | microblockcbe                     | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | None                                     |        | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | None                                     |        | LCHIJA | from_the_depths                   | @VERSION@                | from_the_depths-1.2.1.0.jar                                 | None                                     |        | LCHIJA | ftbutilities                      | 5.4.1.131                | FTBUtilities-5.4.1.131.jar                                  | None                                     |        | LCHIJA | itemfilters                       | 1.0.4.2                  | ItemFilters-1.0.4.2.jar                                     | None                                     |        | LCHIJA | reskillable                       | 1.12.2-1.13.0            | Reskillable-1.12.2-1.13.0.jar                               | None                                     |        | LCHIJA | ftbquests                         | 1202.9.0.15              | FTBQuests-1202.9.0.15.jar                                   | None                                     |        | LCHIJA | ftbmoney                          | 1.2.0.47                 | FTBMoney-1.2.0.47.jar                                       | None                                     |        | LCHIJA | futuremc                          | 0.2.6                    | future-mc-1.12.2-0.2.6.1.jar                                | None                                     |        | LCHIJA | galacticraftcore                  | 4.0.6                    | Galacticraft-1.12.2-4.0.6.jar                               | None                                     |        | LCHIJA | galacticraftplanets               | 4.0.6                    | Galacticraft-1.12.2-4.0.6.jar                               | None                                     |        | LCHIJA | gottschcore                       | 1.14.0                   | GottschCore-mc1.12.2-f14.23.5.2854-v1.14.0.jar              | None                                     |        | LCHIJA | grue                              | 1.8.0                    | Grue-1.12.2-1.8.0.jar                                       | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | gunpowderlib                      | 1.12.2-1.1               | GunpowderLib-1.12.2-1.1.jar                                 | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | hardcoredarkness                  | 2.0                      | HardcoreDarkness-MC1.12.2-2.0.jar                           | d72e0dd57935b3e9476212aea0c0df352dd76291 |        | LCHIJA | icbmclassic                       | 1.12.2-4.0.1.75          | ICBM-classic-1.12.2-4.0.1b75.jar                            | None                                     |        | LCHIJA | immersiveengineering              | 0.12-98                  | ImmersiveEngineering-0.12-98.jar                            | None                                     |        | LCHIJA | immersivecables                   | 1.3.2                    | ImmersiveCables-1.12.2-1.3.2.jar                            | None                                     |        | LCHIJA | immersivepetroleum                | 1.1.9                    | immersivepetroleum-1.12.2-1.1.9.jar                         | None                                     |        | LCHIJA | improvedbackpacks                 | 1.12.2-1.5.0.0           | ImprovedBackpacks-1.12.2-1.5.0.0.jar                        | None                                     |        | LCHIJA | incontrol                         | 3.9.18                   | incontrol-1.12-3.9.18.jar                                   | None                                     |        | LCHIJA | teslacorelib                      | 1.0.17                   | tesla-core-lib-1.12.2-1.0.17.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | industrialforegoing               | 1.12.2-1.12.2            | industrialforegoing-1.12.2-1.12.13-237.jar                  | None                                     |        | LCHIJA | instantunify                      | 1.1.2                    | instantunify-1.12.2-1.1.2.jar                               | None                                     |        | LCHIJA | mysticalagriculture               | 1.7.5                    | MysticalAgriculture-1.12.2-1.7.5.jar                        | None                                     |        | LCHIJA | mysticalagradditions              | 1.3.2                    | MysticalAgradditions-1.12.2-1.3.2.jar                       | None                                     |        | LCHIJA | nuclearcraft                      | 2.18y                    | NuclearCraft-2.18y-1.12.2.jar                               | None                                     |        | LCHIJA | harvestcraft                      | 1.12.2zb                 | Pam's HarvestCraft 1.12.2zg.jar                             | None                                     |        | LCHIJA | randomthings                      | 4.2.7.4                  | RandomThings-MC1.12.2-4.2.7.4.jar                           | d72e0dd57935b3e9476212aea0c0df352dd76291 |        | LCHIJA | mcjtylib_ng                       | 3.5.4                    | mcjtylib-1.12-3.5.4.jar                                     | None                                     |        | LCHIJA | rftools                           | 7.73                     | rftools-1.12-7.73.jar                                       | None                                     |        | LCHIJA | integrationforegoing              | 1.12.2-1.11              | IntegrationForegoing-1.12.2-1.11.jar                        | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | inventorypets                     | 2.0.15                   | inventorypets-1.12-2.0.15.jar                               | None                                     |        | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar                                    | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |        | LCHIJA | itlt                              | 1.0.4                    | itlt-1.12.x-1.0.4.jar                                       | None                                     |        | LCHIJA | jaopca                            | 1.12.2-2.2.8.103         | JAOPCA-1.12.2-2.2.8.103.jar                                 | None                                     |        | LCHIJA | oredictinit                       | 1.12.2-2.2.1.71          | JAOPCA-1.12.2-2.2.8.103.jar                                 | None                                     |        | LCHIJA | journeymap                        | 1.12.2-5.7.1             | journeymap-1.12.2-5.7.1.jar                                 | None                                     |        | LCHIJA | jee                               | 1.0.8                    | JustEnoughEnergistics-1.12.2-1.0.8.jar                      | None                                     |        | LCHIJA | laggoggles                        | FAT-1.12.2-4.11-92       | LagGoggles-FAT-1.12.2-4.11-92.jar                           | None                                     |        | LCHIJA | letsencryptcraft                  | @VERSION@                | letsencryptcraft-1.10.2-1.2.0.jar                           | None                                     |        | LCHIJA | levelup2                          | ${version}               | levelup2-1.5.8.jar                                          | None                                     |        | LCHIJA | littletiles                       | 1.5.0                    | LittleTiles_v1.5.14_mc1.12.2.jar                            | None                                     |        | LCHIJA | lodsofemone                       | 0.1                      | LodsOfEmone-0.1.jar                                         | None                                     |        | LCHIJA | login_shield                      | 1.12.2-6-g5654706        | Login_Shield-1.12.2-6-g5654706.jar                          | None                                     |        | LCHIJA | timecore                          | 1.0.1.1                  | TimeCore-1.12.2-1.0.1.1.jar                                 | None                                     |        | LCHIJA | lootgames                         | 1.0.3.1                  | LootGames-1.12.2-1.0.3.1.jar                                | None                                     |        | LCHIJA | lunatriuscore                     | 1.2.0.42                 | LunatriusCore-1.12.2-1.2.0.42-universal.jar                 | None                                     |        | LCHIJA | immersivetech                     | 1.8.94                   | MCTImmersiveTechnology-1.12.2-1.8.94.jar                    | None                                     |        | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390         | MekanismGenerators-1.12.2-9.8.3.390.jar                     | None                                     |        | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390         | MekanismTools-1.12.2-9.8.3.390.jar                          | None                                     |        | LCHIJA | mtrm                              | 1.2.2.30                 | MineTweakerRecipeMaker-1.12.2-1.2.2.30.jar                  | None                                     |        | LCHIJA | moartinkers                       | 0.6.0                    | moartinkers-0.6.0.jar                                       | None                                     |        | LCHIJA | mob_grinding_utils                | 0.3.13                   | MobGrindingUtils-0.3.13.jar                                 | None                                     |        | LCHIJA | numina                            | 1.12.2-1.0.38            | Numina-1.12.2-1.0.38.jar                                    | None                                     |        | LCHIJA | powersuits                        | 1.12.2-1.0.46            | ModularPowersuits-1.12.2-1.0.46.jar                         | None                                     |        | LCHIJA | morpheus                          | 1.12.2-3.5.106           | Morpheus-1.12.2-3.5.106.jar                                 | None                                     |        | LCHIJA | mputils                           | 1.5.6                    | MPUtils-1.12.2-1.5.7.jar                                    | None                                     |        | LCHIJA | naturesaura                       | 18.1                     | NaturesAura-18.1.jar                                        | None                                     |        | LCHIJA | naturescompass                    | 1.8.5                    | NaturesCompass-1.12.2-1.8.5.jar                             | None                                     |        | LCHIJA | netherportalfix                   | 5.3.17                   | NetherPortalFix_1.12.1-5.3.17.jar                           | None                                     |        | LCHIJA | recipehandler                     | 0.13                     | NoMoreRecipeConflict-0.13(1.12.2).jar                       | None                                     |        | LCHIJA | neid                              | 1.5.4.4                  | NotEnoughIDs-1.5.4.4.jar                                    | None                                     |        | LCHIJA | omlib                             | 3.1.4-249                | omlib-1.12.2-3.1.4-249.jar                                  | None                                     |        | LCHIJA | openmods                          | 0.12.2                   | OpenModsLib-1.12.2-0.12.2.jar                               | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openblocks                        | 1.8.1                    | OpenBlocks-1.12.2-1.8.1.jar                                 | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openmodularturrets                | 3.1.12-378               | openmodularturrets-1.12.2-3.1.12-378.jar                    | None                                     |        | LCHIJA | oreexcavation                     | 1.4.150                  | OreExcavation-1.4.150.jar                                   | None                                     |        | LCHIJA | pamscookables                     | 1.1                      | pamscookables-1.1.jar                                       | None                                     |        | LCHIJA | placebo                           | 1.6.0                    | Placebo-1.12.2-1.6.0.jar                                    | None                                     |        | LCHIJA | thermaldynamics                   | 2.5.6                    | ThermalDynamics-1.12.2-2.5.6.1-universal.jar                | None                                     |        | LCHIJA | simplyjetpacks                    | 2.2.14.67                | SimplyJetpacks2-1.12.2-2.2.14.67.jar                        | None                                     |        | LCHIJA | plustic                           | 8.0.1.0                  | plustic-8.0.1.0.jar                                         | None                                     |        | LCHIJA | quarkoddities                     | 1                        | QuarkOddities-1.12.2.jar                                    | None                                     |        | LCHIJA | rats                              | 3.2.14                   | rats-3.2.14-1.12.2.jar                                      | None                                     |        | LCHIJA | reccomplex                        | 1.4.8.2                  | RecurrentComplex-1.4.8.2.jar                                | None                                     |        | LCHIJA | rftoolsdim                        | 5.71                     | rftoolsdim-1.12-5.71.jar                                    | None                                     |        | LCHIJA | scannable                         | 1.6.3.26                 | Scannable-MC1.12.2-1.6.3.26.jar                             | None                                     |        | LCHIJA | shadowmc                          | 3.8.0                    | ShadowMC-1.12-3.8.0.jar                                     | None                                     |        | LCHIJA | storagedrawers                    | 5.2.2                    | StorageDrawers-1.12.2-5.4.2.jar                             | None                                     |        | LCHIJA | storagedrawersextra               | @VERSION@                | StorageDrawersExtras-1.12-3.1.0.jar                         | None                                     |        | LCHIJA | stupidthings                      | 1.1.6                    | Stupid Things-1.12.2-1.1.6.jar                              | None                                     |        | LCHIJA | taiga                             | 1.12.2-1.3.3             | taiga-1.12.2-1.3.4.jar                                      | None                                     |        | LCHIJA | tfspellpack                       | 1.1.0                    | TFSpellPack-1.1.0-MC1.12.2.jar                              | None                                     |        | LCHIJA | thaumictinkerer                   | 1.12.2-5.0-620a0c5       | thaumictinkerer-1.12.2-5.0-620a0c5.jar                      | None                                     |        | LCHIJA | beneath                           | 1.7.0                    | The Beneath-1.12.2-1.7.0.jar                                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | theaurorian                       | 1.12.2-Release           | theaurorian-1.12.2-release-mar2321.jar                      | None                                     |        | LCHIJA | thermalinnovation                 | 0.3.6                    | ThermalInnovation-1.12.2-0.3.6.1-universal.jar              | None                                     |        | LCHIJA | tinkersjei                        | 1.2                      | tinkersjei-1.2.jar                                          | None                                     |        | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar                         | None                                     |        | LCHIJA | totemic                           | 1.12.2-0.11.6            | Totemic-1.12.2-0.11.6.jar                                   | 21d11d7bf4d97b465382a1f95428029aac6daaea |        | LCHIJA | treasure2                         | 1.16.0                   | Treasure2-mc1.12.2-f14.23.5.2854-v1.16.0.jar                | None                                     |        | LCHIJA | treasure2_twilight_forest_lp      | 1.0.0                    | Treasure2TwilightForestLP-mc1.12.2-f14.23.5.2854-v1.0.0.jar | None                                     |        | LCHIJA | treasure2_wizardry_lp             | 1.0.0                    | Treasure2WizardryLP-mc1.12.2-f14.23.5.2854-v1.0.0.jar       | None                                     |        | LCHIJA | vampiresneedumbrellas             | 1.4                      | VampiresNeedUmbrellas-1.12.2-1.5.jar                        | None                                     |        | LCHIJA | vampirism                         | 1.6.2                    | Vampirism-1.12.2-1.6.2.jar                                  | None                                     |        | LCHIJA | teamlapen-lib                     | 1.6.2                    | Vampirism-1.12.2-1.6.2.jar                                  | None                                     |        | LCHIJA | vampirism_integrations            | vampirism_integrations   | VampirismIntegrations-1.12.2-1.3.0.jar                      | None                                     |        | LCHIJA | vanillafix                        | 1.0.10-150               | VanillaFix-1.0.10-150.jar                                   | None                                     |        | LCHIJA | wanionlib                         | 1.12.2-2.5               | WanionLib-1.12.2-2.5.jar                                    | None                                     |        | LCHIJA | waystones                         | 4.1.0                    | Waystones_1.12.2-4.1.0.jar                                  | None                                     |        | LCHIJA | wings                             | 1.1.6                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | mowzies_wings                     | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | bauble_wings                      | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | wct                               | 3.12.97                  | WirelessCraftingTerminal-1.12.2-3.12.97.jar                 | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | wgblockreplacer                   | 2.3.1+1.12.2             | WorldGen-Block-Replacer-2.3.1+1.12.2.jar                    | None                                     |        | LCHIJA | wrcbe                             | 2.3.2                    | WR-CBE-1.12.2-2.3.2.33-universal.jar                        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | xnet                              | 1.8.2                    | xnet-1.12-1.8.2.jar                                         | None                                     |        | LCHIJA | ynot                              | 0.2.4                    | YNot-0.2.4.jar                                              | None                                     |        | LCHIJA | zerocore                          | 1.12.2-0.1.2.9           | zerocore-1.12.2-0.1.2.9.jar                                 | None                                     |        | LCHIJA | orelib                            | 3.6.0.1                  | OreLib-1.12.2-3.6.0.1.jar                                   | 7a2128d395ad96ceb9d9030fbd41d035b435753a |        | LCHIJA | rf-capability-adapter             | 1.1.1                    | capabilityadapter-1.1.1.jar                                 | None                                     |        | LCHIJA | solcarrot                         | 1.8.4                    | solcarrot-1.12.2-1.8.4.jar                                  | None                                     |        | LCHIJA | structurize                       | 1.12.2-0.10.277-RELEASE  | structurize-1.12.2-0.10.277-RELEASE.jar                     | None                                     |        | LCHIJA | minecolonies                      | 1.12.2-0.11.841-ALPHA    | minecolonies-1.12.2-0.11.841-ALPHA-universal.jar            | None                                     |        | LCHIJA | techreborn_compat                 | 1.0.0                    | TechReborn-ModCompatibility-1.12.2-1.4.0.76.jar             | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |        | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.6             | phosphor-1.12.2-0.2.6+build50-universal.jar                 | f0387d288626cc2d937daa504e74af570c52a2f1 |        | LCHIJA | midnight                          | 0.3.5                    | themidnight-0.3.5.jar                                       | None                                     |        | LCHIJA | armoryexpansion-conarm            | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | mysticallib                       | 1.12.2-1.10.0            | mysticallib-1.12.2-1.10.0.jar                               | None                                     |        | LCHIJA | teslacorelib_registries           | 1.0.17                   | tesla-core-lib-1.12.2-1.0.17.jar                            | None                                     |        | LCHIJA | tweakersconstructpostload         | 1.12.2-1.6.0             | tweakersconstruct-1.12.2-1.6.0.jar                          | None                                     |        | LCHIJA | unidict                           | 1.12.2-3.0.8             | UniDict-1.12.2-3.0.8.jar                                    | None                                     |        | LCHIJA | wrapup                            | 1.12-1.1.3               | WrapUp-1.12-1.1.3.jar                                       | None                                     |        | UD     | mdecore-core                      | 1.0                      | minecraft.jar                                               | None                                     |        | UD     | mobends_wings                     | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |   Loaded coremods (and transformers): wings (wings-1.1.6-1.12.2.jar)                                         me.paulf.wings.server.asm.WingsRuntimePatcher                                         me.paulf.wings.server.asm.mobends.WingsMoBendsRuntimePatcher                                       IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)                                         blusunrize.immersiveengineering.common.asm.IEClassTransformer                                       CreativePatchingLoader (CreativeCore_v1.10.61_mc1.12.2.jar)                                                                                TransformerLoader (OpenComputers-MC1.12.2-1.7.5.192.jar)                                         li.cil.oc.common.asm.ClassTransformer                                       MicdoodlePlugin (Galacticraft-1.12.2-4.0.6.jar)                                         micdoodle8.mods.miccore.MicdoodleTransformer                                       MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)                                         mekanism.coremod.KeybindingMigrationHelper                                       BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.22.64.jar)                                                                                Quark Plugin (Quark-r1.6-179.jar)                                         vazkii.quark.base.asm.ClassTransformer                                       AppleCore (AppleCore-mc1.12.2-3.4.0.jar)                                         squeek.applecore.asm.TransformerModuleHandler                                       iceandfire (iceandfire-1.9.1-1.12.2.jar)                                         com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher                                       Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)                                         invtweaks.forge.asm.ContainerTransformer                                       EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)                                         com.enderio.core.common.transform.EnderCoreTransformer                                         com.enderio.core.common.transform.SimpleMixinPatcher                                       PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)                                                                                LittlePatchingLoader (LittleTiles_v1.5.14_mc1.12.2.jar)                                         com.creativemd.littletiles.LittleTilesTransformer                                       ratscore (rats-3.2.14-1.12.2.jar)                                         com.github.alexthe666.rats.server.misc.RatsRuntimePatcher                                       LevelUpCore (levelup2-1.5.8.jar)                                                                                CoreMod (Aroma1997Core-1.12.2-2.0.0.2.b167.jar)                                                                                LoadingPlugin (HardcoreDarkness-MC1.12.2-2.0.jar)                                         lumien.hardcoredarkness.asm.ClassTransformer                                       IvToolkit (IvToolkit-1.3.3-1.12.jar)                                                                                LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)                                         codersafterdark.reskillable.base.asm.ClassTransformer                                       ColorUtilityCorePlugin (ColorUtility-universal-1.0.4.jar)                                         com.Axeryok.ColorUtility.ColorUtilityTransformer                                       FutureMC (future-mc-1.12.2-0.2.6.1.jar)                                         thedarkcolour.futuremc.asm.CoreTransformer                                       LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)                                         lumien.randomthings.asm.ClassTransformer                                       RandomPatches (randompatches-1.12.2-1.22.1.10.jar)                                         com.therandomlabs.randompatches.core.RPTransformer                                       ForgelinPlugin (Forgelin-1.8.4.jar)                                                                                midnight (themidnight-0.3.5.jar)                                         com.mushroom.midnight.core.transformer.MidnightClassTransformer                                       Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.14-1.12.2.jar)                                         pl.asie.foamfix.coremod.FoamFixTransformer                                       OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)                                         openmods.core.OpenModsClassTransformer                                       CorePlugin (ForgeEndertech-1.12.2-4.5.5.0-build.0561.jar)                                                                                serializationisbad (serializationisbad-1.3.jar)                                         io.dogboy.serializationisbad.legacyforge.SIBTransformer                                       AdvancedRocketryPlugin (AdvancedRocketry-1.12.2-1.7.0-232-universal.jar)                                         zmaster587.advancedRocketry.asm.ClassTransformer                                       CharmLoadingPlugin (Charm-1.12.2-1.4.1.jar)                                         svenhjol.charm.base.CharmClassTransformer                                       Plugin (NotEnoughIDs-1.5.4.4.jar)                                         ru.fewizz.neid.asm.Transformer                                       llibrary (llibrary-core-1.0.11-1.12.2.jar)                                         net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer                                         net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher                                       AstralCore (astralsorcery-1.12.2-1.10.27.jar)                                                                                MDECore-Core (mdecore-1.12-1.1.jar)                                         com.mattdahepic.mdecore.asm.TickrateTransformer                                       VanillaFixLoadingPlugin (VanillaFix-1.0.10-150.jar)   OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:ENABLED],[player_render_hook:ENABLED],[horse_null_fix:FINISHED]   AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768   Ender IO: No known problems detected.             Authlib is : /home/mch/multicraft/servers/server358624/minecraft_server.1.12.2.jar
  • Topics

×
×
  • Create New...

Important Information

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