fix a few more warnings

This commit is contained in:
Jettford 2024-12-11 19:45:36 +00:00
parent 09405ee78e
commit 50764371d7
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ void RandomSpawnerPit::OnStartup(Entity* self) {
}; };
sectionMultipliers = { sectionMultipliers = {
{"secA", 1}, {"secA", 1.0f},
{"secB", 1.2f}, {"secB", 1.2f},
{"secC", 1.2f}, {"secC", 1.2f},
{"secD", 1}, {"secD", 1},

View File

@ -65,8 +65,8 @@ void RandomSpawnerStr::OnStartup(Entity* self) {
}; };
sectionMultipliers = { sectionMultipliers = {
{"secA", 1}, {"secA", 1.0f},
{"secB", 1}, {"secB", 1.0f},
{"secC", 1.2f}, {"secC", 1.2f},
}; };