Reduce collision trapping and improve /unstuck

Add root, branch, thorn, moss, ivy, and other natural doodads to the no-block foliage list. /unstuck now moves the player 5 units forward instead of resetting in place.
This commit is contained in:
Kelsi 2026-02-07 23:34:28 -08:00
parent 394e1a3f31
commit 22b9ee9726
3 changed files with 19 additions and 5 deletions

View file

@ -4014,7 +4014,7 @@ void GameHandler::useItemById(uint32_t itemId) {
void GameHandler::unstuck() {
if (unstuckCallback_) {
unstuckCallback_();
addSystemChatMessage("Unstuck: position reset to floor.");
addSystemChatMessage("Unstuck: moved 5 units forward.");
}
}