Work on standardizing terminology

This commit is contained in:
Sabe Jones
2013-11-17 09:36:38 -06:00
parent 75ce46d4af
commit 6cc41c47c7
5 changed files with 22 additions and 22 deletions

View File

@@ -6,7 +6,7 @@ habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User', '
$scope.score = function(task, direction) {
if (task.type === "reward" && User.user.stats.gp < task.value){
return Notification.text('Not enough GP.');
return Notification.text('Not enough Gold!');
}
Algos.score(User.user, task, direction);
User.log({op: "score",data: task, dir: direction});
@@ -123,7 +123,7 @@ habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User', '
Notification.text("Item purchased.");
updateStore();
} else {
Notification.text("Not enough GP.");
Notification.text("Not enough Gold!");
}
};