diff options
author | William Miller <william-millennium@hotmail.com> | 2023-08-01 20:58:10 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 01:58:10 +0200 |
commit | 2b263286512ebb1b59980f8c1f442576992323bd (patch) | |
tree | ddd7d5258af4afe0547f94b9d2cbd19c20dbec07 | |
parent | efdf780a8e8645b854c43683cc366e4db63dcae0 (diff) | |
download | NorthstarMods-2b263286512ebb1b59980f8c1f442576992323bd.tar.gz NorthstarMods-2b263286512ebb1b59980f8c1f442576992323bd.zip |
Add missing strings for Double Barrel and Arc Cannon (#671)v1.18.1-rc1v1.18.1
-rw-r--r-- | Northstar.Custom/mod/resource/northstar_custom_english.txt | bin | 6446 -> 7376 bytes | |||
-rw-r--r-- | Northstar.Custom/mod/resource/northstar_custom_portuguese.txt | bin | 5338 -> 6250 bytes | |||
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut | 6 |
3 files changed, 4 insertions, 2 deletions
diff --git a/Northstar.Custom/mod/resource/northstar_custom_english.txt b/Northstar.Custom/mod/resource/northstar_custom_english.txt Binary files differindex dbd3b106..56f56e8d 100644 --- a/Northstar.Custom/mod/resource/northstar_custom_english.txt +++ b/Northstar.Custom/mod/resource/northstar_custom_english.txt diff --git a/Northstar.Custom/mod/resource/northstar_custom_portuguese.txt b/Northstar.Custom/mod/resource/northstar_custom_portuguese.txt Binary files differindex 0a7b19d2..85e915f6 100644 --- a/Northstar.Custom/mod/resource/northstar_custom_portuguese.txt +++ b/Northstar.Custom/mod/resource/northstar_custom_portuguese.txt diff --git a/Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut b/Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut index c66fc857..4987ee01 100644 --- a/Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut +++ b/Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut @@ -630,7 +630,9 @@ void function DamageTypes_Init() [ eDamageSourceId.melee_titan_punch_fighter ] = "#DEATH_TITAN_MELEE", [ eDamageSourceId.melee_titan_punch_vanguard ] = "#DEATH_TITAN_MELEE", [ eDamageSourceId.melee_titan_sword ] = "#DEATH_TITAN_SWORD", - [ eDamageSourceId.melee_titan_sword_aoe ] = "#DEATH_TITAN_SWORD" + [ eDamageSourceId.melee_titan_sword_aoe ] = "#DEATH_TITAN_SWORD", + [ eDamageSourceId.mp_titanweapon_arc_cannon ] = "#WPN_TITAN_ARC_CANNON_SHORT", + [ eDamageSourceId.mp_weapon_shotgun_doublebarrel ] = "#WPN_SHOTGUN_DBLBARREL_SHORT" } #if DEV @@ -773,4 +775,4 @@ void function ReceiveNewDamageSourceIDs( array<string> args ) for ( int i = 0; i < args.len(); i += 3 ) RegisterWeaponDamageSourceInternal( args[ i ].tointeger(), args[ i + 1 ], StringReplace( args[ i + 2 ], MESSAGE_SPACE_PADDING, " " ) ) } -#endif
\ No newline at end of file +#endif |