Skip to content

Commit

Permalink
wrong way around
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Dec 8, 2023
1 parent 6ec7553 commit 0aae9f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/admin/chat_commands.dm
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

embed.fields = list()
for(var/datum/controller/subsystem/sub_system as anything in Master.subsystems)
if(params && !findtext(params, sub_system.name))
if(params && !findtext(sub_system.name, params))
continue
var/datum/tgs_chat_embed/field/sub_system_entry = new ("\[[sub_system.state_letter()]] [sub_system.name]", sub_system.stat_entry())
sub_system_entry.is_inline = TRUE
Expand Down

0 comments on commit 0aae9f9

Please sign in to comment.