Skip to content

Commit

Permalink
Fix structure climbing (#1673)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Чинит карабканье на стол и забор, наверное. На стол точно.

## Почему это хорошо для игры
Баги плохо.

## Тестирование
Танцую на столе.

## Changelog

:cl: Maxiemar
fix: Восстановлена способность забраться на стол.
/:cl:
  • Loading branch information
m-dzianishchyts authored Nov 29, 2024
1 parent 6dcdc59 commit 9ece203
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modular_ss220/clumsy_table/code/clumsy_table.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
. = ..()

/obj/structure/table/do_climb(mob/living/user)
if(!..())
. = ..()
if(!.)
return FALSE
AddComponent(/datum/component/clumsy_climb, 15)
SEND_SIGNAL(src, COMSIG_CLIMBED_ON, user)

0 comments on commit 9ece203

Please sign in to comment.