Skip to content

Commit

Permalink
Remove warning for "onGround" for now again
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Jun 18, 2024
1 parent f21e0e9 commit adbe5b1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions CelesteMod.Publicizer/CelestePublicizerTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ public override bool Execute() {
}

// class name -> member name -> (reason, warn/error)
private static Dictionary<string, Dictionary<string, (string Reason, bool Error)>> blacklist = new() {
{"Celeste.Player", new() {
{"onGround", ("Consider using OnGround instead", false)}
}},
private static readonly Dictionary<string, Dictionary<string, (string Reason, bool Error)>> blacklist = new() {
// TODO: There is still discoussion about this, so it's not yet published
// {"Celeste.Player", new() {
// {"onGround", ("Consider using OnGround instead", false)}
// }},
};

// Adapted from https://github.com/psyGamer/BepInEx.AssemblyPublicizer/blob/master/BepInEx.AssemblyPublicizer/AssemblyPublicizer.cs
Expand Down

0 comments on commit adbe5b1

Please sign in to comment.