Skip to content

Commit

Permalink
Bug fixes (v0.5.2)
Browse files Browse the repository at this point in the history
Fixed some stuff.
  • Loading branch information
Kitteh6660 committed Sep 12, 2014
1 parent 2423442 commit 440f617
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/classes/CoC.as
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@
//model.debug = debug; // TODO: Set on model?

//Version NUMBER
ver = "0.8.15_mod_0.5.1";
version = ver + " (<b>Mod Updated</b>)";
ver = "0.8.15_mod_0.5.2";
version = ver + " (<b>Mod Bug Fixes</b>)";

//Indicates if building for mobile?
mobile = false;
Expand Down
3 changes: 3 additions & 0 deletions includes/engineCore.as
Original file line number Diff line number Diff line change
Expand Up @@ -1887,6 +1887,9 @@ public function displayStats(e:MouseEvent = null):void
if (flags[kFLAGS.SPELLS_CAST] > 0)
miscStats += "<b>Spells Cast:</b> " + flags[kFLAGS.SPELLS_CAST] + "\n";

if (flags[kFLAGS.TIMES_ORGASMED] > 0)
miscStats += "<b>Times Orgasmed:</b> " + flags[kFLAGS.TIMES_ORGASMED] + "\n";

if (miscStats != "")
outputText("\n<b><u>Miscellaneous Stats</u></b>\n" + miscStats);
// End Misc Stats
Expand Down

0 comments on commit 440f617

Please sign in to comment.