From 0192bfcbc0aad324a2cdb139a24c583d840839a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=A4fliger?= Date: Fri, 2 May 2025 15:42:34 +0200 Subject: [PATCH] no message --- Verbraucher_extern/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Verbraucher_extern/module.php b/Verbraucher_extern/module.php index 78f4ac5..cea3453 100644 --- a/Verbraucher_extern/module.php +++ b/Verbraucher_extern/module.php @@ -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);