diff --git a/src/game/creeps.js b/src/game/creeps.js index 07fb0147..f7d11aa8 100644 --- a/src/game/creeps.js +++ b/src/game/creeps.js @@ -270,8 +270,8 @@ exports.make = function(_runtimeData, _intents, _register, _globals) { } var result = this.moveByPath(path); - if(result == C.OK) { - return C.OK; + if(result == C.OK || result == C.ERR_TIRED) { + return result; } } }