Jump to content

[1.15.2] Why is my Common config being read from the physical client over the physical server?


squidlex

Recommended Posts

I'm trying to setup a common config that is read from the physical server over the physical client, however the physical client is taking presedence over it.

Why is this happening and how can I fix it?

 

Config:

@EventBusSubscriber(modid = Dodge.MODID, bus = EventBusSubscriber.Bus.MOD)
public final class ConfigHandler {

	public static class Common {

		public final ForgeConfigSpec.DoubleValue dodgePower;
		public final ForgeConfigSpec.IntValue hungerRequirement;
		public final ForgeConfigSpec.BooleanValue allowDodgeWhileAirborne;

		public final ForgeConfigSpec.BooleanValue enableCooldown;
		public final ForgeConfigSpec.IntValue cooldownLength;

		public final ForgeConfigSpec.BooleanValue displayParticles;
		public final ForgeConfigSpec.BooleanValue fancyParticles;

		public Common(ForgeConfigSpec.Builder builder) {

			// BALANCE
			dodgePower = builder
					.comment("How powerful each player's dodge is. Defaults at 1 which is just under 3 blocks.")
					.defineInRange("balance.power", 1, 0, Double.MAX_VALUE);
			hungerRequirement = builder.comment(
					"How many half drumsticks the player needs to dodge. Set this to -1 to disable this feature. By default it's the same as sprinting, 6.")
					.defineInRange("balance.hungerRequirement", 6, -1, 20);
			allowDodgeWhileAirborne = builder.comment(
					"Set this to true to allow the player to dodge whilst in midair. Note the player always has this ability in creative mode.")
					.define("balance.allowDodgeWhileAirborne", false);

			// COOLDOWN
			enableCooldown = builder.comment("Set this to false to disable the cooldown bar completely.")
					.define("cooldown.enabled", true);
			cooldownLength = builder
					.comment("How long the dodge takes to cooldown in (roughly) seconds. This defaults to 4.")
					.defineInRange("cooldown.duration", 3, 1, Integer.MAX_VALUE);

			// PARTICLES
			displayParticles = builder
					.comment("Set this to false to disable the particles emitted when a player dodges")
					.define("particles.enableParticles", true);
			fancyParticles = builder.comment(
					"Set this to true to enable fancy particles, many prefer the old particles so that is now the default.")
					.define("particles.fancy", false);
		}
	}

	public static final Common COMMON;
	public static final ForgeConfigSpec COMMON_SPEC;
	static {
		final Pair<Common, ForgeConfigSpec> specPair = new ForgeConfigSpec.Builder().configure(Common::new);
		COMMON_SPEC = specPair.getRight();
		COMMON = specPair.getLeft();
	}

	// Bakers
	@SubscribeEvent
	public static void onModConfigEvent(final ModConfig.ModConfigEvent configEvent) {
		if (configEvent.getConfig().getSpec() == ConfigHandler.COMMON_SPEC) {
			bakeCommonConfig();
		}
	}

	// Common
	public static double dodgePower;
	public static int hungerRequirement, cooldownLength;
	public static boolean allowDodgeWhileAirborne, enableCooldown, displayParticles, fancyParticles;

	public static void bakeCommonConfig() {
		dodgePower = COMMON.dodgePower.get();
		hungerRequirement = COMMON.hungerRequirement.get();
		cooldownLength = COMMON.cooldownLength.get() * 20;
		allowDodgeWhileAirborne = COMMON.allowDodgeWhileAirborne.get();
		enableCooldown = COMMON.enableCooldown.get();
		displayParticles = COMMON.displayParticles.get();
		fancyParticles = COMMON.fancyParticles.get();
	}
}

 

Where it is used:

public class DodgeEvents {
	
	@SubscribeEvent
	public void onKeyPressed(InputEvent.KeyInputEvent event) {

		if (Dodge.DodgeClient.DODGE_KEY.isKeyDown() && DodgeGui.len <= 0 && spamPreventer >= 12) {
			if (player.isCreative() || player.isSpectator() || player.onGround
					|| ConfigHandler.allowDodgeWhileAirborne) {
          	//DO STUFF
          }
        }
      }

 

How it is called in my main class:

public Dodge() {
		
		ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, ConfigHandler.COMMON_SPEC);
		
