starter armor in char creation

This commit is contained in:
Pfauenauge90 2020-04-08 19:19:15 +02:00
parent 0fb5b73606
commit d62dfffd69

View File

@ -378,6 +378,12 @@ impl CharSelectionUi {
block_ability: None,
dodge_ability: None,
});
loadout.pants = Some(assets::load_expect_cloned(
"common.items.armor.starter.rugged_pants",
));
loadout.foot = Some(assets::load_expect_cloned(
"common.items.armor.starter.sandals_0",
));
Some(loadout.clone())
},
}