Skip to content

Commit

Permalink
Increase lag margin for blue shells
Browse files Browse the repository at this point in the history
  • Loading branch information
tmalahie committed Mar 13, 2024
1 parent 2b851c1 commit 5e3e7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mk.js
Original file line number Diff line number Diff line change
Expand Up @@ -7703,7 +7703,7 @@ var itemBehaviors = {
if (isOnline && isControlledByPlayer(fSprite.target) && (fSprite.cooldown < -10))
fSprite.cooldown = 0;
fSprite.cooldown--;
var delLimit = (isOnline&&!isControlledByPlayer(fSprite.target)) ? -70:-10;
var delLimit = (isOnline&&!isControlledByPlayer(fSprite.target)) ? -120:-10;
if (fSprite.cooldown < delLimit)
detruit(fSprite);
else
Expand Down

0 comments on commit 5e3e7c7

Please sign in to comment.