no message

This commit is contained in:
2025-05-02 15:42:34 +02:00
parent 5992ede103
commit 0192bfcbc0

View File

@@ -97,7 +97,7 @@ class Verbraucher_extern extends IPSModule
}
for ($i = $startIndex; $i < count($values); $i++) {
$currentCombination[] = $values[$i];
if (findCombinationRecursive($power - $values[$i], $values, $currentCombination, $i + 1, $result)) {
if ($this->findCombinationRecursive($power - $values[$i], $values, $currentCombination, $i + 1, $result)) {
return true;
}
array_pop($currentCombination);