/traderous

To get this branch, use:
bzr branch /bzr/traderous

« back to all changes in this revision

Viewing changes to planet.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

51
51
                       the.player.velocity = {x=0, y=0}
52
52
                       the.player.acceleration = {x=0, y=0}
53
53
 
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()
 
54
                       the.player:save()
62
55
 
63
56
                       tradeView = TradeView:new{ planet = self }
64
57
                       tradeView:activate()