libram 0.8.34 → 0.8.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions/FreeRun.js +1 -1
- package/package.json +1 -1
package/dist/actions/FreeRun.js
CHANGED
|
@@ -7,7 +7,7 @@ import * as Bandersnatch from "../resources/2009/Bandersnatch";
|
|
|
7
7
|
import * as StompingBoots from "../resources/2011/StompingBoots";
|
|
8
8
|
import { $effect, $familiar, $item, $items, $skill } from "../template-string";
|
|
9
9
|
import { ActionSource, findActionSource, } from "./ActionSource";
|
|
10
|
-
const everythingLooksGreen = (otherClause = () => true) => () => otherClause() && have($effect `Everything Looks Green`) ?
|
|
10
|
+
const everythingLooksGreen = (otherClause = () => true) => () => otherClause() && !have($effect `Everything Looks Green`) ? 1 : 0;
|
|
11
11
|
const freeRunSources = [
|
|
12
12
|
// Free unlimited source
|
|
13
13
|
new ActionSource($item `spring shoes`, everythingLooksGreen(() => have($item `spring shoes`)), Macro.skill($skill `Spring Away`), {
|