Jump to content

Exception Ticking World error in Minecraft 1.8 Forge


Recommended Posts

Here is the crash report:

 

---- Minecraft Crash Report ----

// Quite honestly, I wouldn't worry myself about that.

 

Time: 5/4/15 11:37 AM

Description: Exception ticking world

 

java.lang.IllegalArgumentException: bound must be positive

at java.util.Random.nextInt(Unknown Source)

at ary.a(SourceFile:153)

at ary.a(SourceFile:49)

at arm.a(SourceFile:389)

at asb.a(SourceFile:47)

at bgv.a(SourceFile:472)

at qs.a(SourceFile:174)

at bfh.a(SourceFile:843)

at qs.c(SourceFile:104)

at qs.d(SourceFile:116)

at aqu.a(SourceFile:276)

at qt.h(SourceFile:327)

at qt.c(SourceFile:202)

at net.minecraft.server.MinecraftServer.z(SourceFile:599)

at net.minecraft.server.MinecraftServer.y(SourceFile:531)

at cyk.y(SourceFile:155)

at net.minecraft.server.MinecraftServer.run(SourceFile:447)

at java.lang.Thread.run(Unknown Source)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at java.util.Random.nextInt(Unknown Source)

at ary.a(SourceFile:153)

at ary.a(SourceFile:49)

at arm.a(SourceFile:389)

at asb.a(SourceFile:47)

at bgv.a(SourceFile:472)

at qs.a(SourceFile:174)

at bfh.a(SourceFile:843)

at qs.c(SourceFile:104)

at qs.d(SourceFile:116)

at aqu.a(SourceFile:276)

at qt.h(SourceFile:327)

at qt.c(SourceFile:202)

 

-- Affected level --

Details:

Level name: Newcraft City HD (1.8)

All players: 1 total; [qw['MatthewStevenGo'/150, l='Newcraft City HD (1.8)', x=-1371.29, y=11.33, z=-288.00]]

Chunk stats: ServerChunkCache: 1415 Drop: 0

Level seed: -917822615472338944

Level generator: ID 00 - default, ver 1. Features enabled: true

Level generator options:

Level spawn location: 1912.00,4.00,-89.00 - World: (1912,4,-89), Chunk: (at 8,0,7 in 119,-6; contains blocks 1904,0,-96 to 1919,255,-81), Region: (3,-1; contains chunks 96,-32 to 127,-1, blocks 1536,0,-512 to 2047,255,-1)

Level time: 4388327 game time, 31877 day time

Level dimension: 0

Level storage version: 0x04ABD - Anvil

Level weather: Rain time: 112254 (now: false), thunder time: 164764 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

Stacktrace:

at net.minecraft.server.MinecraftServer.z(SourceFile:599)

at net.minecraft.server.MinecraftServer.y(SourceFile:531)

at cyk.y(SourceFile:155)

at net.minecraft.server.MinecraftServer.run(SourceFile:447)

at java.lang.Thread.run(Unknown Source)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 7 (x86) version 6.1

Java Version: 1.8.0_40, Oracle Corporation

Java VM Version: Java HotSpot Client VM (mixed mode), Oracle Corporation

Memory: 224332976 bytes (213 MB) / 523501568 bytes (499 MB) up to 523501568 bytes (499 MB)

JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx512M -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M

IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95

Profiler Position: N/A (disabled)

Player Count: 1 / 8; [qw['MatthewStevenGo'/150, l='Newcraft City HD (1.8)', x=-1371.29, y=11.33, z=-288.00]]

Type: Integrated Server (map_client.txt)

Is Modded: Very likely; Jar signature invalidated

 

Can you tell me what is going on?

Link to comment
Share on other sites

You do not have Forge installed, this is not a FOrge issue in any way.

You say it's the world thats corrupt, delete the world and start again.

We do not support vanilla here. Because we can't be responsible for all of the bugs in it. We support Forge.

There is nothing we can do for you.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

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

    • As the title says i keep on crashing on forge 1.20.1 even without any mods downloaded, i have the latest drivers (nvidia) and vanilla minecraft works perfectly fine for me logs: https://pastebin.com/5UR01yG9
    • Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this :  The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) :  The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock :   Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item :    @Override     public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) {         if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) {             BlockPos blockPos = pContext.getClickedPos();             BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos));             if (secondBlockPos != null) {                 createFrozenBlock(pContext, secondBlockPos);             }             createFrozenBlock(pContext, blockPos);             return InteractionResult.SUCCESS;         }         return super.useOn(pContext);     }     public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) {         BlockState oldState = pContext.getLevel().getBlockState(blockPos);         BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null;         CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null;         if (oldBlockEntity != null) {             pContext.getLevel().removeBlockEntity(blockPos);         }         BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData);         pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock);     }     public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) {         BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState();         ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData);         return FrozenBlock;     }  
    • It is an issue with quark - update it to this build: https://www.curseforge.com/minecraft/mc-mods/quark/files/3642325
    • Remove Instant Massive Structures Mod from your server     Add new crash-reports with sites like https://paste.ee/  
  • Topics

×
×
  • Create New...

Important Information

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