Skip to content

Commit 27cf4fc

Browse files
committed
typing is kinda wonky, maybe this will fix?
1 parent eb4e8b5 commit 27cf4fc

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Source/relay/TourGuide/Items of the Month/2023/Wardrobe-o-Matic.ash

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// Wardrobe-o-Matic
2-
void GenerateWardrobeDescription(slot currSlot, int tier) {
2+
string GenerateWardrobeDescription(slot currSlot, int tier) {
33

44
// Helper function to translate the wardrobe mods to useful strings.
55
string entry = "";
6-
string [modifier] allWardrobeMods = futuristic_wardrobe(currSlot, tier);
76

87
// Only displaying useful equipment mods.
9-
foreach mod, value in allWardrobeMods {
8+
foreach mod, value in futuristic_wardrobe(currSlot, tier) {
109
if (mod == $modifier[Item Drop]) entry += value+"% +item ";
1110
if (mod == $modifier[Monster Level]) entry += value+" +ML ";
1211
if (mod == $modifier[Meat Drop]) entry += value+"% +meat ";

0 commit comments

Comments
 (0)