TurnBasedMinecraftMod/Changelog.md

151 lines
4.7 KiB
Markdown
Raw Normal View History

2018-10-26 09:11:35 +00:00
# Upcoming changes
2020-11-13 02:42:00 +00:00
# Version 1.12
Fix potential crash if mod is loaded on dedicated server.
2020-11-13 02:29:28 +00:00
# Version 1.11
Fixed text display in BattleGUI.
Updated TBM\_Config.toml with new vanilla mobs.
Fixed version parsing of TBM\_Config.toml.
2020-11-12 08:10:01 +00:00
# Version 1.10
Updated for 1.16.3
Compiled against forge version "1.16.3-34.1.0"
However, MP3 playing seems to not work sometimes.
2019-11-29 10:38:38 +00:00
# Version 1.9
Updated mod for 1.14.4
(Took a long while, and no new features were added due to making sure everything
still works).
Compiled against forge version "1.14.4-28.1.0"
Entity names have changed in the config, so this newer version will replace the
old version. Older existing config should be renamed rather than deleted.
# Version 1.8
2018-10-30 05:29:25 +00:00
Update to forge version "1.12.2-14.23.5.2768".
2018-10-26 12:11:14 +00:00
Fix bug where more than config-set-amount of entities can be in battle.
2018-10-26 09:11:35 +00:00
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
config with the wrong name.
Add "/tbm-edit custom", which lets an OP add an entity entry for entities with
custom names (via name-tags). The entry added into the config file will use
"custom_name" instead of "name" to specify if it is a regular entity entry
or an entry for a specific custom name.
Minor fixes and improvements.
2018-10-20 08:54:32 +00:00
# Version 1.6
Fix bug where player can start battle with self.
Change config to use ".toml" instead of ".xml".
Added command "/tbm-edit" that allows OPs to edit entity entries for TBM.
Can be used to add mobs from other mods easily.
2018-10-20 08:54:32 +00:00
Change how battle info text is displayed.
# Version 1.5
Fix proper consumption of food/potion items in battle.
Added some debug output on internal freeze occurrence (investigation of the
freeze bug is still ongoing).
2018-10-18 07:28:47 +00:00
# Version 1.4
Fix duplicate "... entered battle" messages.
Added max-distance config option for how close a monster must be to initiate
battle (when triggered by a monster targeting a player or entity in battle).
Some internal fixes and refactorings.
2018-10-17 08:21:22 +00:00
# Version 1.3
2018-10-17 09:30:44 +00:00
Added a battle-cooldown and related config option. Now, when leaving battle, a
cooldown timer (default 5 seconds) prevents entities from
attacking/being-attacked for the duration of the cooldown. Can be set to a
minimum of 1 second and maximum of 10 seconds.
2018-10-17 08:21:22 +00:00
"/tbm-enable-all" and "/tbm-disable-all" now notifies all players when they are
invoked by an OP.
Battles can now be started/joined by hostile mobs when they target a player or
other entity in battle, instead of just entering on attack. Old
battle-starting-behavior can be used by setting the related config option.
(This change was made to keep zombies from gathering around the player when
the config option for freezing entities in battle is enabled.)
Non-player entities in battle now primarily attack entities they are already
targeting (via a call to EntityLiving's "getAttackTarget()").
Note since config version is now 5, older config will be renamed and the new
config will take its place.
2018-10-17 03:36:05 +00:00
# Version 1.2
Fixed "/tbm-enable" and "/tbm-disable" not working in singleplayer.
Added commands:
- "/tbm-enable-all"
- "/tbm-disable-all"
Only OPs can use these new commands to enable or disable turn-based-battle for
everyone.
Note that if "/tbm-disable-all" is invoked, joining players will also have
turn-based-battle disabled for them. Invoking "/tbm-enable-all" will change this
back to the default, where turn-based-battle is enabled for joining players.
2018-10-16 05:58:38 +00:00
# Version 1.1
Added commands to enable/disable turn-based-battle on-demand.
Commands are:
- "/tbm-enable"
- "/tbm-disable"
2018-10-16 12:41:18 +00:00
- "/tbm-set \<player> \<true/false>"
2018-10-16 05:58:38 +00:00
There is a config option to allow anyone to use "/tbm-enable" and "/tbm-disable".
Only OPs can use "/tbm-set" (permission level 2).
Note that since config version has been updated, pre-existing config will be
renamed and the newer config will take its place.
# Version 1.0
Features:
- Turn based combat with hostile mobs (excluding passive and bosses) by default
- Config generated at ".minecraft/config/TurnBasedMinecraft/TBM_Config.xml
- Old config is renamed if new config exists with newer mod version
- Battle is very configurable per mob and also for all players in config
- Can add mobs unique to other mods in config (using full Java Class name of mob)
- Can set config on server/singleplayer to freeze mobs in combat
- Can add battle/silly music in ".minecraft/config/TurnBasedMinecraft/Music"
that activates depending on mob types in battle
- What determines battle or silly can be set client-side in config
- Unknown types defaults to battle music instead of silly music
- Can set max battle combatants in config
- Can use bow/arrows in battle (currently different projectile weapons provided
by different mods are not supported)
2018-10-16 12:41:18 +00:00
- Players in creative-mode will not enter turn-based battle