Skip to content

Commit

Permalink
typos + fixing eagle tile
Browse files Browse the repository at this point in the history
  • Loading branch information
docrostov committed Aug 29, 2023
1 parent 431884a commit 78b9bdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Source/relay/TourGuide/Pulls.ash
Original file line number Diff line number Diff line change
Expand Up @@ -638,9 +638,10 @@ void generatePullList(Checklist [int] checklists)
int hospital_progress = get_property_int("hiddenHospitalProgress");

if (hospital_progress < 7) {
if (__misc_state["Torso aware"]) item [int]
item [int] missingSurgeonComponents;
if (__misc_state["Torso aware"])
missingSurgeonComponents = items_missing($items[bloodied surgical dungarees,surgical mask,head mirror,half-size scalpel,surgical apron]);
if (!__misc_state["Torso aware"]) item [int]
if (!__misc_state["Torso aware"])
missingSurgeonComponents = items_missing($items[bloodied surgical dungarees,surgical mask,head mirror,half-size scalpel]);

if (missingSurgeonComponents.count() > 0)
Expand All @@ -654,7 +655,7 @@ void generatePullList(Checklist [int] checklists)
boolean hiddenTavernUnlocked = get_property_ascension("hiddenTavernUnlock");

if ($item[book of matches].available_amount() == 0 && !hiddenTavernUnlocked) {
pullable_item_list.listAppend(GPItemMake($item[book of matches], "Unlock Cursed Punch & Bowl of Scorpions for Hidden City turnsaving", bowlingBallsNeeded));
pullable_item_list.listAppend(GPItemMake($item[book of matches], "Unlock Cursed Punch & Bowl of Scorpions for Hidden City turnsaving", 1));
}

// Can pull a bowling ball, I guess.
Expand Down Expand Up @@ -734,7 +735,7 @@ void generatePullList(Checklist [int] checklists)

// If the user can use a red rocket, and user doesn't have a cleaver, suggest pulling a guilty sprout
if (__misc_state["in run"] && __misc_state["can eat just about anything"] && available_amount($item[Clan VIP Lounge key]) > 0 && get_property("_fireworksShop").to_boolean() && my_path().id != PATH_G_LOVER) {
if (!__iotms_usable[$item["June Cleaver"]]) {
if (!__iotms_usable[$item[June Cleaver]]) {
int sproutStats = MAX(0, 4 * 225 * (1.0 + numeric_modifier(my_primestat().to_string() + " Experience Percent") / 100.0));
pullable_item_list.listAppend(GPItemMake($item[guilty sprout],"Food; gain "+sproutStats+" stats with a red-rocketed sprout!"));
}
Expand Down
2 changes: 1 addition & 1 deletion Source/relay/TourGuide/Sets/Active Banishes.ash
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ void ActiveBanishesList(ChecklistEntry [int] resource_entries)
phylum phylumBanished = $phylum[none];
int monsterCount = 0;

if (phylaResult.length() > 0) {
if (phylaResult.count() > 0) {
name = "Current Phyla Banished";

int screechCharge = get_property_int("screechCombats");
Expand Down

0 comments on commit 78b9bdf

Please sign in to comment.