Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Done here
Browse files Browse the repository at this point in the history
  • Loading branch information
xNexusACS authored Sep 11, 2022
1 parent 28e0073 commit fb5d961
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion ExiledUtils_REMAKE/EventHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ public void OnRevived(FinishingRecallEventArgs ev)
{
if (plugin.Config.Enable049BuffWhenReviving)
{
ev.Scp049.ArtificialHealth = 100;
ev.Scp049.ActiveArtificialHealthProcesses.First().CurrentAmount = 100;
ev.Scp049.ActiveArtificialHealthProcesses.First().DecayRate = 0;
ev.Scp049.EnableEffect(EffectType.MovementBoost, 10);

if (plugin.Config.EnableHealthWhenReviving)
Expand Down
6 changes: 3 additions & 3 deletions ExiledUtils_REMAKE/MainClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public class MainClass : Plugin<Config>
public override string Author { get; } = "xNexus-ACS";
public override string Name { get; } = "ExiledUtils-Remake";
public override string Prefix { get; } = "exiled_utils_remake";
public override Version Version { get; } = new Version(3, 2, 0);
public override Version RequiredExiledVersion { get; } = new Version(5, 2, 0);
public const VersionType type = VersionType.RemakeBeta;
public override Version Version { get; } = new Version(4, 0, 0);
public override Version RequiredExiledVersion { get; } = new Version(5, 3, 0);
public const VersionType type = VersionType.Remake;

public EventHandlers Ev;

Expand Down
10 changes: 5 additions & 5 deletions ExiledUtils_REMAKE/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ExiledUtils_REMAKE")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("EXILED FRAMEWORK PLUGIN")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("xNexusACS")]
[assembly: AssemblyProduct("ExiledUtils_REMAKE")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyCopyright("Copyright xNexusACS © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("4.0.0.0")]

0 comments on commit fb5d961

Please sign in to comment.