Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions RespawnTimer/API/Features/ExternalTeams/RRH.cs
Original file line number Diff line number Diff line change
@@ -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");

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alpha-1

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But nothing would change on my end with RRH

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alpha-1

That is the name of the plugin

Instance = mainClass.GetField("Instance").GetValue(null);
FieldInfo = mainClass.GetField("IsSpawnable");
}
}
}
#endif