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

Fix: USA Pilots Can Promote GLA Combat Bikes #1164

Merged
merged 1 commit into from
Oct 30, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -4280,7 +4280,7 @@ Object AirF_AmericaInfantryPilot

Behavior = VeterancyCrateCollide ModuleTag_03
RequiredKindOf = VEHICLE ; we only give our bonus to VEHICLEs we collide with
ForbiddenKindOf = DOZER ; but not to TRANSPORTs or DOZERs!
ForbiddenKindOf = DOZER CLIFF_JUMPER ; but not to TRANSPORTs or DOZERs! Patch104p @bugfix commy2 08/09/2022 Adds CLIFF_JUMPER to prevent Pilot from promoting Combat Bikes.
EffectRange = 0 ; 0=="affect only the thing you collide with"
AddsOwnerVeterancy = Yes ; we add our own veterancy to the target (rather than just +1 level)
IsPilot = Yes ; set the pilot flag because it's different than the veterancy crate and has extra checking
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ Object AmericaInfantryPilot

Behavior = VeterancyCrateCollide ModuleTag_03
RequiredKindOf = VEHICLE ; we only give our bonus to VEHICLEs we collide with
ForbiddenKindOf = DOZER ; but not to TRANSPORTs or DOZERs!
ForbiddenKindOf = DOZER CLIFF_JUMPER ; but not to TRANSPORTs or DOZERs! Patch104p @bugfix commy2 08/09/2022 Adds CLIFF_JUMPER to prevent Pilot from promoting Combat Bikes.
EffectRange = 0 ; 0=="affect only the thing you collide with"
AddsOwnerVeterancy = Yes ; we add our own veterancy to the target (rather than just +1 level)
IsPilot = Yes ; set the pilot flag because it's different than the veterancy crate and has extra checking
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3826,7 +3826,7 @@ Object Lazr_AmericaInfantryPilot

Behavior = VeterancyCrateCollide ModuleTag_03
RequiredKindOf = VEHICLE ; we only give our bonus to VEHICLEs we collide with
ForbiddenKindOf = DOZER ; but not to TRANSPORTs or DOZERs!
ForbiddenKindOf = DOZER CLIFF_JUMPER ; but not to TRANSPORTs or DOZERs! Patch104p @bugfix commy2 08/09/2022 Adds CLIFF_JUMPER to prevent Pilot from promoting Combat Bikes.
EffectRange = 0 ; 0=="affect only the thing you collide with"
AddsOwnerVeterancy = Yes ; we add our own veterancy to the target (rather than just +1 level)
IsPilot = Yes ; set the pilot flag because it's different than the veterancy crate and has extra checking
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4310,7 +4310,7 @@ Object SupW_AmericaInfantryPilot

Behavior = VeterancyCrateCollide ModuleTag_03
RequiredKindOf = VEHICLE ; we only give our bonus to VEHICLEs we collide with
ForbiddenKindOf = DOZER ; but not to TRANSPORTs or DOZERs!
ForbiddenKindOf = DOZER CLIFF_JUMPER ; but not to TRANSPORTs or DOZERs! Patch104p @bugfix commy2 08/09/2022 Adds CLIFF_JUMPER to prevent Pilot from promoting Combat Bikes.
EffectRange = 0 ; 0=="affect only the thing you collide with"
AddsOwnerVeterancy = Yes ; we add our own veterancy to the target (rather than just +1 level)
IsPilot = Yes ; set the pilot flag because it's different than the veterancy crate and has extra checking
Expand Down