diff options
Diffstat (limited to 'npc/items/shovel.txt')
-rw-r--r-- | npc/items/shovel.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index ab794ebae..019d7498d 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -262,7 +262,7 @@ function PlayerIsTired { if (is_gm()) return 0; - .@tick = gettimetick(1); + .@tick = gettimetick(2); .@playertick = .PlayerTiredTime - (readparam(bStr)/5) - (readparam(bVit)/10); // Dig and Bury more with Steel Shovel @@ -271,8 +271,8 @@ function PlayerIsTired { } if (@ShovelLastUsed + max(5, .@playertick) > .@tick) { - .@time$=FuzzyTime(.@tick-(@ShovelLastUsed + max(5, .@playertick))); - dispbottom lg("You are exhausted, you should rest "+.@time$); + .@time$=FuzzyTime(@ShovelLastUsed + max(5, .@playertick)); + dispbottom lg("You are exhausted, you should rest @@.", "You are exhausted, you should rest @@.", .@time$); return 1; } @ShovelLastUsed = .@tick; |