/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to trade_view.lua

  • Committer: Josh C
  • Date: 2013-07-04 18:15:15 UTC
  • Revision ID: josh@9ix.org-20130704181515-pmp44y2vv3vw170x
reset kill counter on reward

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
              }
178
178
              self:add(self.availSpace)
179
179
 
 
180
              if the.player.kills > 0 then
 
181
                 local award = the.player.kills * 100
 
182
                 self:add(Text:new{
 
183
                             text = 'You have been awarded ' ..
 
184
                                award ..
 
185
                                ' credits for killing bandits.',
 
186
                             width = 450,
 
187
                             align = 'center',
 
188
                             x = boxL,
 
189
                             y = boxB - 4 * th - 12
 
190
                          })
 
191
 
 
192
                 the.player.money = the.player.money + award
 
193
                 the.player.kills = 0
 
194
              end
 
195
 
180
196
              -- give the buttons a cycle to get out of the T/L corner
181
197
              self:update(0)
182
198
           end,
189
205
                 Subview.activate(self)
190
206
              end,
191
207
   close = function (self)
 
208
              the.player:save()
 
209
 
192
210
              the.cursor.visible = true
193
211
              love.mouse.setVisible(false)
194
212
              love.mouse.setGrab(true)