summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-26 17:06:58 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-26 17:06:58 +0300
commit4f1b7c5f4a35b098560f047ae0579861f4ca96e4 (patch)
tree5b13136cfb0f71876b83d9da1347e8db1c629048
parent369f7b3a44b0838e168ef7dcdc36d182845e8874 (diff)
downloadevol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.gz
evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.bz2
evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.xz
evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.zip
remove files for dummy script functions.
-rw-r--r--src/Makefile.am2
-rw-r--r--src/map/dummy.c40
-rw-r--r--src/map/dummy.h11
-rw-r--r--src/map/init.c1
4 files changed, 0 insertions, 54 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index e036427..7fe4f14 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -16,8 +16,6 @@ LOGIN_SRC = login/config.c \
MAP_SRC = map/clif.c \
map/clif.h \
- map/dummy.c \
- map/dummy.h \
map/init.c \
map/lang.c \
map/lang.h \
diff --git a/src/map/dummy.c b/src/map/dummy.c
deleted file mode 100644
index ae579b7..0000000
--- a/src/map/dummy.c
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
-// Copyright (c) 2014 Evol developers
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "../../../common/HPMi.h"
-#include "../../../common/malloc.h"
-#include "../../../common/mmo.h"
-#include "../../../common/socket.h"
-#include "../../../common/strlib.h"
-#include "../../../map/clif.h"
-#include "../../../map/pc.h"
-#include "../../../map/script.h"
-
-void showNotImplimented()
-{
- ShowWarning("Not implimented\n");
-}
-
-BUILDIN(dummy)
-{
- showNotImplimented();
- return true;
-}
-
-BUILDIN(dummyStr)
-{
- showNotImplimented();
- script_pushconststr(st, "");
- return true;
-}
-
-BUILDIN(dummyInt)
-{
- showNotImplimented();
- script_pushint(st, 0);
- return true;
-}
diff --git a/src/map/dummy.h b/src/map/dummy.h
deleted file mode 100644
index e799586..0000000
--- a/src/map/dummy.h
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
-// Copyright (c) 2014 Evol developers
-
-#ifndef EVOL_MAP_DUMMY
-#define EVOL_MAP_DUMMY
-
-BUILDIN(dummy);
-BUILDIN(dummyInt);
-BUILDIN(dummyStr);
-
-#endif // EVOL_MAP_DUMMY
diff --git a/src/map/init.c b/src/map/init.c
index 03e6320..2f309da 100644
--- a/src/map/init.c
+++ b/src/map/init.c
@@ -35,7 +35,6 @@
#include "common/interfaces.h"
#include "map/clif.h"
-#include "map/dummy.h"
#include "map/lang.h"
#include "map/npc.h"
#include "map/parse.h"