Skip to content

Commit

Permalink
Fix extra kunais stat
Browse files Browse the repository at this point in the history
  • Loading branch information
haihala committed Jun 28, 2024
1 parent 3416a8c commit ba15ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/characters/src/resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl WAGResources {
prop.current = stats.starting_meter;
}
ResourceType::KunaiCounter => {
prop.current = prop.max.unwrap();
prop.current = stats.extra_kunais + 1;
}
_ => {
prop.current = prop.min;
Expand Down

0 comments on commit ba15ec8

Please sign in to comment.