Skip to content

Commit

Permalink
Lily/McUtils: Fix place order (#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Sep 3, 2023
1 parent 5fe470e commit 7aa93df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/Lily/McUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@
}

placeOrder(args, util) {
if (args.INPUT.includes("ice cream")) {
const text = Scratch.Cast.toString(args.INPUT);
if (text.includes("ice cream")) {
return false;
} else {
return args.INPUT;
Expand Down

0 comments on commit 7aa93df

Please sign in to comment.