We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb4e8b5 commit 27cf4fcCopy full SHA for 27cf4fc
1 file changed
Source/relay/TourGuide/Items of the Month/2023/Wardrobe-o-Matic.ash
@@ -1,12 +1,11 @@
1
// Wardrobe-o-Matic
2
-void GenerateWardrobeDescription(slot currSlot, int tier) {
+string GenerateWardrobeDescription(slot currSlot, int tier) {
3
4
// Helper function to translate the wardrobe mods to useful strings.
5
string entry = "";
6
- string [modifier] allWardrobeMods = futuristic_wardrobe(currSlot, tier);
7
8
// Only displaying useful equipment mods.
9
- foreach mod, value in allWardrobeMods {
+ foreach mod, value in futuristic_wardrobe(currSlot, tier) {
10
if (mod == $modifier[Item Drop]) entry += value+"% +item ";
11
if (mod == $modifier[Monster Level]) entry += value+" +ML ";
12
if (mod == $modifier[Meat Drop]) entry += value+"% +meat ";
0 commit comments