Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[s] Nothing happened here #23645

Merged
merged 1 commit into from
Dec 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion code/game/objects/items/robot/robot_upgrades.dm
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,14 @@
R.floorbuffer = FALSE
R.speed -= U.buffer_speed

for(var/datum/action/innate/robot_magpulse/magpulse in R.module_actions)
if(magpulse.active)
REMOVE_TRAIT(R, TRAIT_MAGPULSE, "innate boots")
to_chat(R, "You turn your magboots off.")
R.speed -= magpulse.slowdown_active
magpulse.button_icon_state = initial(magpulse.button_icon_state)
magpulse.active = FALSE

R.speed = -1 // Gotta go fast.

return TRUE
Expand Down Expand Up @@ -428,7 +436,7 @@
items_to_replace = list(
/obj/item/soap/nanotrasen = /obj/item/soap/syndie
)

/obj/item/borg/upgrade/bluespace_trash_bag
name = "janitor cyborg trash bag of holding upgrade"
desc = "An advanced trash bag upgrade board with bluespace properties that can be attached to janitorial cyborgs."
Expand Down