changelog

This commit is contained in:
jshipsey 2021-04-13 03:04:48 -04:00
parent ea9b871374
commit 161382d06a
3 changed files with 3 additions and 3 deletions

View File

@ -32,6 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added --sql-log-mode profile/trace parameter to veloren-server-cli
- Added /disconnect_all_players admin command
- Added disconnectall CLI command
- One handed weapons can now be used and found in the world
### Changed

View File

@ -7,7 +7,7 @@ SpinMelee(
knockback: ( strength: 10.0, direction: Away),
range: 3.5,
damage_effect: None,
energy_cost: 0,
energy_cost: 150,
is_infinite: false,
movement_behavior: ForwardGround,
is_interruptible: true,

View File

@ -265,11 +265,9 @@ impl TryFrom<(&ItemKind, &[Item], &AbilityMap, &MaterialStatManifest)> for ItemC
Ok(ItemConfig {
abilities,
block_ability: None,
dodge_ability: Some(CharacterAbility::default_roll()),
})
} else {
Err(ItemConfigError::BadItemKind)
};
}
}
}