diff options
author | Tom Barham <me@cpdt.dev> | 2022-02-22 08:33:50 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 19:33:50 -0300 |
commit | ea9a2ed9b9698d891769fa8598b8262aad97ed77 (patch) | |
tree | 2bcac5590c8c12114b6a54febd7920506bbe66c4 /Northstar.Client/mod.json | |
parent | 1fad39a0d753fa905520ee858f3aa4e8a3ad96a5 (diff) | |
download | NorthstarMods-ea9a2ed9b9698d891769fa8598b8262aad97ed77.tar.gz NorthstarMods-ea9a2ed9b9698d891769fa8598b8262aad97ed77.zip |
Advanced chat: custom messages and client hooks (#217)
Co-authored-by: EmmaM <27428383+emma-miler@users.noreply.github.com>
Diffstat (limited to 'Northstar.Client/mod.json')
-rw-r--r-- | Northstar.Client/mod.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Northstar.Client/mod.json b/Northstar.Client/mod.json index 1a2b5c01..ad850752 100644 --- a/Northstar.Client/mod.json +++ b/Northstar.Client/mod.json @@ -35,6 +35,17 @@ ], "Scripts": [ { + "Path": "_custom_codecallbacks_client.gnut", + "RunOn": "CLIENT", + "ClientCallback": { + "Before": "NSSetupChathooksClient" + } + }, + { + "Path": "chat.gnut", + "RunOn": "CLIENT" + }, + { "Path": "ui/menu_ns_modmenu.nut", "RunOn": "UI", "UICallback": { |