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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes rev wins breaking the game #1420

Merged
merged 1 commit into from
Mar 26, 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
4 changes: 2 additions & 2 deletions code/game/machinery/computer/communications.dm
Original file line number Diff line number Diff line change
Expand Up @@ -881,8 +881,8 @@
continue
shake_camera(crew_member, 15, 1)

var/datum/game_mode/dynamic/dynamic = SSticker.mode
dynamic.unfavorable_situation()
SSgamemode.point_gain_multipliers[EVENT_TRACK_ROLESET]++


if(HACK_SLEEPER) // Trigger one or multiple sleeper agents with the crew (or for latejoining crew)
var/datum/dynamic_ruleset/midround/sleeper_agent_type = /datum/dynamic_ruleset/midround/from_living/autotraitor
Expand Down
3 changes: 1 addition & 2 deletions code/modules/antagonists/revolution/revolution.dm
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,7 @@
job.allow_bureaucratic_error = FALSE
job.total_positions = 0

var/datum/game_mode/dynamic/dynamic = SSticker.mode
dynamic.unfavorable_situation()
SSgamemode.point_gain_multipliers[EVENT_TRACK_ROLESET]++

var/message_header = "A recent assessment of your station has marked your station as a severe risk area for high ranking Nanotrasen officials."
var/extra_detail = try_auto_call_shuttle() \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
min_players = 30
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 4
weight = 20
max_occurrences = 1

/datum/round_event/antagonist/solo/bloodcult
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
min_players = 30
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 4
weight = 20
max_occurrences = 1

/datum/round_event/antagonist/solo/clockcult
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
min_players = 35
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 1 //these are meant to be very rare
weight = 5 //these are meant to be very rare
max_occurrences = 1

/datum/round_event/antagonist/solo/clown_operative
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
maximum_antags = 1
exclusive_roles = list(JOB_AI)
required_enemies = 4
weight = 2
weight = 10
min_players = 35
max_occurrences = 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
min_players = 35
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 4
weight = 20
max_occurrences = 3

/datum/round_event/antagonist/solo/nuclear_operative
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
min_players = 35
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 0 //value was 3, we need to manually test if this works or not before allowing it normally
weight = 15 //value was 3, we need to manually test if this works or not before allowing it normally
max_occurrences = 1

/datum/antagonist/rev/head/event_trigger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
required_enemies = 5
roundstart = TRUE
earliest_start = 0 SECONDS
weight = 2
weight = 10
min_players = 35
max_occurrences = 1

Expand Down
Loading