From f029299c3a60df8301a4ab32ab693b672798e8ad Mon Sep 17 00:00:00 2001 From: David Gay Date: Sun, 23 May 2021 17:50:06 -0400 Subject: Have equipment stats affect combat stats --- app/controllers/bazaar_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/controllers') 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 -- cgit v1.2.3