2
0
This commit is contained in:
YuRaNnNzZZ 2023-04-03 12:51:08 +03:00
parent 07e12b32bc
commit c25c0022ce
Signed by: YuRaNnNzZZ
GPG Key ID: 5F71738C85A6006D
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,8 @@
# This is an archive of changelog messages from `tfa_loader.lua`.
## 4.7.6.4
* Fixed attachments reload command not working from server console
* Fixed attachments ID resolving for related hooks
## 4.7.6.3
* Fixed sprint offset being applied with melee bashing
* Procedural camera bobbing is now inverted for inspect animations

View File

@ -60,7 +60,7 @@ boolean GM:TFABase_ShouldLoadAttachment(string attachmentID, string path)
-- State: Shared
-- Arguments:
-- 1. string attachmentID - Requested attachment ID
-- 2. string path - Attachment file path (without extension)
-- 2. string path - Attachment file path
-- Returns:
-- 1. boolean - Return false to prevent attachment from loading and registration
-- Example:
@ -76,7 +76,7 @@ GM:TFABase_PreBuildAttachment(string attachmentID, string path, table attTbl)
-- State: Shared
-- Arguments:
-- 1. string attachmentID - Requested attachment ID
-- 2. string path - Attachment file path (without extension)
-- 2. string path - Attachment file path
-- 3. table attTbl - Empty attachment reference table (only containing assigned ID)
GM:TFABase_BuildAttachment(string attachmentID, string path, table attTbl)
@ -85,7 +85,7 @@ GM:TFABase_BuildAttachment(string attachmentID, string path, table attTbl)
-- State: Shared
-- Arguments:
-- 1. string attachmentID - Requested attachment ID
-- 2. string path - Attachment file path (without extension)
-- 2. string path - Attachment file path
-- 3. table attTbl - Populated attachment reference table
GM:TFABase_RegisterAttachment(string attachmentID, table attTbl)