/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-06-30 22:39:43 UTC
  • Revision ID: josh@9ix.org-20130630223943-863q2kff3f3bqp7v
save on arriving at & leaving a planet both

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
 
 
195
180
              -- give the buttons a cycle to get out of the T/L corner
196
181
              self:update(0)
197
182
           end,