warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
[1.19.2] How to spawn particle inside releaseUsing
warjort replied to Feroov's topic in Modder Support
Where do you think those particles are spawning? -
This also looks weird. Why is createbigcannons looking for steampowered's mixin configuration? Probably not the cause, but contact the mod author.
-
You have 2 mods that want a different version of flywheel and another wants a different version of biomesoplenty Since you don't post the logs/debug.log or the crash report I can't give you anymore information than that.
-
Server -> MinecraftServer
-
https://github.com/TeamMoegMC/SteamPowered/issues/41
-
This stuff is not that difficult to find: Server.getPlayerList().getBans() BanPlayerCommands PardonCommand
-
Minecraft 1.19.2 crashing repeatedly at random times
warjort replied to Idk1212121's topic in Support & Bug Reports
yes -
Minecraft 1.19.2 crashing repeatedly at random times
warjort replied to Idk1212121's topic in Support & Bug Reports
This is a crash in Microsoft's java implementation, you should contact them using that link. -
Issue with your byg configuration file. You have a reference to "friendsandfoes:beekeeper", but you don't seem to have that mod installed.
-
Not using forge. It is difficult to see how forge could provide this feature if 2 mods wanted to do different things. If you really want to do it, look at something like: https://github.com/Shadows-of-Fire/Apotheosis/blob/1.18/src/main/java/shadows/apotheosis/mixin/CombatRulesMixin.java Doing the same thing would obviously make your mod conflict with apotheosis. Don't expect any further help on this, this is not a forge modding issue. ๐
-
NoSuchFieldError on generated mods file with runServer
warjort replied to arungupta's topic in Modder Support
You can't put the obfuscated jar of a mod in the run/mods folder. The development environment is a deobfuscated environment. The way to include other mods is via dependencies with fg.deobf to deobfuscate them. Examples from the mdk: https://github.com/MinecraftForge/MinecraftForge/blob/b5d585555964b6149707514454ec3202a69cb66f/mdk/build.gradle#L134 the comments also have links to the relevant gradle docs. -
Can you access this? https://launchermeta.mojang.com/mc/game/version_manifest.json That ip address 134.209.132.125 doesn't work for me. Try removing those 3 lines from your hosts file. In the past, errors similar to yours have sometimes been resolved by completely uninstalling java and then reinstalling it - followed by restarting windows.
-
You are trying to use 1.19 journey map with 1.19.2, this won't work Download the latest 1.19.2 beta: https://www.curseforge.com/minecraft/mc-mods/journeymap/files/all?filter-game-version=1738749986%3a73407
-
livingEntity.level.playSound(null, x, y, z, KCSound.WHAT.get(), SoundSource.MASTER, 1, 1); If you pass a player as the first parameter then that player is excluded from the network broadcast. Passing the player is intended for when have some other mechanism to play it for the player that caused the sound. e.g. you already played it on the client before it even got to the server.
-
Incompatibility between steampowered and create: https://github.com/TeamMoegMC/SteamPowered/issues/41
-
I still don't know and you still haven't posted the log. ๐ For curseforge you need to enable the forge debug log in the minecraft settings. Continuing to guess - under the assumption the error message is misleading, maybe this is a OS permissions issue or something else wrong with those files or the folder that contains them? Since you are using curseforge: Try redownloading the modpack as a different profile. You can also change the installation location for everything minecraft related in its "Minecraft Modding Folder" settings.
-
public static final ModRecipeManager instance = new ModRecipeManager(); // What is the value of GSON here? private static final Gson GSON = new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().create();
-
[1.18.2] How to create an item that can store and restore entity?
warjort replied to jissee's topic in Modder Support
From what I can tell, you are trying to save the entity into the itemstack on the client. Look at how the creeper interacts with flint and steel in Creeper.mobInteract() for an example how to do sided processing properly. Note the use of sidedSuccess and level.isClientSide. -
How to turn off the animation when the item is damaged?
warjort replied to Luckydel's topic in Modder Support
Ah, I looked at the actual code and that event only works if you are interacting with a block or entity. I guess the clue is in the name of the event, although the javadoc doesn't mention this? ๐ For a generic item use, like eating or your use case, it uses InteractionResult.shouldSwing() Sorry, I don't know what the correct code is in this case. -
var tagManager = ForgeRegistries.ITEMS.tags(); var tagKey = tagManager.createTagKey(new ResourceLocation("minecraft:logs")); var tag = tagManager.getTag(tagKey);