Skip to content

Commit

Permalink
Merge pull request #126 from FreezePhoenix/patch-15
Browse files Browse the repository at this point in the history
Fix Poison Coat duration
  • Loading branch information
kaansoral authored Apr 8, 2024
2 parents 6f5b9f8 + ec48eb4 commit 7beaa1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8529,7 +8529,7 @@ function init_io() {
player.s.phasedout = { ms: G.conditions.phasedout.duration };
} else if (data.name == "pcoat") {
consume_mp(player, gSkill.mp);
player.s.poisonous = { ms: G.skills.pcoat.cooldown };
player.s.poisonous = { ms: G.conditions.poisonous.duration };
} else if (data.name == "curse") {
//#TODO: last_curse variable + check for multiple curses
var attack = commence_attack(player, target, "curse");
Expand Down

0 comments on commit 7beaa1d

Please sign in to comment.