Browse Source

Fixed 'n_ele' not initialized and a typo in the Changelog.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13828 54d463be-8e91-2dee-dedb-b68131a5f0ec
Inkfish 16 years ago
parent
commit
dcb4f2b931
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Changelog-Trunk.txt
  2. 1 1
      src/map/battle.c

+ 1 - 1
Changelog-Trunk.txt

@@ -6,7 +6,7 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 09/05/30
 	* Multiple autocasts can go off at a time now. [Inkfish]
 	* Splash damage doesn't get modified by percentual modifier now. [Inkfish]
-	* Monster's Spiral Pierce is again...non-elemental. [Inkfish]
+	* Monster's Spiral Pierce is again...elemental. [Inkfish]
 	* Fixed Hocus-pocus always fails. (bugreport:3143, follow up to: r13815) [Inkfish]
 09/05/29
 	* Added new bonuses bHealPower and bHealPower2. [Inkfish]

+ 1 - 1
src/map/battle.c

@@ -896,7 +896,7 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src,struct blo
 	short skill=0;
 	short s_ele, s_ele_, t_class;
 	int i, nk;
-	bool n_ele; // non-elemental
+	bool n_ele = false; // non-elemental
 
 	struct map_session_data *sd, *tsd;
 	struct Damage wd;