[Ground Spawns] Convert Ground Spawns to Repositories (#3967)

# Notes
- Convert `LoadGroundSpawns()` to repositories.
This commit is contained in:
Alex King
2024-01-12 23:41:08 -05:00
committed by GitHub
parent 71f78b757e
commit eb33e5a064
10 changed files with 58 additions and 52 deletions
+3 -3
View File
@@ -2951,7 +2951,7 @@ struct Make_Pet_Struct { //Simple struct for getting pet info
uint32 min_dmg;
uint32 max_dmg;
};
struct Ground_Spawn{
struct GroundSpawn{
float max_x;
float max_y;
float min_x;
@@ -2963,8 +2963,8 @@ struct Ground_Spawn{
uint32 max_allowed;
uint32 respawntimer;
};
struct Ground_Spawns {
struct Ground_Spawn spawn[50]; //Assigned max number to allow
struct GroundSpawns {
struct GroundSpawn spawn[50]; //Assigned max number to allow
};
//struct PetitionBug_Struct{