Port Discordia shoes (#422)

Where no icon was found used the equipped sprites
Also updated the vending machine prototypes but more items will need adding in the future.
This commit is contained in:
metalgearsloth
2019-11-09 22:09:42 +11:00
committed by Pieter-Jan Briers
parent 0b5759abe6
commit 63611cef80
392 changed files with 1015 additions and 75 deletions

View File

@@ -268,7 +268,7 @@ namespace Content.Server.GameTicking
var uniform = _entityManager.SpawnEntity("UniformAssistant");
inventory.Equip(EquipmentSlotDefines.Slots.INNERCLOTHING, uniform.GetComponent<ClothingComponent>());
var shoes = _entityManager.SpawnEntity("ShoesItem");
var shoes = _entityManager.SpawnEntity("ShoesBlack");
inventory.Equip(EquipmentSlotDefines.Slots.SHOES, shoes.GetComponent<ClothingComponent>());
}