Compare commits

..

No commits in common. "neoforge" and "neoforge-1.26.0" have entirely different histories.

4 changed files with 1 additions and 59 deletions

View file

@ -1,21 +1,5 @@
# Upcoming changes
# Version Forge-1.26.0
Port to Forge 52.0.21 (Minecraft 1.21.1).
Client-config available via `/tbm-client-edit` (same as NeoForge), but there is
no way to access it via the mod-list (unlike NeoForge). Removed from file
holding server-side config (same as NeoForge).
Add option in client-config to set battle/silly music volume, and an option for
whether or not battle/silly music volume is affected by global music volume
setting and whether or not it is affected by master volume setting.
Proper volume handling (like in the NeoForge branch).
Added Armadillo, Bogged, and Breeze to mob list in config.
# Version NeoForge-1.26.0
Make it possible to open the client-config from the Mod-list GUI.

15
FAQ.md
View file

@ -23,8 +23,6 @@ disabled for "passive" mobs.
**Note that while .ogg Vorbis files are supported, .ogg Opus files are NOT
supported.**
**It is recommended to use .ogg Vorbis files instead of .mp3 files.**
One can use FFmpeg to convert music files into .ogg Vorbis:
ffmpeg -i <music_file_to_convert> -map a:0 -c:a libvorbis output.ogg
@ -38,19 +36,6 @@ work.
**It is recommended to use .ogg Vorbis files instead of .mp3 files.**
## How do I configure battle music?
There is a way to edit client-config that deals with music settings, like what
mob groups trigger battle/silly music and volume. This menu can be opened in two
ways.
- Run the command `/tbm-client-edit` to open the menu.
- Open the Mod list from the options screen, click on TBMM on the left column
and click on "Config". (Note that this way of opening the client-config-gui
is unavailable on Forge, and is only available on NeoForge.)
Note that "Accept" must be clicked on to save the client-config.
## Why do passive mobs don't start turn-based battle?
By default, the `passive` category is set to "ignore turn-based-battle" in the

View file

@ -38,8 +38,7 @@ a timestamp in the filename of when it was replaced. One can set a config option
config to prevent it being overwritten if necessary.
Some options in the config file only affect the Server, and ~~some only affect the Client~~.
Client config has been moved to a
[separate system provided by NeoForge](https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/FAQ.md#how-do-i-configure-battle-music).
Client config has been moved to a separate system provided by NeoForge.
When playing multiplayer, some configuration of the config on the server may be needed.
# Features

View file

@ -4,32 +4,6 @@ Starting with version 1.24.0 of this mod, this file will list what version of
Java was used to compile the jars. In theory, using the same version of Java
should result in an identical jar due to reproducible builds.
## Forge 1.26.0
$ java --version
openjdk 21.0.4 2024-07-16
OpenJDK Runtime Environment (build 21.0.4+7)
OpenJDK 64-Bit Server VM (build 21.0.4+7, mixed mode, sharing)
$ javac --version
javac 21.0.4
$ sha256sum build/libs/TurnBasedMinecraft-Forge-1.26.0-all.jar
9a3bb24fef9348e620ab5bcc120d83e11c5289a046561fb4ef91d0ccade9b271 build/libs/TurnBasedMinecraft-Forge-1.26.0-all.jar
## NeoForge 1.26.0
$ java --version
openjdk 21.0.4 2024-07-16
OpenJDK Runtime Environment (build 21.0.4+7)
OpenJDK 64-Bit Server VM (build 21.0.4+7, mixed mode, sharing)
$ javac --version
javac 21.0.4
$ sha256sum build/libs/TurnBasedMinecraft-NeoForge-1.26.0-all.jar
a13e93df640eb3ce5577521421e760aa5d808d34d5cef9c5415ae7a699173ea9 build/libs/TurnBasedMinecraft-NeoForge-1.26.0-all.jar
## NeoForge 1.25.2
$ java --version