This commit is contained in:
Pfauenauge90 2020-03-17 16:07:20 +01:00
parent 40910b28e4
commit b9f6dfac77
5 changed files with 11 additions and 8 deletions

BIN
assets/voxygen/voxel/armor/belt/belt_none.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,6 @@
({ ({
None:( 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 color: None
), ),
Dark:( 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); let mut chest_armor = graceful_load_mat_segment(&spec.vox_spec.0);
@ -484,7 +484,7 @@ impl HumArmorBeltSpec {
{ {
belt belt
} else { } else {
&Belt::Dark &Belt::None
}; };
let spec = match self.0.get(&belt) { 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); let mut pants_armor = graceful_load_mat_segment(&spec.vox_spec.0);