		DistExecutor.runWhenOn(Dist.CLIENT, () -> () -> {
			MinecraftForge.EVENT_BUS.register(new DodgeEvents());
}

 

I think it has something to do with my DistExecutor, is there any workaround for this?

Link to comment
Share on other sites

3 minutes ago, ChampionAsh5357 said:

Note: InputEvent is client side only. So, your client config takes precedent. Use a packet to send over the server value and store it in a variable.

Oh I see, thank you! Would I send over my server values straight from my config or from the event itself?

Link to comment
Share on other sites

20 minutes ago, ChampionAsh5357 said:

From an event since they could be subject to change whenever the config is reloaded.

Ah, thank you, do you have any example source code of this? I've got a PacketHandler setup but I'm not sure how I'd send a message from the server, rather than from the client.

Link to comment
Share on other sites

3 hours ago, ChampionAsh5357 said:

NETWORK_INSTANCE.send(PacketDistributor.ALL.noArg(), NEW_PACKET_INSTANCE);

 

Thanks for all your help, when I use that in my KeyInputEvent I get a crash. I don't want to bother you any more as it's unrelated to the OT so I've started a new topic asking for more information on how Networks work, thank you for explaining where I was going wrong!

Link to comment
Share on other sites

3 minutes ago, ChampionAsh5357 said:

Ok then. For quick reference though, KeyInputEvent is client side, so calling a packet to be sent to the client side from the server side on the client side doesn't actually make sense.

Oh I see thanks for explaining that one, what event should I call it in?

Link to comment
Share on other sites

Assuming that the values are loaded when you call bakeCommonConfig, call it directly afterwards. Make sure to check that you are on the logical server and not the client.

 

If you cannot check if its the logical server, use one of the FMLServerStarting events to do it instead.

Edited by ChampionAsh5357
Link to comment
Share on other sites

20 hours ago, ChampionAsh5357 said:

Assuming that the values are loaded when you call bakeCommonConfig, call it directly afterwards. Make sure to check that you are on the logical server and not the client.

 

If you cannot check if its the logical server, use one of the FMLServerStarting events to do it instead.

Thank you so much for all your help, I finally got it to work and I really appreciate the help given.

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

    • I was just trying to play my modded world when i randomly got this crash for no reason. I sorted through like every mod and eventually I realized it was LLibrary but I can't seem to find a solution to fix the crashing. I can't lose the world that I have that uses this mod please help me. Here's the report: https://pastebin.com/0D00B79i If anyone has a solution please let me know.  
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑   Daftar Slot Ligawin88 adalah bocoran slot rekomendasi gacor dari Ligawin88 yang bisa anda temukan di SLOT Ligawin88. Situs SLOT Ligawin88 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Ligawin88 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Ligawin88 merupakan SLOT Ligawin88 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Ligawin88. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Ligawin88 hari ini yang telah disediakan SLOT Ligawin88. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Ligawin88 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Ligawin88 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Ligawin88 di link SLOT Ligawin88.
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑   Daftar Slot Asusslot adalah bocoran slot rekomendasi gacor dari Asusslot yang bisa anda temukan di SLOT Asusslot. Situs SLOT Asusslot hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Asusslot terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Asusslot merupakan SLOT Asusslot hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Asusslot. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Asusslot hari ini yang telah disediakan SLOT Asusslot. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Asusslot terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Asusslot terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Asusslot di link SLOT Asusslot.
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 Daftar Slot Galeri555 adalah bocoran slot rekomendasi gacor dari Galeri555 yang bisa anda temukan di SLOT Galeri555. Situs SLOT Galeri555 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Galeri555 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Galeri555 merupakan SLOT Galeri555 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Galeri555. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Galeri555 hari ini yang telah disediakan SLOT Galeri555. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Galeri555 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Galeri555 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Galeri555 di link SLOT Galeri555.
    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 Daftar Slot Kocok303 adalah bocoran slot rekomendasi gacor dari Kocok303 yang bisa anda temukan di SLOT Kocok303. Situs SLOT Kocok303 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Kocok303 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Kocok303 merupakan SLOT Kocok303 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Kocok303. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Kocok303 hari ini yang telah disediakan SLOT Kocok303. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Kocok303 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Kocok303 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Kocok303 di link SLOT Kocok303.
  • Topics

×
×
  • Create New...

Important Information

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