/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-25 18:23:38 UTC
  • Revision ID: josh@9ix.org-20130625182338-gkx8evr4z93zh9x7
load/save (not working yet)

Show diffs side-by-side

added added

removed removed

42
42
                       the.player.velocity = {x=0, y=0}
43
43
                       the.player.acceleration = {x=0, y=0}
44
44
 
 
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
 
45
56
                       tradeView = TradeView:new{ planet = self }
46
57
                       tradeView:activate()
47
58
                    end