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

adds the cult tramstation bar (contest submission nr 1) #325

Merged
merged 5 commits into from
Nov 11, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion code/modules/antagonists/cult/runes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ Runes can either be invoked by one's self or with many different cultists. Each
/// The actual keyword for the rune
var/keyword

/// can non-cultists use this rune? used for the tramstation beer rune. Monkestation - addition
var/cult_override = FALSE

/obj/effect/rune/Initialize(mapload, set_keyword)
. = ..()
if(set_keyword)
Expand All @@ -96,7 +99,8 @@ Runes can either be invoked by one's self or with many different cultists. Each
. = ..()
if(.)
return
if(!IS_CULTIST(user))
// if(!IS_CULTIST(user)) // monkestation change, original code
if(!IS_CULTIST(user) && !cult_override) // monkestation change, cult override added
to_chat(user, span_warning("You aren't able to understand the words of [src]."))
return
var/list/invokers = can_invoke(user)
Expand Down
Loading
Loading