diff options
author | cat_or_not <41955154+catornot@users.noreply.github.com> | 2022-10-21 14:46:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 19:46:58 +0100 |
commit | 3c03047f9a0e3d06004cc5fe008e457396fccbf7 (patch) | |
tree | e8fc3c6a4ae26393fa425cf147354ec72f9bc331 | |
parent | 66d6613e679647e6395b21e8b6fe5f64312a8dd2 (diff) | |
download | NorthstarMods-3c03047f9a0e3d06004cc5fe008e457396fccbf7.tar.gz NorthstarMods-3c03047f9a0e3d06004cc5fe008e457396fccbf7.zip |
add CUSTOMIZE_LOADOUT achievement (#489)
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/_loadouts_mp.gnut | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_loadouts_mp.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_loadouts_mp.gnut index 068a785f..76cb4ac4 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/_loadouts_mp.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/_loadouts_mp.gnut @@ -179,6 +179,8 @@ bool function ClientCommandCallback_SetPersistentLoadoutValue( entity player, ar if ( args[0] == "pilot" ) SetPlayerLoadoutDirty( player ) + UnlockAchievement( player, achievements.CUSTOMIZE_LOADOUT ) + return true } |