summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/bazaar_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/bazaar_controller.rb b/app/controllers/bazaar_controller.rb
index b31e8fb..b699d28 100644
--- a/app/controllers/bazaar_controller.rb
+++ b/app/controllers/bazaar_controller.rb
@@ -38,7 +38,7 @@ class BazaarController < ApplicationController
current_char.shift_item(@bazaar_order.item, -quantity)
current_char.shift_item("vestige", profit)
@bazaar_order.character.shift_item(@bazaar_order.item, quantity)
- @bazaar_order.decrement!(:quantity, quantity)
+ @bazaar_order.decrement(:quantity, quantity)
@bazaar_order.save!
flash[:notice] = "You sold #{quantity} #{@bazaar_order.item.name} and got #{profit} vg."
end
@@ -49,7 +49,7 @@ class BazaarController < ApplicationController
current_char.shift_item("vestige", -cost)
current_char.shift_item(@bazaar_order.item, quantity)
@bazaar_order.character.shift_item("vestige", cost)
- @bazaar_order.decrement!(:quantity, quantity)
+ @bazaar_order.decrement(:quantity, quantity)
@bazaar_order.save!
flash[:notice] = "You bought #{quantity} #{@bazaar_order.item.name} for #{cost} vg."
end