Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing strings for Double Barrel and Arc Cannon #671

Merged
merged 9 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Northstar.Custom/mod/resource/northstar_custom_english.txt
Binary file not shown.
Binary file modified Northstar.Custom/mod/resource/northstar_custom_portuguese.txt
Binary file not shown.
6 changes: 4 additions & 2 deletions Northstar.Custom/mod/scripts/vscripts/sh_damage_types.nut
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
#endif
Loading