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

Disables bioscrambler anomaly #230

Merged
merged 3 commits into from
Nov 17, 2024
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
8 changes: 4 additions & 4 deletions code/modules/events/anomaly/anomaly_bioscrambler.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "Anomaly: Bioscrambler"
typepath = /datum/round_event/anomaly/anomaly_bioscrambler

min_players = 5
max_occurrences = 5
min_players = 256 // DOPPLER EDIT: functionally disable bioscramblers
max_occurrences = 0 // DOPPLER EDIT: functionally disable bioscramblers
weight = 20
description = "This anomaly replaces the limbs of nearby people."
min_wizard_trigger_potency = 0
max_wizard_trigger_potency = 2
min_wizard_trigger_potency = 0 // DOPPLER EDIT: functionally disable bioscramblers
max_wizard_trigger_potency = 0

/datum/round_event/anomaly/anomaly_bioscrambler
start_when = ANOMALY_START_MEDIUM_TIME
Expand Down
Loading