Skip to content

Commit

Permalink
Makes spider directives more obvious (BeeStation#6918)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben <[email protected]>
  • Loading branch information
benbot16 and benbot16 authored May 21, 2022
1 parent a78e822 commit 008a645
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/simple_animal/hostile/giant_spider.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
/mob/living/simple_animal/hostile/poison/giant_spider/Login()
..()
if(directive)
to_chat(src, "<span class='spider'>Your mother left you a directive! Follow it at all costs.</span>")
to_chat(src, "<span class='spider'><b>[directive]</b></span>")
to_chat(src, "<span class='spiderlarge'>Your mother left you a directive! Follow it at all costs.</span>")
to_chat(src, "<span class='spiderlarge'><b>Directive: [directive]</b></span>")
if(mind)
mind.store_memory("<span class='spider'><b>[directive]</b></span>")
mind.store_memory("<span class='spiderlarge'><b>Directive: [directive]</b></span>")

/mob/living/simple_animal/hostile/poison/giant_spider/give_mind(mob/user)
..()
Expand Down
1 change: 1 addition & 0 deletions interface/stylesheet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ h1.alert, h2.alert {color: #000000;}
.bigassimilator {color: #800080; font-size: 4 ; font-weight: bold;}

.spider {color: #4d004d;}
.spiderlarge {color: #4d004d; font-size: 3 ; font-weight: bold;}

.interface {color: #330033;}

Expand Down
1 change: 1 addition & 0 deletions tgui/packages/tgui-panel/styles/goon/chat-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ em {font-style: normal; font-weight: bold;}
.alertsyndie {color: #FF0000; font-size: 24px ; font-weight: bold;}

.spider {color: #8800ff;}
.spiderlarge {color: #8800ff; font-size: 24px ; font-weight: bold;}

.interface {color: #750e75;}

Expand Down
3 changes: 2 additions & 1 deletion tgui/packages/tgui-panel/styles/goon/chat-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ h1.alert, h2.alert {color: #000000;}
.bigassimilator {color: #800080; font-size: 32px ; font-weight: bold;}
.alertsyndie {color: #FF0000; font-size: 24px ; font-weight: bold;}

.spider {color: #4d004d; font-weight: bold; font-size: 24px;}
.spider {color: #4d004d;}
.spiderlarge {color: #4d004d; font-weight: bold; font-size: 24px;}

.interface {color: #330033;}

Expand Down

0 comments on commit 008a645

Please sign in to comment.