Skip to content

Commit

Permalink
fix storage action (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 authored Feb 28, 2024
1 parent 0fea747 commit 7bc76b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions code/datums/storage/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@ GLOBAL_LIST_EMPTY(cached_storage_typecaches)
QDEL_NULL(modeswitch_action)
return

if(!isnull(modeswitch_action))
return

if(!isitem(parent))
return

Expand Down
4 changes: 2 additions & 2 deletions html/browser/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ div.notice
padding: 4px;
margin: 3px 0;
text-align: center;
text-shadow: 0 0 5px #FFCC00;
text-shadow: 0 0 0.417em #FFCC00;
overflow: hidden;
font-size: 15px;
font-family: monospace;
Expand All @@ -286,7 +286,7 @@ div.notice
}

.computerText{
text-shadow: 0 0 5px #C8C8C8;
text-shadow: 0 0 0.417em #C8C8C8;
color: #ffffff;
}

Expand Down
3 changes: 2 additions & 1 deletion tgui/packages/tgui-panel/styles/goon/chat-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ em {
.ooc {
color: #cca300;
font-weight: bold;
text-shadow: 0 0 2px #db7900;
text-shadow: 0 0 0.15em #db7900;
}

.looc {
Expand Down Expand Up @@ -418,6 +418,7 @@ em {

.bolddanger {
color: #dd3535;
text-shadow: 0 0 0.3em #FF0000;
font-weight: bold;
}

Expand Down

0 comments on commit 7bc76b6

Please sign in to comment.