/// <summary>
/// Forces the garbage collector to run
/// </summary>
/// <param name="character">Character calling the command</param>
/// <param name="match">Regex match</param>
/// <example>!gc</example>
[GmAttribute("gc", 99, "(.*?)")]
public static void GarbageCollector(Character character, Match match)
{
GC.Collect(0, GCCollectionMode.Forced);
}