mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2026-04-20 19:53:06 +08:00
daily update
This commit is contained in:
@@ -93,7 +93,7 @@ function checkProp(property, condition) {
|
||||
case '!=':
|
||||
if(Array.isArray(propData))
|
||||
return !propData.includes(conditionData);
|
||||
return propData == conditionData;
|
||||
return propData != conditionData;
|
||||
case '?':
|
||||
if(Array.isArray(propData)) {
|
||||
for(const p of propData)
|
||||
@@ -121,7 +121,7 @@ function extractMaxTriggers(condition) {
|
||||
// Not age related, single trigger.
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
const age_list = match_object[1].split(",");
|
||||
return age_list.length;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user