This commit is contained in:
Pfauenauge90 2020-03-17 16:07:20 +01:00
parent e0a4bcc2b2
commit 90ce59dabe
5 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
({
None:(
vox_spec: ("armor.belt.belt-none", (-5.0, -3.5, 2.0)),
vox_spec: ("armor.belt.belt_none", (-5.0, -3.5, 2.0)),
color: None
),
Dark:(

View File

@ -386,7 +386,7 @@ impl HumArmorChestSpec {
)
};
let bare_chest = graceful_load_mat_segment("armor.chest.none");
let bare_chest = graceful_load_mat_segment("armor.empty");
let mut chest_armor = graceful_load_mat_segment(&spec.vox_spec.0);
@ -484,7 +484,7 @@ impl HumArmorBeltSpec {
{
belt
} else {
&Belt::Dark
&Belt::None
};
let spec = match self.0.get(&belt) {
@ -540,7 +540,7 @@ impl HumArmorPantsSpec {
)
};
let bare_pants = graceful_load_mat_segment("armor.pants.grayscale");
let bare_pants = graceful_load_mat_segment("armor.empty");
let mut pants_armor = graceful_load_mat_segment(&spec.vox_spec.0);