Skip to content

Commit

Permalink
check for noncombatForcerActive for asdon tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinn committed Jul 26, 2024
1 parent 0636402 commit 19e8fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export function main(command?: string) {
},
{
name: "Asdon Bumper",
ready: () => AsdonMartin.installed(),
ready: () => AsdonMartin.installed() && !get("noncombatForcerActive"),
completed: () =>
get("banishedMonsters").includes("Spring-Loaded Front Bumper"),
sobriety: "sober",
Expand All @@ -325,7 +325,7 @@ export function main(command?: string) {
},
{
name: "Asdon Missile",
ready: () => AsdonMartin.installed(),
ready: () => AsdonMartin.installed() && !get("noncombatForcerActive"),
completed: () => get("_missileLauncherUsed"),
combat: new ChronerStrategy(() => {
const romance = get("romanticTarget");
Expand Down

0 comments on commit 19e8fd5

Please sign in to comment.