- [FIX] Retocs en habitacions

- [FIX] Quan mor, reapareix en l'habitació que toca
- [FIX] Després de morir, al agafar una clau es tornava tot roig infern (que por)
- [FIX] Si no hi havia objectes amb llum en l'habitació on mories, mai resucitaves
- [FIX] Al resucitar, totes les llums s'encenen desde cero, no nomes la teua
- [FIX] Quan t'havien pegat, no podies disparar durant el cooldown
- [FIX] Menos posibilitats de que la "safe position" estiga en un lloc mortal
This commit is contained in:
2026-03-27 20:37:06 +01:00
parent 49396331a7
commit 51f267284e
6 changed files with 56 additions and 13 deletions

View File

@@ -143,3 +143,8 @@ function rooms.toggle_visibility(layer)
rooms.visibility = rooms.visibility | layer
end
end
function rooms.go_to_room(room)
rooms.pos.x = (room % 8) * 20
rooms.pos.y = (room // 8) * 13
end