From 687b0e590f9dbeea8eaff628315bd1fb615cee78 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 20 Apr 2024 09:30:52 +1000 Subject: [PATCH] Make hasPortals/hasMessageBlocks public per request --- MCGalaxy/Levels/Level.Fields.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Levels/Level.Fields.cs b/MCGalaxy/Levels/Level.Fields.cs index 6e6e8cf41..6e404e792 100644 --- a/MCGalaxy/Levels/Level.Fields.cs +++ b/MCGalaxy/Levels/Level.Fields.cs @@ -121,6 +121,6 @@ public sealed partial class Level : IDisposable { get { return Config.RoundsPlayed == 0 ? 100 : (Config.RoundsHumanWon * 100) / Config.RoundsPlayed; } } - internal bool hasPortals, hasMessageBlocks; + public bool hasPortals, hasMessageBlocks; } } \ No newline at end of file