From 994f66682cf4eb9ea88200d82ac1a61611a1c194 Mon Sep 17 00:00:00 2001 From: kayjaydee Date: Mon, 27 Apr 2026 13:08:19 +0200 Subject: [PATCH] fix(04-00): rename particle assets to PascalCase per Hytale validator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Server WARN: "Asset key 'chain_spark' has incorrect format! Expected: 'Chain_Spark'". Hytale validator derives expected asset key from filename via PascalCase normalization. Renamed all three files + internal SpawnerId + Texture refs. This contradicts the GravityFlip snake_case rule for Particles specifically — filename casing IS the asset key. --- .../Particles/{chain_spark.png => Chain_Spark.png} | Bin ....particlespawner => Chain_Spark.particlespawner} | 2 +- ...rk.particlesystem => Chain_Spark.particlesystem} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/main/resources/Common/Particles/{chain_spark.png => Chain_Spark.png} (100%) rename src/main/resources/Server/Particles/{chain_spark.particlespawner => Chain_Spark.particlespawner} (95%) rename src/main/resources/Server/Particles/{chain_spark.particlesystem => Chain_Spark.particlesystem} (75%) diff --git a/src/main/resources/Common/Particles/chain_spark.png b/src/main/resources/Common/Particles/Chain_Spark.png similarity index 100% rename from src/main/resources/Common/Particles/chain_spark.png rename to src/main/resources/Common/Particles/Chain_Spark.png diff --git a/src/main/resources/Server/Particles/chain_spark.particlespawner b/src/main/resources/Server/Particles/Chain_Spark.particlespawner similarity index 95% rename from src/main/resources/Server/Particles/chain_spark.particlespawner rename to src/main/resources/Server/Particles/Chain_Spark.particlespawner index 6ca6bd8..276dcab 100644 --- a/src/main/resources/Server/Particles/chain_spark.particlespawner +++ b/src/main/resources/Server/Particles/Chain_Spark.particlespawner @@ -8,7 +8,7 @@ "ParticleLifeSpan": { "Min": 0.3, "Max": 0.5 }, "SpawnRate": { "Min": 50.0, "Max": 50.0 }, "Particle": { - "Texture": "Particles/chain_spark.png", + "Texture": "Particles/Chain_Spark.png", "FrameSize": { "Width": 4, "Height": 4 }, "SoftParticles": "Enable", "SoftParticlesFadeFactor": 1.0, diff --git a/src/main/resources/Server/Particles/chain_spark.particlesystem b/src/main/resources/Server/Particles/Chain_Spark.particlesystem similarity index 75% rename from src/main/resources/Server/Particles/chain_spark.particlesystem rename to src/main/resources/Server/Particles/Chain_Spark.particlesystem index 8575c6f..58e414c 100644 --- a/src/main/resources/Server/Particles/chain_spark.particlesystem +++ b/src/main/resources/Server/Particles/Chain_Spark.particlesystem @@ -4,7 +4,7 @@ "BoundingRadius": 1.0, "Spawners": [ { - "SpawnerId": "chain_spark" + "SpawnerId": "Chain_Spark" } ] }