Compare commits

...

4 commits

Author SHA1 Message Date
48983caf2c Update Changelog.md
All checks were successful
Build TurnBasedMC and create Release / check-release-exists (push) Successful in 1s
Build TurnBasedMC and create Release / build-and-create-release (push) Successful in 18s
2024-10-25 15:48:57 +09:00
f50f412fd4 Bump version to 1.26.3 2024-10-25 15:48:26 +09:00
fde09d116d Change "Ping" packet behavior
Changed "Ping" packet to not create client-local Battle instance when
received, but rather only act if client-local Battle instance exists.

This change was also made on the neoforge branches.
2024-10-25 15:46:56 +09:00
4c0872b7ad Update Changelog.md 2024-10-25 15:37:20 +09:00
5 changed files with 28 additions and 9 deletions

View file

@ -1,5 +1,25 @@
# Upcoming changes
# Version Forge-1.26.3
Tweak to "Ping" packet to not create client-local Battle instance if it does
not exist.
# Version NeoForge-1.26.3
Port to NeoForge 21.3.2-beta (MC 1.21.3).
Note that MC 1.21.1 (NeoForge 21.1.72) will still be supported in a separate
branch (neoforge\_mc1.21.1) until MC version 1.22 is released.
Tweak to "Ping" packet to not create client-local Battle instance if it does
not exist.
# Version NeoForge-1.26.3-MC-1.21.1
Tweak to "Ping" packet to not create client-local Battle instance if it does
not exist.
# Version Forge-1.26.2
Show battling Entities next to their attack button in the BattleGUI.

View file

@ -73,7 +73,7 @@ configured for them.)
Simply invoke `./gradlew build` in the mod directory and after some time the
finished jar will be saved at
`build/libs/TurnBasedMinecraft-Forge-1.26.2-all.jar`
`build/libs/TurnBasedMinecraft-Forge-1.26.3-all.jar`
# Reproducibility

View file

@ -48,7 +48,7 @@ mod_name=TurnBasedMinecraftMod
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=MIT
# The mod version. See https://semver.org/
mod_version=1.26.2
mod_version=1.26.3
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -39,7 +39,7 @@ import org.apache.logging.log4j.Logger;
public class TurnBasedMinecraftMod {
public static final String MODID = "com_burnedkirby_turnbasedminecraft";
public static final String NAME = "Turn Based Minecraft Mod";
public static final String VERSION = "1.26.2";
public static final String VERSION = "1.26.3";
public static final String CONFIG_FILENAME = "TBM_Config.toml";
public static final String DEFAULT_CONFIG_FILENAME = "TBM_Config_DEFAULT.toml";
public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";

View file

@ -46,13 +46,12 @@ public class PacketBattlePing {
@Override
public void accept(PacketBattlePing pkt, CustomPayloadEvent.Context ctx) {
ctx.enqueueWork(() -> {
if (TurnBasedMinecraftMod.proxy.getLocalBattle() == null) {
TurnBasedMinecraftMod.proxy.createLocalBattle(pkt.battleID);
if (TurnBasedMinecraftMod.proxy.getLocalBattle() != null) {
TurnBasedMinecraftMod.proxy.setBattleGuiAsGui();
TurnBasedMinecraftMod.proxy.setBattleGuiBattleChanged();
TurnBasedMinecraftMod.proxy.setBattleGuiTime(pkt.decisionSeconds);
TurnBasedMinecraftMod.proxy.pauseMCMusic();
}
TurnBasedMinecraftMod.proxy.setBattleGuiAsGui();
TurnBasedMinecraftMod.proxy.setBattleGuiBattleChanged();
TurnBasedMinecraftMod.proxy.setBattleGuiTime(pkt.decisionSeconds);
TurnBasedMinecraftMod.proxy.pauseMCMusic();
});
ctx.setPacketHandled(true);
}