Browse Source

fix grind modification

pbs
jake 4 years ago
parent
commit
6410042e48
  1. 2
      src/entity/item/weapon.rs

2
src/entity/item/weapon.rs

@ -1513,7 +1513,7 @@ impl Weapon {
attr attr
}); });
} }
self.grind += grind;
self.grind = std::cmp::max(self.grind as i32 + grind, 0) as u8;
self.tekked = true; self.tekked = true;
}, },
_ => {} _ => {}

Loading…
Cancel
Save