clippy stuff
This commit is contained in:
parent
e5455fddd8
commit
658b9b758e
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ pub fn encode_duradata(general_params: &mut FuncParams, real_dura: Durability) -
|
||||||
// new range is 50-10 = 40
|
// new range is 50-10 = 40
|
||||||
let new_range = 40;
|
let new_range = 40;
|
||||||
// NewValue = (((OldValue - OldMin) * NewRange) / OldRange) + NewMin
|
// NewValue = (((OldValue - OldMin) * NewRange) / OldRange) + NewMin
|
||||||
effect_strength_fr = ((((current_percentage - 0) * new_range) / old_range) + 10) as u8
|
effect_strength_fr = ((((current_percentage) * new_range) / old_range) + 10) as u8
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return Err(Errorfr::JsonDuraOutOfRange)
|
return Err(Errorfr::JsonDuraOutOfRange)
|
||||||
|
|
|
@ -129,7 +129,7 @@ fn cook(
|
||||||
match json_config.item_type {
|
match json_config.item_type {
|
||||||
ItemTypeDeser::CraftedGear | ItemTypeDeser::CraftedConsu => {
|
ItemTypeDeser::CraftedGear | ItemTypeDeser::CraftedConsu => {
|
||||||
if let Some(real_crafted_type) = json_config.crafted_type {
|
if let Some(real_crafted_type) = json_config.crafted_type {
|
||||||
return encode_typedata_custom(&mut fr_params, &*real_crafted_type);
|
return encode_typedata_custom(&mut fr_params, &real_crafted_type);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return Err(JsonNotFoundCraftedType)
|
return Err(JsonNotFoundCraftedType)
|
||||||
|
|
Loading…
Reference in a new issue