-
Posts
200 -
Joined
-
Last visited
-
Days Won
5
Everything posted by Curle
-
I looked through the tree for ArrowEntity. It's in ProjectileEntity, a second tier parent.
-
Why don't you use LivingEntity#attackEntityFrom(DamageSource, float)? It calls damageEntity, and it's public.
-
I stand corrected. public void func_234612_a_(Entity p_234612_1_, float p_234612_2_, float p_234612_3_, float p_234612_4_, float p_234612_5_, float p_234612_6_) { It looks like the mappings were lost in the update to 1.16.
-
Does shoot(EntityPlayer, double, double, float, float, float) fit the signature of the function shoot(double, double, double, float, float) ?
-
That doesn't fit the signature of Entity#shoot. What function is that?
-
Spawn an arrow at the player's position, with the player's looking direction.
-
The first three doubles define the rough direction the entity should travel toward, relative to the current position. The two sets of x,y,z (the other being the entity's current position) define the line of travel.
-
We know. The forum server is having some minor issues. It'll subside eventually.
-
Advancements completing no matter what dimension I go to.
Curle replied to Cinderous's topic in Modder Support
I made a PR which should fix this issue: https://github.com/MinecraftForge/MinecraftForge/pull/6866 -
Adding Lapis Lazuli to the enchanting table crashing the game
Curle replied to SimonA's topic in Support & Bug Reports
This bug is being tracked: https://github.com/MinecraftForge/MinecraftForge/pull/6842 Please keep an eye on the PR for updates. -
This seems to be a framebuffer error, to do with the early launch window. We're looking into it.
-
bug with furnaces (coal not loaded, 1.16.1)
Curle replied to MaX ScouT's topic in Support & Bug Reports
This is a known issue. https://github.com/MinecraftForge/MinecraftForge/pull/6842 Watch the PR for progress and updates. -
This is a known issue. https://github.com/MinecraftForge/MinecraftForge/pull/6842 Watch the PR for updates.
-
Neither is 1.12. Update to receive support.
-
TLauncher isn't supported here. Use the official launcher.
-
Problem with running modded forge server 1.15.
Curle replied to Bisa99's topic in Support & Bug Reports
That file isn't available. Paste it to pastebin or a similar site. -
The dark theme is a bit... off-kilter. This is just an infodump in a reliable location while i try to figure my way around the Web repo and actually effect these changes myself. If you go to somebody's profile and switch to dark theme: The text becomes unbearably low contrast. The dark text is color #555 and the background is #3C3F41, meaning a contrast of 1.4:1. The Web Content Accessibility Guidelines (WCAG 2.0) level AA requires a 4.5:1 color contrast between text and background for normal text, and you can certainly see why. A 4.5:1 color rating means the text must be at least #999999, but #BBBBBB is far better on my eyes, and maintains a decent color contrast from the headers and infos ("8 minutes ago"). It's 5:21am as i write this, and i need sleep, but i didn't want to forget this and i didn't trust Notepad to keep it safe >.> Will update as i meander the https://github.com/MinecraftForge/Web/tree/master/sass repo
-
Exception in thread "main" Process finished with exit code 1.
Curle replied to Solarient's topic in Modder Support
Your modid and all associated folders must be lowercase. -
Instead of asking, try it. We'll be here if it doesn't work
-
Exception in thread "main" Process finished with exit code 1.
Curle replied to Solarient's topic in Modder Support
Your config is messed up: -
My Minecraft keeps crashing please help.
Curle replied to DIESEL490's topic in Support & Bug Reports
1.7 isn't supported on this forum. Update to recieve support. -
[Solved] Custom Bow Pullback Animation Only Loading One Frame
Curle replied to fracturx's topic in Modder Support
I think they mean, swap the 0F line with the one below it : the one involving getUseDuration. If you set it to 1, then the last image will always apply. You need it to change, which is what that line was for: -
We need as many modders updating to 1.16 as we can. The more modders working, the more bugs are found, the sooner we can get to a recommended build. To answer the question, it's extremely unstable and there are a lot of basic errors being fixed (shift in water making you go up, being able to break diamond ore with wooden pickaxes, etc.) But, that's why we need modders working on it. We're willing to help you with any problems you encounter, here on the forum and on the Discord.
-
[Solved] Custom Bow Pullback Animation Only Loading One Frame
Curle replied to fracturx's topic in Modder Support
Yeah, it looks like the first predicate is matching every pull value, and it's first in the list so it's overriding the other textures. Add a low pull value.