Skip to content

Commit 54622fc

Browse files
committed
Correcting oversights
1 parent 6561879 commit 54622fc

File tree

5 files changed

+4
-81
lines changed

5 files changed

+4
-81
lines changed

UncomplicatedCustomTeams/API/Features/LogEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ public LogEntry(long time, string level, string content, string error = null)
4747

4848
public LogEntry(long time, LogLevel level, string content, string error = null) : this(time, level.ToString(), content, error) { }
4949

50-
public override string ToString() => $"[{DateTimeOffset.Year}-{DateTimeOffset.Month}-{DateTimeOffset.Day} {DateTimeOffset.Hour}:{DateTimeOffset.Minute}:{DateTimeOffset.Second} {DateTimeOffset.Offset}] [{Level}] [UncomplicatedCustomRoles] {PublicError}{Content}";
50+
public override string ToString() => $"[{DateTimeOffset.Year}-{DateTimeOffset.Month}-{DateTimeOffset.Day} {DateTimeOffset.Hour}:{DateTimeOffset.Minute}:{DateTimeOffset.Second} {DateTimeOffset.Offset}] [{Level}] [UncomplicatedCustomTeams] {PublicError}{Content}";
5151
}
5252
}

UncomplicatedCustomTeams/Commands/LogShare.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal class LogShare : ParentCommand
1717

1818
public override string[] Aliases { get; } = [];
1919

20-
public override string Description { get; } = "Share the UCR Debug logs with the developers";
20+
public override string Description { get; } = "Share the UCT Debug logs with the developers.";
2121

2222
public override void LoadGeneratedCommands() { }
2323

UncomplicatedCustomTeams/Commands/Role.cs

Lines changed: 0 additions & 76 deletions
This file was deleted.

UncomplicatedCustomTeams/UncomplicatedCustomTeams.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
<Compile Include="Commands\Reload.cs" />
106106
<Compile Include="Commands\List.cs" />
107107
<Compile Include="Commands\Owner.cs" />
108-
<Compile Include="Commands\Role.cs" />
109108
<Compile Include="Commands\Spawn.cs" />
110109
<Compile Include="Commands\LogShare.cs" />
111110
<Compile Include="Commands\Active.cs" />

UncomplicatedCustomTeams/VersionManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static void Init()
4242

4343
if (VersionInfo.PreRelease)
4444
{
45-
LogManager.Info($"\nNOTICE!\nYou are currently using the version v{Plugin.Instance.Version}, who's a PRE-RELEASE or an EXPERIMENTAL RELESE of UncomplicatedCustomRoles!\nLatest stable release: {Plugin.HttpManager.LatestVersion}\nNOTE: This is NOT a stable version, so there can be bugs and malfunctions, for this reason we do not recommend use in production.");
45+
LogManager.Info($"\nNOTICE!\nYou are currently using the version v{Plugin.Instance.Version}, who's a PRE-RELEASE or an EXPERIMENTAL RELESE of UncomplicatedCustomTeams!\nLatest stable release: {Plugin.HttpManager.LatestVersion}\nNOTE: This is NOT a stable version, so there can be bugs and malfunctions, for this reason we do not recommend use in production.");
4646
if (VersionInfo.ForceDebug && !Log.DebugEnabled.Contains(Plugin.Instance.Assembly))
4747
{
4848
LogManager.Info("Debug logs have been activated!");
@@ -52,7 +52,7 @@ public static void Init()
5252
}
5353
else
5454
{
55-
LogManager.Info($"You are using UncomplicatedCustomRoles v{VersionInfo.Name}{(VersionInfo.CustomName is not null ? $" '{VersionInfo.CustomName}'" : string.Empty)}!");
55+
LogManager.Info($"You are using UncomplicatedCustomTeams v{VersionInfo.Name}{(VersionInfo.CustomName is not null ? $" '{VersionInfo.CustomName}'" : string.Empty)}!");
5656
}
5757

5858
// Check integrity

0 commit comments

Comments
 (0)