Fixed typo in disable/enable npc's (bugreport:2027)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13085 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Yommy 2008-08-16 04:10:12 +00:00
parent d2fa131861
commit 797806ca93
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,7 @@
Date Added Date Added
====== ======
2008/08/16
* Rev. 13085 Fixed typo in disable/enable npc's (bugreport:2027) [Yommy]
2008/08/11 2008/08/11
* Rev. 13079 Added end; :D (bugreport:2038) [Yommy] * Rev. 13079 Added end; :D (bugreport:2038) [Yommy]
2008/08/11 2008/08/11

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= Evera and The eAthena Dev Team //= Evera and The eAthena Dev Team
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 2.0 //= 2.1
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena 7.15 + //= eAthena 7.15 +
//===== Description: ========================================= //===== Description: =========================================
@ -27,6 +27,7 @@
//= 1.8 Fixed experience gains to match upcoming rate adjustments. [SinSloth] //= 1.8 Fixed experience gains to match upcoming rate adjustments. [SinSloth]
//= 1.9 Fixed a bug with Einbroch Pollution quest. [SinSloth] //= 1.9 Fixed a bug with Einbroch Pollution quest. [SinSloth]
//= 2.0 Fixed bad NPC header data to comply with rev. 11603. [L0ne_W0lf] //= 2.0 Fixed bad NPC header data to comply with rev. 11603. [L0ne_W0lf]
//= 2.1 Fixed typo in disable/enable npc's (bugreport:2027) [Yommy]
//============================================================ //============================================================
@ -2729,8 +2730,8 @@ OnPolution:
donpcevent "Uwe Kleine::OnHide"; donpcevent "Uwe Kleine::OnHide";
donpcevent "Laboratory Soldier#01::OnHide"; donpcevent "Laboratory Soldier#01::OnHide";
donpcevent "Laboratory Soldier#02::OnHide"; donpcevent "Laboratory Soldier#02::OnHide";
disablenpc "Paddler"; disablenpc "Paddler#ein";
disablenpc "Head Gear Dealer"; disablenpc "Flu Mask Dealer#ein";
mapannounce "einbroch","This is a state of emercency! Harmful smog is reaching high levels of saturation. Residents of Einbroch must find shelter immediately.",bc_map; mapannounce "einbroch","This is a state of emercency! Harmful smog is reaching high levels of saturation. Residents of Einbroch must find shelter immediately.",bc_map;
monster "einbroch",82,332,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; monster "einbroch",82,332,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
@ -2856,8 +2857,8 @@ OnTimer600000:
donpcevent "Laboratory Soldier#01::OnUnHide"; donpcevent "Laboratory Soldier#01::OnUnHide";
enablenpc "Laboratory Soldier#02"; enablenpc "Laboratory Soldier#02";
donpcevent "Laboratory Soldier#02::OnUnHide"; donpcevent "Laboratory Soldier#02::OnUnHide";
enablenpc "Paddler"; enablenpc "Paddler#ein";
enablenpc "Head Gear Dealer"; enablenpc "Flu Mask Dealer#ein";
set $EinPolution,0; set $EinPolution,0;
set $@AlrdEinPoll,0; set $@AlrdEinPoll,0;
end; end;