Skip to content

Commit

Permalink
Merge pull request #52 from Honkai-Impact-4-Galaxy-Journey/Griseo-bh3…
Browse files Browse the repository at this point in the history
…rd-patch-1

fix: 未初始化消息集合
  • Loading branch information
Griseo-bh3rd authored Nov 16, 2024
2 parents ceed5c6 + ccc25ff commit ab5e94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/Broadcast.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public override string ToString()
}
public class BroadcastMain
{
public static List<BroadcastItem> globals;
public static List<BroadcastItem> normals;
public static List<BroadcastItem> globals = new List<BroadcastItem>();
public static List<BroadcastItem> normals = new List<BroadcastItem>();
public static void SendGlobalcast(BroadcastItem item)
{
globals.Add(item);
Expand Down

0 comments on commit ab5e94e

Please sign in to comment.