Skip to content

Commit

Permalink
per emojiocracy vote. (#4753)
Browse files Browse the repository at this point in the history
Reduces total 'combat related' players required to spawn either blob or Hivemind.

Hiveminds now require 7 players.
Blob now requires 4 players.

See below for the list of jobs that count for this requirement. Why does Premier count??

``#define JOBS_ANTI_HIVEMIND "Blackshield Commander","Warrant Officer","Supply Specialist","Ranger","Corpsman","Blackshield Trooper","Marshal Officer","Sergeant","Prime","Vector","Foreman","Salvager","Prospector","Premier","Steward","AI","Janitor","Soteria Lifeline Technician","Soteria Roboticist","Lonestar Miner"
``
  • Loading branch information
cdb-is-not-good authored Sep 17, 2023
1 parent dca4b47 commit 87dd2c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/game/gamemodes/events/blob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@

log_and_message_admins("Active Blob combative players number is [active_players].")
if(GLOB.hive_data_bool["pop_lock"])
if(active_players <= 7)
log_and_message_admins("Blob failed to spawn as their was less then 7 active players exspected to combat the blob.")
if(active_players <= 4)
log_and_message_admins("Blob failed to spawn as their was less then 4 active players exspected to combat the blob.")
kill()
return

Expand Down
4 changes: 2 additions & 2 deletions code/game/gamemodes/events/hivemind_invasion.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@

log_and_message_admins("Active Hivemind combative players number is [active_players].")
if(GLOB.hive_data_bool["pop_lock"])
if(active_players < 15)
log_and_message_admins("Hivemind failed to spawn as their was less then 15 active players exspected to combat the hivemind.")
if(active_players < 7)
log_and_message_admins("Hivemind failed to spawn as their was less then 7 active players exspected to combat the hivemind.")
kill()
return

Expand Down

0 comments on commit 87dd2c0

Please sign in to comment.