Skip to content

Commit

Permalink
Update Robot Resize Module (#405)
Browse files Browse the repository at this point in the history
## About The Pull Request

Убираем гигантских роботов, делаем их чуть-чуть большими.
Увы, хардкодом, иначе пришлось бы извращаться с трансформами.

## Why It's Good For The Game

Больше никаких биг-кринжеборгов.

![image](https://github.com/user-attachments/assets/03588993-ec7f-4459-804f-5f9363305297)

Больше не будет вот таких боргов:

![image](https://github.com/user-attachments/assets/0d1c3c2e-e1bf-4540-a234-4698dae7b150)

## Changelog
:cl:
code: Модуль увеичения боргов теперь не так сильно увеличивает
/:cl:
  • Loading branch information
PhantornRU authored Jul 19, 2024
1 parent c2a746f commit 258cde1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/items/robot/robot_upgrades.dm
Original file line number Diff line number Diff line change
Expand Up @@ -590,15 +590,15 @@
borg.set_anchored(FALSE)
REMOVE_TRAIT(borg, TRAIT_NO_TRANSFORM, REF(src))
borg.hasExpanded = TRUE
borg.update_transform(2)
borg.update_transform(1.25) // SS220 BandaStation EDIT - RESIZE UPDATE

/obj/item/borg/upgrade/expand/deactivate(mob/living/silicon/robot/borg, mob/living/user = usr)
. = ..()
if(!.)
return .
if (borg.hasExpanded)
borg.hasExpanded = FALSE
borg.update_transform(0.5)
borg.update_transform(0.835) // SS220 BandaStation EDIT - RESIZE UPDATE

/obj/item/borg/upgrade/rped
name = "engineering cyborg RPED"
Expand Down

0 comments on commit 258cde1

Please sign in to comment.