diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/bazaar/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/bazaar/index.html.erb b/app/views/bazaar/index.html.erb index 2ee433c..e41fb2c 100644 --- a/app/views/bazaar/index.html.erb +++ b/app/views/bazaar/index.html.erb @@ -77,7 +77,7 @@ </tr> </thead> <tbody> - <% @bazaar_orders.where(buy_order: false).each do |bo| %> + <% @bazaar_orders.where(buy_order: false).where.not(character: current_char).each do |bo| %> <tr> <td class="table-cell-padded"><%= bo.item.name %></td> <td class="table-cell-padded"><%= bo.quantity %></td> @@ -109,7 +109,7 @@ </tr> </thead> <tbody> - <% @bazaar_orders.where(buy_order: true).each do |bo| %> + <% @bazaar_orders.where(buy_order: true).where.not(character: current_char).each do |bo| %> <tr> <td class="table-cell-padded"><%= bo.item.name %></td> <td class="table-cell-padded"><%= bo.quantity %></td> |