Skip to content

Commit b4105c2

Browse files
committed
eval now actually functions
1 parent 2e63578 commit b4105c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Commands/Modules/Owner/EvalCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ await ExecutorUtil.ExecuteAsync(async () =>
4949
var imports = new[]
5050
{
5151
"System", "System.Collections.Generic", "System.Linq", "System.Text",
52-
"System.Diagnostics", "Discord", "Discord.WebSocket", "System.IO", "Volte.Data",
53-
"System.Threading", "Volte.Extensions", "Volte.Utils", "Volte.Runtime",
52+
"System.Diagnostics", "Discord", "Discord.WebSocket", "System.IO",
53+
"System.Threading", "Volte.Extensions", "Volte.Utils", "Volte.Data",
5454
"Volte.Discord", "Volte.Services", "System.Threading.Tasks", "Qmmands"
5555
};
5656

src/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public static class Version
55
public static int Major { get; } = 2;
66
public static int Minor { get; } = 3;
77
public static int Patch { get; } = 0;
8-
public static int Hotfix { get; } = 0;
8+
public static int Hotfix { get; } = 1;
99
public static ReleaseType ReleaseType { get; } = ReleaseType.Release;
1010
public static string FullVersion { get; } = $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
1111
}

0 commit comments

Comments
 (0)