diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-29 18:45:41 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-29 18:45:41 +0000 |
commit | 44bcfd5a90d1ce0d279f951054a2c7cf464436d7 (patch) | |
tree | 50cf42dd533c7b49c2a6650812e4d351e709d945 /src | |
parent | 641f0c27624a0d9c6ebfd4280824bf7f594f868c (diff) | |
download | hercules-44bcfd5a90d1ce0d279f951054a2c7cf464436d7.tar.gz hercules-44bcfd5a90d1ce0d279f951054a2c7cf464436d7.tar.bz2 hercules-44bcfd5a90d1ce0d279f951054a2c7cf464436d7.tar.xz hercules-44bcfd5a90d1ce0d279f951054a2c7cf464436d7.zip |
WTF was I doing?
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9595 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/atcommand.c | 4 | ||||
-rw-r--r-- | src/map/skill.c | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 83e816cc1..a621c8dfd 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1342,10 +1342,10 @@ int atcommand_rura( return -1; } - if ((x || y) && map_getcell(m, x, y, CELL_CHKNOPASS)) { + /*if ((x || y) && map_getcell(m, x, y, CELL_CHKNOPASS)) { clif_displaymessage(fd, msg_txt(2)); x = y = 0; //Invalid cell, use random spot. - } + }*/ if (map[m].flag.nowarpto && battle_config.any_warp_GM_min_level > pc_isGM(sd)) { clif_displaymessage(fd, msg_txt(247)); return -1; diff --git a/src/map/skill.c b/src/map/skill.c index d66c1ab67..0655990c8 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -3830,7 +3830,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in case TK_MISSION: if (sd) { int id; - if (sd->mission_mobid && (sd->mission_count || rand()%99)) { //Cannot change target when already have one + if (sd->mission_mobid && (sd->mission_count || rand()%100)) { //Cannot change target when already have one clif_mission_info(sd, sd->mission_mobid, sd->mission_count); clif_skill_fail(sd,skillid,0,0); break; @@ -7834,8 +7834,6 @@ int skill_check_condition (struct map_session_data *sd, int skill, int lv, int t sd->skillitem = sd->skillitemlv = 0; //Need to do arrow state check. sd->state.arrow_atk = skill_get_ammotype(skill)?1:0; - //Need to do Spiritball check. - sd->spiritball_old = sd->spiritball; return 1; } |