Browse Source

drop armour with stats

pbs
Andy Newjack 4 years ago
parent
commit
6ef78b4ed6
  1. 5
      src/entity/item/armor.rs

5
src/entity/item/armor.rs

@ -200,8 +200,9 @@ impl Armor {
pub fn as_bytes(&self) -> [u8; 16] {
let mut result = [0; 16];
result[0..3].copy_from_slice(&self.armor.value());
// TODO: other attrs
result[5] = self.slots;
result[6] = self.dfp;
result[8] = self.evp;
result
}
}
Loading…
Cancel
Save