Fix white screen when entering monolith on a new account

This commit is contained in:
Melledy
2025-11-13 08:57:13 -08:00
parent 2958d32e19
commit b9e34301b9

View File

@@ -689,8 +689,9 @@ public class Player implements GameDatabaseObject {
} }
// Formations // Formations
var formations = proto.getMutableFormation();
for (var f : this.getFormations().getFormations().values()) { for (var f : this.getFormations().getFormations().values()) {
proto.getMutableFormation().addInfo(f.toProto()); formations.addInfo(f.toProto());
} }
// Set player states // Set player states