Version 1.8
Updated Changelog.md, README.md, and versions.
This commit is contained in:
parent
f32d872bbf
commit
55217d0924
4 changed files with 11 additions and 4 deletions
|
@ -1,7 +1,13 @@
|
|||
# Upcoming changes
|
||||
|
||||
# Version 1.8
|
||||
|
||||
Fix bug where more than config-set-amount of entities can be in battle.
|
||||
|
||||
Add mp3 support, can now play mp3s.
|
||||
|
||||
Minor improvements.
|
||||
|
||||
# Version 1.7
|
||||
|
||||
Fix bug where after using "/tbm-edit", ignore_battle option is saved in
|
||||
|
|
|
@ -36,8 +36,9 @@ in battle)
|
|||
- Supports custom battle music to be played when fighting enemies. (They must be
|
||||
placed in `.minecraft/config/TurnBasedMinecraft/Music/battle` or
|
||||
`.minecraft/config/TurnBasedMinecraft/Music/silly`. Client-side config determines
|
||||
which song plays in battle for the client. only `.wav` and `.mid` files supported.
|
||||
Only `.wav` files are affected by volume options (master and music sliders))
|
||||
which song plays in battle for the client. only `.wav`, `.mid`, and `.mp3` files
|
||||
supported. Only `.mid` files are not affected by volume options (master and
|
||||
music sliders))
|
||||
- Config allows limiting number of combatants in turn-based battle.
|
||||
- Config can be modified (server-side) to add entries of mobs from other mods.
|
||||
(by default an unknown mob cannot enter turn-based battle, so the config must be
|
||||
|
|
|
@ -11,7 +11,7 @@ buildscript {
|
|||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
apply plugin: 'com.github.johnrengelman.shadow'
|
||||
|
||||
version = "1.7"
|
||||
version = "1.8"
|
||||
group = "com.seodisparate.TurnBasedMinecraft"
|
||||
archivesBaseName = "TurnBasedMinecraft"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ public class TurnBasedMinecraftMod
|
|||
{
|
||||
public static final String MODID = "com.seodisparate.turnbasedminecraft";
|
||||
public static final String NAME = "Turn Based Minecraft Mod";
|
||||
public static final String VERSION = "1.7";
|
||||
public static final String VERSION = "1.8";
|
||||
public static final String CONFIG_FILENAME = "TBM_Config.toml";
|
||||
public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";
|
||||
public static final String CONFIG_FILE_PATH = CONFIG_DIRECTORY + CONFIG_FILENAME;
|
||||
|
|
Loading…
Reference in a new issue