feat: custom words blocked (#190)

* Update config.php

* Update validator.php

* Update config.php
This commit is contained in:
Gabriel Pedro
2022-07-30 16:53:19 -04:00
committed by GitHub
parent d99f507244
commit dd3d6b3f47
2 changed files with 24 additions and 4 deletions

View File

@@ -281,5 +281,13 @@ $config = array(
'date_timezone' => 'Europe/Berlin', // more info at http://php.net/manual/en/timezones.php
'footer_show_load_time' => true, // display load time of the page in the footer
'npc' => array()
'npc' => array(),
// character name blocked
'character_name_blocked' => array(
'prefix' => array(),
'names' => array(),
'words' => array(),
),
);