我尝试像这样使用 findNearest:
var sources = creep.room.findNearest(Game.SOURCES)
creep.moveTo(sources[0]);
creep.harvest(sources[0]);
这就是我得到的:
TypeError: undefined is not a function
at module.exports:5:28
at <main>:11:6
如何使用此方法和 findInRange 以使它们不会导致此错误?