summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-12 12:45:10 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-12 12:45:10 -0300
commite088bd4ed38da102aead2e66a2866c1a8f3548c4 (patch)
treec9543baca328877814e8867aad0578f685bd02b5 /npc/items
parente1cc0b9e032681c68ecb44c19bcdde7175425b30 (diff)
downloadserverdata-e088bd4ed38da102aead2e66a2866c1a8f3548c4.tar.gz
serverdata-e088bd4ed38da102aead2e66a2866c1a8f3548c4.tar.bz2
serverdata-e088bd4ed38da102aead2e66a2866c1a8f3548c4.tar.xz
serverdata-e088bd4ed38da102aead2e66a2866c1a8f3548c4.zip
Remove now useless/deprecated ammo checking function
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/launcher_ammo.txt19
1 files changed, 0 insertions, 19 deletions
diff --git a/npc/items/launcher_ammo.txt b/npc/items/launcher_ammo.txt
deleted file mode 100644
index 4c84e950..00000000
--- a/npc/items/launcher_ammo.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-function script CheckLauncher {
- if (getequipid(equip_arrow) == -1)
- @LauncherType = 0;
- return;
-}
-
-function script CheckAmmo {
- if ((@LauncherType == @AmmoType) || (!@LauncherType))
- goto L_Return;
-
- callfunc "UnequipLater";
- goto L_Return;
-
-L_Return:
- @LauncherType = 0;
- @AmmoType = 0;
- return;
-}