
Emily_Ravenhold
Members-
Posts
22 -
Joined
-
Last visited
Everything posted by Emily_Ravenhold
-
It works! Thanks!
-
1.15.2 do you mean?
-
java version "1.8.0_231" Java(TM) SE Runtime Environment (build 1.8.0_231-b11) Java HotSpot(TM) 64-Bit Server VM (build 25.231-b11, mixed mode)
-
what should i do to fix it? i can update forge/minecraft/downgrade java version
-
outdated version? it is 1.15.2 latest, nope?
-
Nope, it didn't help.
-
Pushed.
-
It's okay. @diesieben07 can you look at that please ?
-
if it was different i sent it, but it is not. https://pastebin.com/rPPeV0Pe crashlog: https://pastebin.com/TYc64FzP
-
@DragonITA i do not know what i did wrong. It's exactly like you said. https://gitlab.com/Emily_Ravenhold/enderSlime/-/commit/f97f6a092e671c4f6e32c2a326f13f80330fb124
-
Yeah, i tried to fix that exception and didn’t give enough attention to code architecture. I’ll refactor when it will work. It is a totally different than 1.12.2 modding so there is not too much new modes or information about new versions. Thanks.
-
I understood how does it work already and found my mistake.Look at my last answer to diesieben07.
-
I asked a reason of that exception in my second post and attached it
-
Oh, i understand. I should move my EntityType builder into DeferredRegistry’s lambda (Supplier) and it will call in time. Thanks.
-
Why it doesn’t work? public static final RegistryObject<EntityType<EnderSlimeEntity>> ENDER_SLIME_OBJ = ENTITIES.register("enderslime", () -> ENDER_SLIME);
-
It doesn't make sense. It crashes anyway when i build TypeEntity. https://gitlab.com/Emily_Ravenhold/enderSlime/-/commit/a7e13e913c9b7df529c994338ae421256282ef41 log: https://pastebin.com/gF5QiFGi crashlog: https://pastebin.com/u05EXrpv
-
I have main class with constructor there i start DeferredRegister. It’s in me.emily_ravenhold.enderslime.EnderSlime
-
Still getting exception. Bump.
-
Does FMLClientSetupEvent call on a server side? I thought it calls only CommonSetupEvent.
-
I did what you say, but now i get that exception: java.lang.IllegalStateException: No renderer registered for enderslime:enderslime at net.minecraft.client.renderer.entity.EntityRendererManager.<init>(EntityRendererManager.java:189) ~[forge-1.15-29.0.4_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} I got it before sometimes when i registered something before render, but now i have no idea how to fix it. Commit: https://gitlab.com/Emily_Ravenhold/enderSlime/-/commit/73f0efefcddd7f1dd4a8bb7905f3dffce833a1e2 Thanks!
-
I made a custom mob from EntitySlime class, but spawn pigs instead... They jump and have HP like a slime, but it looks like pig and drops a porkchop. https://gitlab.com/Emily_Ravenhold/enderSlime
-
I'm trying to use a custom OBJ model to my item, but it's just invisible: Code: https://gitlab.com/Emily_Ravenhold/shieldsmod Thanks.