Skip to content

Commit

Permalink
Fix GameEventMgr.GlobalHandlerCollection (#252)
Browse files Browse the repository at this point in the history
Make GlobalHandlerCollection public
  • Loading branch information
NetDwarf authored Sep 19, 2020
1 parent cd77042 commit 1e477cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GameServer/events/GameEventMgr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static int NumObjectHandlers

private readonly DOLEventHandlerCollection m_globalHandlerCollection;

private static DOLEventHandlerCollection GlobalHandlerCollection => soleInstance.m_globalHandlerCollection;
public static DOLEventHandlerCollection GlobalHandlerCollection => soleInstance.m_globalHandlerCollection;

/// <summary>
/// Get the number of global event handlers
Expand Down

0 comments on commit 1e477cb

Please sign in to comment.