Skip to content

Commit

Permalink
whjat the fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerev4r committed Dec 30, 2024
1 parent c1c180c commit cbe0251
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions code/modules/mod/modules/module_kinesis.dm
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
/obj/item/mod/module/anomaly_locked/kinesis/proc/grab_atom(atom/movable/target)
grabbed_atom = target
if(isliving(grabbed_atom))
grabbed_atom.add_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED), REF(src))
grabbed_atom.add_traits(list(TRAIT_IMMOBILIZED), REF(src)) //DOPPLER EDIT CHANGE - For The Kinesis Rework - Original: grabbed_atom.add_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED), REF(src))
RegisterSignal(grabbed_atom, COMSIG_MOB_STATCHANGE, PROC_REF(on_statchange))
ADD_TRAIT(grabbed_atom, TRAIT_NO_FLOATING_ANIM, REF(src))
RegisterSignal(grabbed_atom, COMSIG_MOVABLE_SET_ANCHORED, PROC_REF(on_setanchored))
Expand Down Expand Up @@ -292,13 +292,13 @@

// DOPPLER EDIT END - requires an anomaly core, but can grab live people
/obj/item/mod/module/anomaly_locked/kinesis/plus
name = "MOD kinesis module" //DOPPLER EDIT CHANGE - For The Kinesis Rework - Original: "MOD kinesis+ module"
name = "MOD kinesis plus module" // DOPLPER EDIT CHANGE - For The Kinesis Rework - Original: "MOD kinesis+ module"
desc = "A modular plug-in to the forearm, this module was developed with the technology of an anomaly core. \
The bane of all ne'er-do-wells, the kinesis+ module is a powerful tool that allows the user \
to manipulate the world around them. Like its older counterpart, it's capable of manipulating \
structures, machinery, vehicles, and, thanks to the fruitful efforts of its creators - living beings."
complexity = 0
prebuilt = TRUE
prebuilt = FALSE
stat_required = CONSCIOUS

// DOPPLER EDIT START - For The Kinesis Rework
Expand Down
4 changes: 2 additions & 2 deletions code/modules/research/designs/mechfabricator_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2778,9 +2778,9 @@
/datum/material/uranium =SHEET_MATERIAL_AMOUNT,
/datum/material/bluespace =SHEET_MATERIAL_AMOUNT,
)
name = "Kinesis Module"
name = "Kinesis Plus Module"
id = "mod_kinesis"
build_path = /obj/item/mod/module/anomaly_locked/kinesis/upgraded
build_path = /obj/item/mod/module/anomaly_locked/kinesis/plus

/datum/design/module/mod_kinesis/weak
materials = list(
Expand Down

0 comments on commit cbe0251

Please sign in to comment.