Skip to content

Commit

Permalink
eval now actually functions
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Mar 16, 2019
1 parent 2e63578 commit b4105c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Commands/Modules/Owner/EvalCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ await ExecutorUtil.ExecuteAsync(async () =>
var imports = new[]
{
"System", "System.Collections.Generic", "System.Linq", "System.Text",
"System.Diagnostics", "Discord", "Discord.WebSocket", "System.IO", "Volte.Data",
"System.Threading", "Volte.Extensions", "Volte.Utils", "Volte.Runtime",
"System.Diagnostics", "Discord", "Discord.WebSocket", "System.IO",
"System.Threading", "Volte.Extensions", "Volte.Utils", "Volte.Data",
"Volte.Discord", "Volte.Services", "System.Threading.Tasks", "Qmmands"
};

Expand Down
2 changes: 1 addition & 1 deletion src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public static class Version
public static int Major { get; } = 2;
public static int Minor { get; } = 3;
public static int Patch { get; } = 0;
public static int Hotfix { get; } = 0;
public static int Hotfix { get; } = 1;
public static ReleaseType ReleaseType { get; } = ReleaseType.Release;
public static string FullVersion { get; } = $"{Major}.{Minor}.{Patch}.{Hotfix}-{ReleaseType}";
}
Expand Down

0 comments on commit b4105c2

Please sign in to comment.