/traderous

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

« back to all changes in this revision

Viewing changes to planet.lua

  • Committer: Josh C
  • Date: 2013-06-23 02:52:56 UTC
  • Revision ID: josh@9ix.org-20130623025256-o80jq1o3hy8dw7lh
available cargo space

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                                            the.player.y - (self.y + hw))
40
40
 
41
41
                    if pvec:len2() < hw ^ 2 then
 
42
                       -- TODO: probably you should pay to fix shield
 
43
                       the.player.shield.strength = the.player.shield.max
42
44
                       the.player.velocity = {x=0, y=0}
43
45
                       the.player.acceleration = {x=0, y=0}
44
46
 
45
 
                       -- save player data
46
 
                       the.storage.data.player = {x = the.player.x,
47
 
                                                  y = the.player.y,
48
 
                                                  money = the.player.money,
49
 
                                                  goods = the.player.goods,
50
 
                                                  cargoSpace = the.player.cargoSpace
51
 
                                               }
52
 
                       print('saving')
53
 
                       the.storage:save()
54
 
                       print('finished saving')
55
 
 
56
47
                       tradeView = TradeView:new{ planet = self }
57
48
                       tradeView:activate()
58
49
                    end