diff --git a/api/source/PathFinder.md b/api/source/PathFinder.md
index da62da97..175d1892 100644
--- a/api/source/PathFinder.md
+++ b/api/source/PathFinder.md
@@ -144,15 +144,15 @@ property | description
{% api_method PathFinder.use 'isEnabled' 0 '{"deprecated": true}' %}
```javascript
-PathFinder.use(true);
+PathFinder.use(false);
Game.creeps.John.moveTo(Game.spawns['Spawn1']);
```
-Specify whether to use this new experimental pathfinder in game objects methods. This method should be invoked every tick. It affects the following methods behavior: Room.findPath
, RoomPosition.findPathTo
, RoomPosition.findClosestByPath
, Creep.moveTo
.
+`PathFinder` is enabled by default. This method can be used to disable `PathFinder` and use an older, slower algorithm (although doing so is not recommended). This method should be invoked every tick when used. It affects the following methods behavior: Room.findPath
, RoomPosition.findPathTo
, RoomPosition.findClosestByPath
, Creep.moveTo
.
{% api_method_params %}
isEnabled : boolean
-Whether to activate the new pathfinder or deactivate. The default is `true`.
+Whether to activate or deactivate the pathfinder. The default is `true`.
{% endapi_method_params %}
diff --git a/api/source/Room.md b/api/source/Room.md
index adf1d1d7..18590cbb 100644
--- a/api/source/Room.md
+++ b/api/source/Room.md
@@ -313,7 +313,6 @@ creep.move(path[0].direction);
```
```javascript
-PathFinder.use(true);
const path = creep.room.findPath(creep.pos, targetPos, {
costCallback: function(roomName, costMatrix) {
if(roomName == 'W1N5') {
@@ -366,22 +365,22 @@ An object containing additonal pathfinding flags:
PathFinder
is enabled.PathFinder
has been disabled.CostMatrix
for any room during the search. The callback accepts two arguments, roomName
and costMatrix
. Use the costMatrix
instance to make changes to the positions costs. If you return a new matrix from this callback, it will be used instead of the built-in cached one. This option is only used when the new PathFinder
is enabled.CostMatrix
for any room during the search. The callback accepts two arguments, roomName
and costMatrix
. Use the costMatrix
instance to make changes to the positions costs. If you return a new matrix from this callback, it will be used instead of the built-in cached one. This option is ignored if PathFinder
has been disabled.PathFinder
is enabled (use costCallback
option instead).PathFinder
is enabled (use costCallback
option instead).PathFinder
is enabled (use costCallback
option instead).PathFinder
is enabled (use costCallback
option instead).PathFinder
is enabled.PathFinder
has been disabled.