Skip to content

Commit

Permalink
update build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
GenZmeY committed Sep 2, 2022
1 parent 4cdbf18 commit 5fd2af5
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.psd
/ignore
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtDT_Ballistic_9mm.uc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class ExtDT_Ballistic_9mm extends KFDT_Ballistic_9mm
abstract
hidedropdown;

DefaultProperties
defaultproperties
{
ModifierPerkList(0) = class'KFPerk_Sharpshooter'
ModifierPerkList(1) = class'KFPerk_Gunslinger'
Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtDT_Ballistic_Pistol_Medic.uc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class ExtDT_Ballistic_Pistol_Medic extends KFDT_Ballistic_Pistol_Medic
abstract
hidedropdown;

DefaultProperties
defaultproperties
{
ModifierPerkList(0) = class'KFPerk_Sharpshooter'
ModifierPerkList(1) = class'KFPerk_Gunslinger'
Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtExplosion_SirenScream.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ protected function SpecialCringeEffectsfor (Actor Victim, float VictimDist)
return;
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtHUD_PlayerBackpack.uc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ function UpdateGrenades()
}
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtHUD_WeaponSelectWidget.uc
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ simulated function SetWeaponGroupList(out array<KFWeapon> WeaponList, byte Group
SetWeaponList(DataProvider, GroupIndex);
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtSM_Player_Emote.uc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ function PlayAnimation()
}
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtSM_Siren_Scream.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function SpawnProjectileShield()
return;
}

DefaultProperties
defaultproperties
{
ExplosionActorClass=class'ExtExplosion_SirenScream'

Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtWeapDef_9mm.uc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class ExtWeapDef_9mm extends KFWeapDef_9mm
abstract;

DefaultProperties
defaultproperties
{
// Set free ammo
AmmoPricePerMag=0
Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtWeapDef_MedicPistol.uc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class ExtWeapDef_MedicPistol extends KFWeapDef_MedicPistol
abstract;

DefaultProperties
defaultproperties
{
// Unsellable weapon
BuyPrice=0
Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/ExtWidget_PartyInGame.uc
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ function GFxObject RefreshSlot(int SlotIndex, KFPlayerReplicationInfo KFPRI)
return PlayerInfoObject;
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/Ext_AICommandBasePet.uc
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,6 @@ RecheckOwner:
Goto('Begin');
}

DefaultProperties
defaultproperties
{
}
2 changes: 1 addition & 1 deletion ServerExt/Classes/Ext_AINoTaunt.uc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function SpecialMoveEnded(Name PrevMove, Name NextMove)
{
}

DefaultProperties
defaultproperties
{
Handle=KFSM_Taunt
bDisableMovement=true
Expand Down
2 changes: 1 addition & 1 deletion ServerExt/Classes/Ext_T_SupplierInteract.uc
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ simulated function Destroyed()
}
}

DefaultProperties
defaultproperties
{
InteractionIndex=IMT_ReceiveAmmo
RemoteRole=ROLE_SimulatedProxy
Expand Down
9 changes: 9 additions & 0 deletions builder.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ StripSource="True"
PackageBuildOrder="ServerExt ServerExtMut"


### Brew parameters ###

# Packages you want to brew using @peelz's patched KFEditor.
# Useful for cases where regular brew doesn't put *.upk inside the package.
# Specify them with a space as a separator,
# The order doesn't matter
PackagePeelzBrew=""


### Steam Workshop upload parameters ###

# Mutators that will be uploaded to the workshop
Expand Down
2 changes: 1 addition & 1 deletion tools
Submodule tools updated 4 files
+39 −13 README.md
+3 −2 TODO.md
+1 −2 USAGE.md
+166 −89 builder

0 comments on commit 5fd2af5

Please sign in to comment.