From 7320dd47f281ee65796c368f4c14d1f8d4f7e555 Mon Sep 17 00:00:00 2001 From: Maxim Astra Date: Wed, 21 Jan 2026 11:48:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B3=D1=80=D0=B5=D1=81=D1=81?= =?UTF-8?q?=D0=B8=D1=8F.=20=D0=9F=D0=B5=D1=80=D0=B5=D0=B8=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D1=8B=20=D1=84=D0=B0=D0=B9=D0=BB?= =?UTF-8?q?=D1=8B=20=D1=81=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D1=83?= =?UTF-8?q?=D1=80=D0=B0=D1=86=D0=B8=D1=8F=D0=BC=D0=B8=20=D0=A1=D0=A2=D0=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/{banned-ranges.json => banned_ranges.json} | 0 config/{service-config.ini => service_config.ini} | 0 scripts/prd-ctl-config.gd | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename config/{banned-ranges.json => banned_ranges.json} (100%) rename config/{service-config.ini => service_config.ini} (100%) diff --git a/config/banned-ranges.json b/config/banned_ranges.json similarity index 100% rename from config/banned-ranges.json rename to config/banned_ranges.json diff --git a/config/service-config.ini b/config/service_config.ini similarity index 100% rename from config/service-config.ini rename to config/service_config.ini diff --git a/scripts/prd-ctl-config.gd b/scripts/prd-ctl-config.gd index 02c842f4..ba0801d4 100644 --- a/scripts/prd-ctl-config.gd +++ b/scripts/prd-ctl-config.gd @@ -5,8 +5,8 @@ extends RefCounted ## Загружает и управляет настройками из JSON-конфигурации #region CONSTANTS -const CONFIG_PATH = 'user://config/setting_prd_control.json' -const DEFAULT_CONFIG_PATH = 'res://config/setting_prd_control.json' +const CONFIG_PATH = 'user://config/setting-prd-control.json' +const DEFAULT_CONFIG_PATH = 'res://config/setting-prd-control.json' const CONFIG_VERSION = '1.0.0' # Версия конфигурации - увеличивать при изменениях #endregion