~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to CorsixTH/Lua/rooms/jelly_vat.lua

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
  local moulder, stf_x, stf_y = self.world:findObjectNear(patient, "jelly_moulder")
53
53
  local orientation = moulder.object_type.orientations[moulder.direction]
54
54
  local pat_x, pat_y = moulder:getSecondaryUsageTile()
55
 
  
 
55
 
56
56
  staff:setNextAction{name = "walk", x = stf_x, y = stf_y}
57
57
  staff:queueAction{
58
58
    name = "multi_use_object",
66
66
  }
67
67
  patient:setNextAction{name = "walk", x = pat_x, y = pat_y}
68
68
  patient:queueAction{name = "idle", direction = moulder.direction == "north" and "west" or "north"}
69
 
  
 
69
 
70
70
  return Room.commandEnteringPatient(self, patient)
71
71
end
72
72