Доработка после объединения

This commit is contained in:
TotMaxim
2025-12-01 22:38:35 +03:00
parent 4db6060ed7
commit 98cc111092
3 changed files with 10 additions and 10 deletions

View File

@@ -1153,7 +1153,7 @@ static func on_fs_state(packet_type_7: Dictionary, fs_mapping: Dictionary, fs_re
## Вспомогательная функция для проверки применения правила
static func _should_apply_rule(fs_num: int, rule: Dictionary, results: Dictionary) -> bool:
return bool(fs_num >= rule.min and fs_num <= rule.max) and results.has(rule.key)
return bool(fs_num >= rule.min and fs_num < rule.max) and results.has(rule.key)
## Получение мощности при выполнении контроля