Skip to content

Commit

Permalink
-Moved chat extensions patch to PLGlobalStart
Browse files Browse the repository at this point in the history
-Marked old Mod Check variables as obsolete
-Moved MPFunction enum location
-Renamed MPFunction.HostOnly to HideFromServerList
-Rebuilt ModChecks
-Added Hashing
  • Loading branch information
DragonFire47 committed Sep 1, 2022
1 parent c335397 commit f1f9117
Show file tree
Hide file tree
Showing 13 changed files with 578 additions and 273 deletions.
14 changes: 0 additions & 14 deletions PulsarModLoader/Chat/Extensions/HarmonyServerStart.cs

This file was deleted.

12 changes: 6 additions & 6 deletions PulsarModLoader/MPModChecks/MPFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ public enum MPFunction
/// <summary>
/// No MP Requirements
/// </summary>
None, //0 No mp requirements
None, //0 No mp requirements/Clientside or Hostside
/// <summary>
/// Only the host is required to have it installed
/// No MP Requirements, is hidden from server listings.
/// </summary>
HostOnly, //1 Only the host is required to have it installed
HideFromServerList, //1 Hidden from server listings
/// <summary>
/// Host must have installed for clients to use
/// Host must have installed for clients to join
/// </summary>
HostRequired, //2 Host must have installed for clients to use
HostRequired, //2 Host must have installed for clients to join
/// <summary>
/// All clients must have installed
/// </summary>
All //3 All clients must have installed
All //3 All clients must have installed
}
}

0 comments on commit f1f9117

Please sign in to comment.