diff --git a/EXILED/Exiled.API/Features/Respawn.cs b/EXILED/Exiled.API/Features/Respawn.cs
index af1974f18..6adad1bdf 100644
--- a/EXILED/Exiled.API/Features/Respawn.cs
+++ b/EXILED/Exiled.API/Features/Respawn.cs
@@ -346,6 +346,26 @@ public static void RemoveInfluence(Faction faction, int amount)
FactionInfluenceManager.Remove(faction, amount);
}
+ ///
+ /// Get influence to a given .
+ ///
+ /// The to get influence.
+ /// Get the faction influence..
+ public static float GetInfluence(Faction faction)
+ {
+ return FactionInfluenceManager.Get(faction);
+ }
+
+ ///
+ /// Set influence to a given .
+ ///
+ /// The to set influence.
+ /// The amount of influence to set.
+ public static void SetInfluence(Faction faction, float influence)
+ {
+ FactionInfluenceManager.Set(faction, influence);
+ }
+
///
/// Starts the spawn sequence of the given .
///