Skip to content

Commit

Permalink
fixed indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Dec 4, 2023
1 parent 2848637 commit 6d22a66
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions code/modules/admin/tabs/admin_tab.dm
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,12 @@
if(!target_key)
to_chat(user, "Error: No key detected!")
return
to_chat(user, SPAN_WARNING("Checking Ckey: [target_key]"))
var/list/keys = analyze_ckey(target_key)
if(!keys)
to_chat(user, SPAN_WARNING("No results for [target_key]."))
return
to_chat(user, SPAN_WARNING("Check CKey Results: [keys.Join(", ")]"))
to_chat(user, SPAN_WARNING("No results for [target_key]."))
return
to_chat(user, SPAN_WARNING("Check CKey Results: [keys.Join(", ")]"))

log_admin("[key_name(user)] analyzed ckey '[target_key]'")

Expand Down

0 comments on commit 6d22a66

Please sign in to comment.