Added +1 Hourglass to debug menu

This commit is contained in:
melarish
2015-09-02 18:12:48 +01:00
parent 348d7c356d
commit b2bb6016fa
4 changed files with 13 additions and 5 deletions

View File

@@ -85,8 +85,13 @@ function($scope, $rootScope, User, $http, Notification, ApiUrl) {
User.log({});
})
}
$scope.addGold = function(){
$scope.addHourglass = function(){
User.set({
'purchased.plan.consecutive.trinkets': User.user.purchased.plan.consecutive.trinkets + 1,
});
}
$scope.addGold = function(){
User.set({
'stats.gp': User.user.stats.gp + 500,
});
}