fixed typo

This commit is contained in:
2026-03-21 17:09:32 +00:00
parent 5b563bad67
commit 2622144cdf
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ drops = []
[rock]
drops = [
{ prefab = "Coin", chance_pct = 10, min_count = 1, max_max = 1 },
{ prefab = "Coin", chance_pct = 10, min_count = 1, max_count = 1 },
]
[air]
-1
View File
@@ -67,7 +67,6 @@ struct DropEntryToml {
pub prefab: String,
pub chance_pct: u8,
pub min_count: u8,
#[serde(rename = "max_max")]
pub max_count: u8,
}