Skip to content

Commit

Permalink
0.2.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidPack committed Jun 10, 2017
1 parent 3b63b4f commit a174e43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions RecipeBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,15 @@ class RecipeBrowser : Mod
int lastSeenScreenHeight;
internal static bool[] chestContentsAvailable = new bool[1000];

// TODO, Chinese IME support
public override void Load()
{
// Too many people are downloading 0.10 versions on 0.9....
if (ModLoader.version < new Version(0, 10))
{
throw new Exception("\nThis mod uses functionality only present in the latest tModLoader. Please update tModLoader to use this mod\n\n");
}

instance = this;

Mod cheatSheet = ModLoader.GetMod("CheatSheet");
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = jopojelly
version = 0.2
version = 0.2.0.1
displayName = Recipe Browser
homepage = http://forums.terraria.org/index.php?threads/cheat-sheet.41407/
buildIgnore = .vs\*, Properties\*, *.csproj, *.user, obj\*, bin\*, *.config, unused\*
Expand Down

0 comments on commit a174e43

Please sign in to comment.