Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
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
7 changes: 5 additions & 2 deletions code/game/gamemodes/clock_cult/clock_cult.dm
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,11 @@ Credit where due:
if(.)
var/datum/antagonist/clockcult/servant = .
var/datum/team/clockcult/cult = servant.get_team()
cult.check_size()

cult.check_size()
if (GLOB.ratvar_approaches)
L.set_species(/datum/species/golem/clockwork/no_scrap)
to_chat(L, "<span class='heavy_brass'>The beacon is active! You are reformed in Ratvar's image.</span>")

if(!silent && L)
if(.)
to_chat(L, "<span class='heavy_brass'>The world before you suddenly glows a brilliant yellow. [issilicon(L) ? "You cannot compute this truth!" : \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/proc/adjust_clockwork_power(amount) //Adjusts the global clockwork power by this amount (min 0.)
var/current_power
if(GLOB.ratvar_approaches)
amount *= 0.75 //The herald's beacon reduces power costs by 25% across the board!
amount *= 0.25 //The herald's beacon reduces power costs by 50% across the board!
if(GLOB.ratvar_awakens)
current_power = GLOB.clockwork_power = INFINITY
else
Expand Down