Skip to content

Commit

Permalink
fix position after try to cross bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
pessoa committed Dec 13, 2024
1 parent ba62a41 commit d8a10b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function rookVillage.onStepIn(creature, item, position, fromPosition)
return true
end

player:teleportTo(Position(player:getPosition().x, player:getPosition().y - 1, player:getPosition().z))
player:teleportTo(Position(player:getPosition().x, player:getPosition().y - 3, player:getPosition().z + 1))
player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You don't have any business there anymore.")

return true
Expand Down

0 comments on commit d8a10b1

Please sign in to comment.