-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMod.cs
More file actions
36 lines (27 loc) · 897 Bytes
/
Copy pathMod.cs
File metadata and controls
36 lines (27 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using PulsarModLoader;
using static PLBurrowArena;
namespace No_Player_Healing
{
public class Mod : PulsarMod
{
public static Mod Instance { get; private set; }
public Mod()
{
Instance = this;
}
public override void Enable()
{
Player.currentPlayerHealth = PLNetworkManager.Instance.MyLocalPawn.Health;
base.Enable();
}
public override string Version => "0.0.3";
public override string Author => "18107";
public override string ShortDescription => "Prevents the player from healing";
public override string Name => "No Player Healing";
public override string ModID => "noplayerhealing";
public override string HarmonyIdentifier()
{
return "id107.noplayerhealing";
}
}
}