Skip to content

Commit

Permalink
Updated plugin to have console and chat colours :party:
Browse files Browse the repository at this point in the history
  • Loading branch information
B3none committed Dec 23, 2023
1 parent 9a71c41 commit e374484
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RetakesPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ namespace RetakesPlugin;
[MinimumApiVersion(129)]
public class RetakesPlugin : BasePlugin
{
private const string VERSION = "1.0.3";
private const string Version = "1.0.4";

public override string ModuleName => "Retakes Plugin";
public override string ModuleVersion => VERSION;
public override string ModuleVersion => Version;
public override string ModuleAuthor => "B3none";
public override string ModuleDescription => "Community retakes for CS2.";

// Constants
// TODO: Add colours.
public const string LogPrefix = $"[Retakes {VERSION}] ";
public const string MessagePrefix = $"[Retakes] ";
public static string LogPrefix = $"[{ConsoleColor.Green}Retakes {Version}{ConsoleColor.White}] ";
public static string MessagePrefix = $"[{ChatColors.Green}Retakes{ChatColors.White}] ";

// Config
private MapConfig? _mapConfig;
Expand Down

0 comments on commit e374484

Please sign in to comment.