Skip to content

Commit

Permalink
fixes in fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemchik542 committed Jun 20, 2024
1 parent c9aecf6 commit 4b9a529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion code/__HELPERS/chat_filter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// Given a text, will return what word is on the IC filter, with the reason.
/// Returns null if the message is OK.
/proc/is_ic_filtered(message)
if (config.ic_filter_regex?.Find_char(LOWER_TEXT(message))) //MASSMETA EDIT
if (config.ic_filter_regex?.Find_char(LOWER_TEXT(message))) //MASSMETA EDIT CHANGE - ORIGINAL: .Find(message)
var/matched_group = GET_MATCHED_GROUP(config.ic_filter_regex)
return list(
matched_group,
Expand Down
9 changes: 0 additions & 9 deletions code/__HELPERS/~meta_helpers/modular_meta_helpers.dme
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
/*
*
* Это основной файл куда будут складываться все наши модульные добавления для хелперов.
* Добавлять только:
* Хелперы (.dm файлами)
* Сам этот файл добавлен в tgstation.dme
*
*/

//helpers files
4 changes: 2 additions & 2 deletions massmeta/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
* Модули (.dme файлами)
Сам этот файл добавлен в tgstation.dme

Все Defines лежат в папке "code\__DEFINES\~meta_defines\"
Все Helpers лежат в папке "code\__HELPERS\~meta_helpers\"
Все Defines файлы лежат в папке "code\__DEFINES\~meta_defines\"
Все Helpers файлы лежат в папке "code\__HELPERS\~meta_helpers\"

0 comments on commit 4b9a529

Please sign in to comment.