changelog entry

This commit is contained in:
Maxicarlos08 2023-09-20 23:29:40 +02:00
parent 772dd660a1
commit e526ca7c8e
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Changed gold ore to gold ingots in the Brinstone armor set recipes - Changed gold ore to gold ingots in the Brinstone armor set recipes
- Updated windowing library, wayland may work better. - Updated windowing library, wayland may work better.
- Portal model has been updated by @Nectical - Portal model has been updated by @Nectical
- Chat command responses sent by the server can now be localized
### Removed ### Removed
- Medium and large potions from all loot tables - Medium and large potions from all loot tables

View File

@ -3850,7 +3850,7 @@ fn handle_battlemode(
if elapsed < COOLDOWN { if elapsed < COOLDOWN {
return Err(Content::localized_with_args( return Err(Content::localized_with_args(
"command-battlemode-cooldown", "command-battlemode-cooldown",
[("cooldown", format!("{:0.}", COOLDOWN - elapsed))], [("cooldown", format!("{:.0}", COOLDOWN - elapsed))],
)); ));
} }
} }