Skip to content

Commit

Permalink
Nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
DEATHB4DEFEAT committed Oct 1, 2023
1 parent e28b29f commit cbf6ae8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Content.Shared/Roles/StartingGearPrototype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ public string GetGear(string slot, HumanoidCharacterProfile? profile)

// Handles custom underwear per role.

if (slot == "underpants" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpants) && _underpants != "Error")
if (slot == "underpants" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpants) && _underpants != "Nothing")
return _underpants;
if (slot == "underpants" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpantsskirt) && _underpantsskirt != "Error")
if (slot == "underpants" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_underpantsskirt) && _underpantsskirt != "Nothing")
return _underpantsskirt;

if (slot == "undershirt" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirt) && _undershirt != "Error")
if (slot == "undershirt" && profile.Clothing != ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirt) && _undershirt != "Nothing")
return _undershirt;
if (slot == "undershirt" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirtskirt) && _undershirtskirt != "Error")
if (slot == "undershirt" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(_undershirtskirt) && _undershirtskirt != "Nothing")
return _undershirtskirt;

if (slot == "socks" && !string.IsNullOrEmpty(_undersocks) && _undersocks != "Error")
if (slot == "socks" && !string.IsNullOrEmpty(_undersocks) && _undersocks != "Nothing")
return _undersocks;
}

Expand Down
4 changes: 2 additions & 2 deletions Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
duffelbag: ClothingBackpackDuffelFilled
underpants: ClothingUnderboxers_assblastusa
underpantsskirt: ClothingUnderboxers_assblastusa
undershirt: Error
undershirt: Nothing
undershirtskirt: ClothingUnderbra_binder
undersocks: Error
undersocks: Nothing
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- type: entity
parent: Error
id: Nothing
name: nothing

0 comments on commit cbf6ae8

Please sign in to comment.