[NO GBP] Fix locked secure safes not showing correct UI (#93769)

## About The Pull Request
Caused by: 
- #93085

I messed up the formatting for arguments accidentally so the 2nd
argument was moved to the 3rd position due to the extra `,`.

## Why It's Good For The Game
Fixes the UI.

## Changelog
🆑
fix: Fix locked secure safes not showing correct UI
/🆑
This commit is contained in:
Tim
2025-11-07 08:23:40 -06:00
committed by GitHub
parent 5cb4d0f2c2
commit b77d5d9bdf
+1 -1
View File
@@ -104,7 +104,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/secure_safe, 32)
/obj/structure/secure_safe/Initialize(mapload)
. = ..()
//this will create the storage for us.
AddComponent(/datum/component/lockable_storage, , stored_lock_code)
AddComponent(/datum/component/lockable_storage, stored_lock_code)
if(mapload)
PopulateContents()
find_and_hang_on_wall()