Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: get rum and tamales with spare Takerspace ingredients #1541

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]);
}
}
Loading