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

[NONMODULAR] RadiationLand-B-Gone #194

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions _maps/mining_configs/iceland.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"Linkage": null
},
{
"Mining": true,
"No Parallax": true,
"Weather_Snowstorm": true,
"Ice Ruins": true,
Expand Down
8 changes: 5 additions & 3 deletions code/datums/weather/weather_types/radiation_storm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
protected_areas = list(/area/station/maintenance, /area/station/ai_monitored/turret_protected/ai_upload, /area/station/ai_monitored/turret_protected/ai_upload_foyer,
/area/station/ai_monitored/turret_protected/aisat/maint, /area/station/ai_monitored/command/storage/satellite,
/area/station/ai_monitored/turret_protected/ai, /area/station/commons/storage/emergency/starboard, /area/station/commons/storage/emergency/port,
/area/shuttle, /area/station/security/prison/safe, /area/station/security/prison/toilet, /area/mine/maintenance, /area/icemoon/underground, /area/ruin/comms_agent/maint)
/area/shuttle, /area/station/security/prison/safe, /area/station/security/prison/toilet, /area/mine/maintenance, /area/icemoon/underground, /area/ruin/comms_agent/maint, /area/ruin, /area/ruin/unpowered/primitive_genemod_den) /// DOPPLER SHIFT EDIT: adding ruins as protected areas, hearthkin explicitly protected
target_trait = ZTRAIT_STATION

immunity_type = TRAIT_RADSTORM_IMMUNE
Expand Down Expand Up @@ -51,8 +51,10 @@
if (SSradiation.wearing_rad_protected_clothing(human))
return

human.random_mutate_unique_identity()
human.random_mutate_unique_features()
/// DOPPLER SHIFT REMOVAL BEGIN: getting bad mutations is horrid enough already, we don't need to be taking people's fucking snouts off
/*human.random_mutate_unique_identity()
human.random_mutate_unique_features()*/
/// DOPPLER SHIFT REMOVAL END

if(prob(50))
do_mutate(human)
Expand Down
Loading