Merge pull request #64 from DexterHaslem/324-refill-jetpack-script

script changes for fortressforever #324 
woooopieee cross-repo comments dont auto merge
This commit is contained in:
Dexter Haslem 2018-01-23 19:40:29 -07:00 committed by GitHub
commit c965029436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -373,6 +373,7 @@ basecap = trigger_ff_script:new({
gren2 = 4,
item = "",
team = 0,
jetpackfuel = 100,
-- teampoints and fortpoints are defined as functions here for backwards compatibility (to always get the current value of the global variable)
-- when defining capture points that inherit from basecap, teampoints and fortpoints can be set to numbers instead
teampoints = function(cap, team) return POINTS_PER_CAPTURE end,
@ -472,6 +473,9 @@ function basecap:ontrigger ( trigger_entity )
if self.gren1 ~= nil and self.gren1 ~= 0 then player:AddAmmo(Ammo.kGren1, self.gren1) end
if self.gren2 ~= nil and self.gren2 ~= 0 then player:AddAmmo(Ammo.kGren2, self.gren2) end
-- restock player specials
if self.jetpackfuel ~= nil then player:SetJetpackFuel(self.jetpackfuel) end
self:oncapture( player, v )
end
end