summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map/battle.c3
-rw-r--r--src/map/script.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index f11e014fc..f8f16c2b1 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -1505,8 +1505,7 @@ static struct Damage battle_calc_weapon_attack(
skillratio += 200;
break;
case HFLI_MOON: //[orn]
- skillratio += ( 110 * (skill_lv + 1) ) - 100 ;
- skillratio /= wd.div_ ;
+ skillratio += 10+110*skill_lv;
break;
case HFLI_SBR44: //[orn]
skillratio += 100 * skill_lv ;
diff --git a/src/map/script.c b/src/map/script.c
index 476e9011f..cf1ae0c17 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -11323,7 +11323,7 @@ void op_2(struct script_state *st,int op)
op_2num(st,op,i1,i2);
}else{
// si,is => error
- ShowWarning("script: op_2: int&str, str&int not allow.");
+ ShowWarning("script: op_2: int&str, str&int not allow.\n");
report_src(st);
push_val(st->stack,C_INT,0);
}