add to changelog

This commit is contained in:
Isse 2023-08-03 19:38:31 +02:00
parent a39923e4d6
commit 5e225d7f35
3 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Combat music toggle - Combat music toggle
- Spawn rtsim wyverns that travel the world, providing dragon scale loot drops - Spawn rtsim wyverns that travel the world, providing dragon scale loot drops
- Hardwood in tropical forests, frostwood in cold forests, and iron wood on the top of giant trees - Hardwood in tropical forests, frostwood in cold forests, and iron wood on the top of giant trees
- Recipe for shovel, which is used to dig in mud and graves
### Changed ### Changed

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 1.0, buff_strength: 1.0,
), ),
)), )),
quality: Common, quality: Moderate,
tags: [ tags: [
CraftingTool, CraftingTool,
], ],

View File

@ -2100,7 +2100,7 @@ impl Hud {
BlockInteraction::Mine(mine_tool) => { BlockInteraction::Mine(mine_tool) => {
if info.is_mining { if info.is_mining {
match mine_tool { match mine_tool {
ToolKind::Pick => { ToolKind::Pick => {
vec![( vec![(
Some(GameInput::Primary), Some(GameInput::Primary),
i18n.get_msg("hud-mine").to_string(), i18n.get_msg("hud-mine").to_string(),