Skip to content

Commit fc230b6

Browse files
committed
Fix bug with null version passed, update version
* update version to 0.10.1.1 * update terraria reference to 1.3.5.3 * move changable vars to `DefaultConfigurations` * change tabs to spaces * minor fixes to codes * version tick
1 parent 8229e87 commit fc230b6

19 files changed

+1752
-1740
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System;
2+
3+
namespace ModLocalizer
4+
{
5+
internal static class DefaultConfigurations
6+
{
7+
public const string DefaultLanguage = "Chinese";
8+
9+
public const string OutputFileNameFormat = "{0}_patched.tmod";
10+
11+
public static readonly Version TerrariaVersion = new Version(1, 3, 5, 3);
12+
13+
public static readonly Version ModLoaderVersion = new Version(0, 10, 1, 1);
14+
}
15+
}

0 commit comments

Comments
 (0)