Skip to content

Commit

Permalink
disable dead code in gravity jump
Browse files Browse the repository at this point in the history
  • Loading branch information
Kherae committed Apr 14, 2024
1 parent 24cbec6 commit 5de6577
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tech/jump/gravityjump.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ function uninit()
stopAbility(nil)
end

function applyTechBonus()
--[[function applyTechBonus()--the stat isnt actually used for anything at all.
self.jumpBonus = 1 + status.stat("jumptechBonus") -- apply bonus from certain items and armor
end
end]]

function update(args)
applyTechBonus()
--applyTechBonus()
self.disabled = disabled(args)
if not self.disabled and args.moves["jump"] and canAbility(args) then
if not self.doingAbility then
Expand Down

0 comments on commit 5de6577

Please sign in to comment.