Clockwork cult rework: Post-merge micro-patch

This commit is contained in:
Ashe Higgs
2017-09-26 19:59:41 -05:00
committed by CitadelStationBot
parent b51e4457f5
commit 193d929e4b
3 changed files with 67 additions and 3 deletions
@@ -647,7 +647,7 @@
data["scripture"] += list(temp_info)
data["recollection"] = recollecting
if(recollecting)
data["recollection_categories"] = list(\
data["recollection_categories"] = GLOB.ratvar_awakens ? list() : list(\
list("name" = "Getting Started", "desc" = "First-time servant? Read this first."), \
list("name" = "Basics", "desc" = "A primer on how to play as a servant."), \
list("name" = "Terminology", "desc" = "Common acronyms, words, and terms."), \
@@ -657,8 +657,8 @@
list("name" = "Conversion", "desc" = "Converting the crew, cyborgs, and very walls to your cause."), \
)
data["rec_text"] = recollection()
data["rec_section"] = get_recollection_text(recollection_category)
data["rec_binds"] = get_recollection_quickbinds()
data["rec_section"] = GLOB.ratvar_awakens ? "" : get_recollection_text(recollection_category)
data["rec_binds"] = GLOB.ratvar_awakens ? "" : get_recollection_quickbinds()
return data
/obj/item/clockwork/slab/ui_act(action, params)