forked from VoxeLibre/VoxeLibre
Optimisation. Don't even prepare to path if not ready to path
This commit is contained in:
parent
465a919f6b
commit
85f7bbdb80
|
@ -836,6 +836,7 @@ end
|
||||||
|
|
||||||
local function take_bed (entity)
|
local function take_bed (entity)
|
||||||
if not entity then return end
|
if not entity then return end
|
||||||
|
if not self:ready_to_path() then return end
|
||||||
|
|
||||||
local p = entity.object:get_pos()
|
local p = entity.object:get_pos()
|
||||||
|
|
||||||
|
@ -1059,9 +1060,9 @@ local function look_for_job(self, requested_jobsites)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local function get_a_job(self)
|
local function get_a_job(self)
|
||||||
if self.order == WORK then self.order = nil end
|
if self.order == WORK then self.order = nil end
|
||||||
|
if not self:ready_to_path() then return end
|
||||||
|
|
||||||
mcl_log("I'm unemployed or lost my job block and have traded. Can I get a job?")
|
mcl_log("I'm unemployed or lost my job block and have traded. Can I get a job?")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue