Skip to content

Commit

Permalink
Merge branch 'main' into progression
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames authored Jul 19, 2023
2 parents 352f2a6 + b951cae commit 5842d1f
Show file tree
Hide file tree
Showing 23 changed files with 2,063 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Northstar.Client/mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Northstar.Client",
"Description": "Various ui and client changes to fix bugs and add better support for mods",
"Version": "1.14.0",
"Version": "1.16.0",
"LoadPriority": 0,
"InitScript": "cl_northstar_client_init.nut",
"ConVars": [
Expand Down
6 changes: 5 additions & 1 deletion Northstar.Custom/mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Northstar.Custom",
"Description": "Custom content for Northstar: extra weapons, gamemodes, etc.",
"Version": "1.14.0",
"Version": "1.16.0",
"LoadPriority": 1,
"RequiredOnClient": true,
"ConVars": [
Expand Down Expand Up @@ -38,6 +38,10 @@
"Path": "weapons/mp_weapon_peacekraber.nut",
"RunOn": "( CLIENT || SERVER ) && MP"
},
{
"Path": "weapons/mp_titanweapon_arc_cannon.nut",
"RunOn": "( CLIENT || SERVER ) && MP"
},
{
"Path": "gamemodes/sh_gamemode_chamber.nut",
"RunOn": "( CLIENT || SERVER ) && MP",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ void function CreateGamemodeFW()
GameMode_AddClientInit( FORT_WAR, CLGamemodeFW_Init )
#endif
#if !UI
GameMode_SetScoreCompareFunc( FORT_WAR, CompareAssaultScore )
GameMode_AddSharedInit( FORT_WAR, SHGamemodeFW_Init )
#endif
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ void function NorthstarCustomPrecache()
{
PrecacheWeapon( "mp_weapon_peacekraber" )
PrecacheWeapon( "mp_titanweapon_triplethreat" )
PrecacheWeapon( "mp_titanweapon_arc_cannon" )
PrecacheWeapon( "melee_pilot_kunai" )

RegisterWeaponDamageSources(
Expand Down
Loading

0 comments on commit 5842d1f

Please sign in to comment.