diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-09-15 21:30:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-09-15 21:30:04 -0300 |
commit | b315874cc2b4dd58facc666bd252c599b7841b05 (patch) | |
tree | 42104fa4cdd51a8af002cdef5daf3f67c6bba64b | |
parent | e52cdd45cfec9ec79ff89a0b4dd3de66d0875e82 (diff) | |
download | serverdata-b315874cc2b4dd58facc666bd252c599b7841b05.tar.gz serverdata-b315874cc2b4dd58facc666bd252c599b7841b05.tar.bz2 serverdata-b315874cc2b4dd58facc666bd252c599b7841b05.tar.xz serverdata-b315874cc2b4dd58facc666bd252c599b7841b05.zip |
I forgot to remove some debug code
-rw-r--r-- | npc/016-1/captain.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt index 9b864ca6c..42d0250af 100644 --- a/npc/016-1/captain.txt +++ b/npc/016-1/captain.txt @@ -168,9 +168,9 @@ L_DoWarp: // So for a level 40 player, chances are 14%. if (rand2(1+REBIRTH) && isequippedcnt(CorsairHat, PirateBandana, SailorShirt)) .@do_nothing = 0; // up to 80% chance to bypass any attack - else if (false && rand(1+(REBIRTH*6), 10000) < 1000+(BaseLevel*10)) + else if (rand(1+(REBIRTH*6), 10000) < 1000+(BaseLevel*10)) addtimer rand(3000,6000), "#MarineShipAttack::OnEvent"; - else if (is_staff() && REBIRTH && BaseLevel >= 32 && $GAME_STORYLINE >= 4 && rand(10000) < 1000+(BaseLevel*12) || true) + else if (REBIRTH && BaseLevel >= 32 && $GAME_STORYLINE >= 4 && rand(10000) < 1000+(BaseLevel*12)) addtimer rand(4500,9000), "#MarineShipAttack2::OnEvent"; end; |