From d3b523ad4d5947362ee85a2e22fc30b1d6756eef Mon Sep 17 00:00:00 2001 From: Skullfurious <34455502+Skullfurious@users.noreply.github.com> Date: Tue, 3 Feb 2026 03:30:23 -0400 Subject: [PATCH] Fix comment example for 'in' operator usage As per bug thead on discord request submitted by Arkyoh --- .../denizenscript/denizencore/scripts/commands/Comparable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/denizenscript/denizencore/scripts/commands/Comparable.java b/src/main/java/com/denizenscript/denizencore/scripts/commands/Comparable.java index 0038deab..aee61d7e 100644 --- a/src/main/java/com/denizenscript/denizencore/scripts/commands/Comparable.java +++ b/src/main/java/com/denizenscript/denizencore/scripts/commands/Comparable.java @@ -25,7 +25,7 @@ public class Comparable { // "Is more than or equal to" is written as ">=" or "or_more". // "Is less than or equal to" is written as "<=" or "or_less". // "does this list or map contain" is written as "contains". For example, "- if a|b|c contains b:" or "- if [a=1;b=2] contains b:" - // "is this in the list or map" is written as "in". For example, "- if b in a|b|c:", or "- if [a=1;b=2] contains b:" + // "is this in the list or map" is written as "in". For example, "- if b in a|b|c:", or "- if b in [a=1;b=2]:" // "does this object or text match an advanced matcher" is written as "matches". For example, "- if matches stone:" // // Note: When using an operator in a tag,