Skip to content
2 changes: 1 addition & 1 deletion code/modules/power/singularity/field_generator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ field_generator power level display
if(connected_gens.len < 2)
return
var/CGcounter
for(CGcounter = 1; CGcounter < connected_gens.len; CGcounter++)
for(CGcounter = 1; CGcounter < length(connected_gens); CGcounter++) // PENTEST CORRECTION

var/list/CGList = ((connected_gens[CGcounter].connected_gens & connected_gens[CGcounter+1].connected_gens)^src)
if(!CGList.len)
Expand Down
4 changes: 2 additions & 2 deletions dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export RUST_G_VERSION=3.6.0
export NODE_VERSION=16
export NODE_VERSION_PRECISE=16.13.0

# SpacemanDMM git tag
export SPACEMAN_DMM_VERSION=suite-1.8
# SpacemanDMM git tag - PENTEST UPDATE - Updated spaceman dmm version
export SPACEMAN_DMM_VERSION=suite-1.11

# Python version for mapmerge and other tools
export PYTHON_VERSION=3.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
complexity = 3

/obj/item/mod/module/power_kick/on_throw_impact(mob/living/source, obj/target, datum/thrownthing/thrownthing)
SIGNAL_HANDLER

@Absolucy Absolucy Feb 25, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was unneeded, as the original on_throw_impact has SIGNAL_HANDLER, which SDMM will still use even if we override the whole proc.


UnregisterSignal(source, COMSIG_MOVABLE_IMPACT)
if(!mod?.wearer)
return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,6 @@
return ..()

/obj/item/clothing/gloves/radio/advanced/handle_speech(datum/source, list/speech_args)
SIGNAL_HANDLER

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

original handle_speech has SIGNAL_HANDLER so this is unneeded


var/datum/language/used_language = speech_args[SPEECH_LANGUAGE]

// Only process if they're using sign language
Expand Down
Loading