diff options
Diffstat (limited to 'npc/items/shovel.txt')
-rw-r--r-- | npc/items/shovel.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index 019d7498d..28c9b87e0 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -258,9 +258,14 @@ function AddDigRect { } function PlayerIsTired { + /* // GMs can do this in an unrestricted way if (is_gm()) return 0; + */ + // I changed the rule to: No restriction on Aeros! (GM or not) (May be laggy) + if (getmap() == "001-1") + return 0; .@tick = gettimetick(2); .@playertick = .PlayerTiredTime - (readparam(bStr)/5) - (readparam(bVit)/10); |