summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-10 05:18:30 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-10 05:18:30 -0300
commit719d697fed5bab40e0a2fae6372ecbf88bec16d3 (patch)
treee328cd7bf4642a195637731b05118dafe403c027
parentd8576b040e4c1e0c2786a4d8472e8152bad57314 (diff)
downloadhercules-719d697fed5bab40e0a2fae6372ecbf88bec16d3.tar.gz
hercules-719d697fed5bab40e0a2fae6372ecbf88bec16d3.tar.bz2
hercules-719d697fed5bab40e0a2fae6372ecbf88bec16d3.tar.xz
hercules-719d697fed5bab40e0a2fae6372ecbf88bec16d3.zip
Fix typo
-rw-r--r--src/map/script.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 2d8203351..498a0ec1e 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -16073,25 +16073,6 @@ static BUILDIN(classchange)
}
/*==========================================
- * Display an effect
- *------------------------------------------*/
-static BUILDIN(misceffect)
-{
- int type;
-
- type=script_getnum(st,2);
- if(st->oid && st->oid != npc->fake_nd->bl.id) {
- struct block_list *bl = map->id2bl(st->oid);
- if (bl)
- clif->specialeffect(bl,type,AREA);
- } else {
- struct map_session_data *sd = script->rid2sd(st);
- if (sd != NULL)
- clif->specialeffect(&sd->bl,type,AREA);
- }
- return true;
-}
-/*==========================================
* Play a BGM on a single client [Rikter/Yommy]
*------------------------------------------*/
static BUILDIN(playbgm)