/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-10-21 18:31:55 UTC
  • Revision ID: josh@9ix.org-20131021183155-vl7pxaor2u3pw0t0
have enemies disengage when you land

Show diffs side-by-side

added added

removed removed

53
53
 
54
54
                       the.player:save()
55
55
 
 
56
                       -- disengage all the enemies
 
57
                       for _, enemy in pairs(the.enemies.sprites) do
 
58
                          if enemy.state == 'combat' then
 
59
                             enemy.state = 'patrolling'
 
60
                          end
 
61
                       end
 
62
 
56
63
                       tradeView = TradeView:new{ planet = self }
57
64
                       tradeView:activate()
58
65
                    end