Skip to content

Commit

Permalink
feat: get rum and tamales with spare Takerspace ingredients
Browse files Browse the repository at this point in the history
Over 2 days:
with spring shoes: dinghy, goldschlepper, tamale; goldschlepper, rum,
tamale

without spring shoes: dinghy, anchor bomb, rum, tamale; anchor bomb,
rum, tamale
  • Loading branch information
midgleyc authored and Malibu-Stacey committed Jan 13, 2025
1 parent a9e2cc7 commit 31755ed
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions RELEASE/scripts/autoscend/iotms/mr2024.ash
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,18 @@ void auto_checkTakerSpace()
create(1, $item[anchor bomb]);
}
// goldschlepper is EPIC booze
int creatableGold = creatable_amount($item[tankard of spiced Goldschlepper]);
if(creatableGold > 0) {
create(creatableGold, $item[tankard of spiced Goldschlepper]);
int createable = creatable_amount($item[tankard of spiced Goldschlepper]);
if(createable > 0) {
create(createable, $item[tankard of spiced Goldschlepper]);
}
// tankard of spiced rum is awesome booze
createable = creatable_amount($item[tankard of spiced rum]);
if(createable > 0) {
create(createable, $item[tankard of spiced rum]);
}
// cursed Aztec tamale is awesome food, and only uses spices
createable = creatable_amount($item[cursed Aztec tamale]);
if(createable > 0) {
create(createable, $item[cursed Aztec tamale]);
}
}

0 comments on commit 31755ed

Please sign in to comment.