/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-30 22:36:26 UTC
  • Revision ID: josh@9ix.org-20130630223626-pgya1z6raymhzj2v
5-7 planets, tweak some goods

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                       the.player.velocity = {x=0, y=0}
52
52
                       the.player.acceleration = {x=0, y=0}
53
53
 
54
 
                       the.player:save()
 
54
                       -- save player data
 
55
                       the.storage.data.player = {x = the.player.x,
 
56
                                                  y = the.player.y,
 
57
                                                  money = the.player.money,
 
58
                                                  goods = the.player.goods,
 
59
                                                  cargoSpace = the.player.cargoSpace
 
60
                                               }
 
61
                       the.storage:save()
55
62
 
56
63
                       tradeView = TradeView:new{ planet = self }
57
64
                       tradeView:activate()