fix: фикс краша серверов через настольные игры (#389)

This commit is contained in:
Remuchi
2024-06-28 16:19:47 +07:00
committed by GitHub
parent c28f5648d0
commit ca62beb91f
4 changed files with 29 additions and 0 deletions

View File

@@ -37,5 +37,19 @@ namespace Content.Server.Tabletop.Components
/// </summary>
[ViewVariables]
public TabletopSession? Session { get; set; } = null;
// Skyedra Fix start
/// <summary>
/// How many holograms have been spawned onto this board.
/// </summary>
[ViewVariables]
public int HologramsSpawned { get; set; } = 0;
/// <summary>
/// How many holograms are allowed to be spawned total by players.
/// </summary>
[ViewVariables]
public int MaximumHologramsAllowed { get; set; } = 10;
// Skyedra Fix end
}
}