From 81ca8d15b5c8538c3ef3f17c3f536102935becf6 Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Fri, 3 Jan 2014 14:18:35 -0700 Subject: [PATCH] bring @JasonGross changes back in. Jason, updates should go to script/content.coffee (dist/habitrpg-shared.js is a compiled file and gets clobbered) --- dist/habitrpg-shared.js | 2 +- script/content.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index c4788a16fe..5605eff4f9 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -10147,7 +10147,7 @@ var global=self;/** mana: 10, lvl: 11, target: 'task', - notes: "Your nimble fingers run through the task's pockets and find some treasures for yourself. You gain an increased gold bonus on the task, higher yet the 'fatter' (greener) your task.", + notes: "Your nimble fingers run through the task's pockets and find some treasures for yourself. You gain an increased gold bonus on the task, higher yet the 'fatter' (bluer) your task.", cast: function(user, target) { return user.stats.gp += (target.value < 0 ? 1 : target.value + 1) + user._statsComputed.per * .075; } diff --git a/script/content.coffee b/script/content.coffee index 86c023728e..f9426ddaf2 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -309,7 +309,7 @@ api.spells = mana: 10 lvl: 11 target: 'task' - notes: "Your nimble fingers run through the task's pockets and find some treasures for yourself. You gain an increased gold bonus on the task, higher yet the 'fatter' (greener) your task." + notes: "Your nimble fingers run through the task's pockets and find some treasures for yourself. You gain an increased gold bonus on the task, higher yet the 'fatter' (bluer) your task." cast: (user, target) -> user.stats.gp += (if target.value < 0 then 1 else target.value+1) + user._statsComputed.per * .075 backStab: