diff --git a/RespawnTimer/API/Features/ExternalTeams/RRH.cs b/RespawnTimer/API/Features/ExternalTeams/RRH.cs new file mode 100644 index 0000000..59063ca --- /dev/null +++ b/RespawnTimer/API/Features/ExternalTeams/RRH.cs @@ -0,0 +1,19 @@ +#if EXILED +namespace RespawnTimer.API.Features.ExternalTeams +{ + using System; + using System.Reflection; + + public class SerpentsHandTeam : ExternalTeamChecker + { + public override void Init(Assembly assembly) + { + PluginEnabled = true; + + Type mainClass = assembly.GetType("RRR.Alpha-1_Red-Right-Hand"); + Instance = mainClass.GetField("Instance").GetValue(null); + FieldInfo = mainClass.GetField("IsSpawnable"); + } + } +} +#endif