~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to CorsixTH/Lua/rooms/psych.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:
79
79
 
80
80
function PsychRoom:commandEnteringPatient(patient)
81
81
  local staff = self.staff_member
82
 
  
 
82
 
83
83
  local obj, ox, oy = self.world:findObjectNear(patient, "couch")
84
84
  patient:walkTo(ox, oy)
85
85
  patient:queueAction{name = "use_object", object = obj}
86
 
  
 
86
 
87
87
  local duration = math.random(16, 72)
88
88
  local bookcase, bx, by
89
89
  local --[[persistable:psych_loop_callback]] function loop_callback()
130
130
    object = obj,
131
131
    loop_callback = loop_callback,
132
132
  }
133
 
  
 
133
 
134
134
  return Room.commandEnteringPatient(self, patient)
135
135
end
136
136