/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:10 UTC
  • Revision ID: josh@9ix.org-20130704181510-lnj4iqrprewr71pu
window title

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
              end
 
194
 
180
195
              -- give the buttons a cycle to get out of the T/L corner
181
196
              self:update(0)
182
197
           end,
189
204
                 Subview.activate(self)
190
205
              end,
191
206
   close = function (self)
 
207
              the.player:save()
 
208
 
192
209
              the.cursor.visible = true
193
210
              love.mouse.setVisible(false)
194
211
              love.mouse.setGrab(true)