summaryrefslogtreecommitdiff
path: root/npc/functions/beds.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/beds.txt')
-rw-r--r--npc/functions/beds.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/npc/functions/beds.txt b/npc/functions/beds.txt
deleted file mode 100644
index a4301891..00000000
--- a/npc/functions/beds.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-// Evol functions.
-// Authors:
-// 4144
-// Reid
-// Jesusalva
-// Description:
-// Beds utility functions
-
-// bedTouch({inn})
-function script bedTouch {
- if (PC_IS_DEAD)
- {
- PC_IS_DEAD = 0;
- if (INN_REGISTER != NO_INN)
- {
- INN_REGISTER = NO_INN;
- percentheal 100,100;
- }
- }
- close;
-}
-