summaryrefslogtreecommitdiff
path: root/npc/other/Global_Functions.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-08 08:55:02 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-01-08 08:55:02 +0000
commit88f8dc1fac5a5acfff9942a2626ac1174f31c289 (patch)
tree722917160ba7c046d914d96045041d8827718265 /npc/other/Global_Functions.txt
parentc50a6b3ea537a99cbe303361dfa94212817fc120 (diff)
downloadhercules-88f8dc1fac5a5acfff9942a2626ac1174f31c289.tar.gz
hercules-88f8dc1fac5a5acfff9942a2626ac1174f31c289.tar.bz2
hercules-88f8dc1fac5a5acfff9942a2626ac1174f31c289.tar.xz
hercules-88f8dc1fac5a5acfff9942a2626ac1174f31c289.zip
- Removed extra slashes in item_db.txt (bugreport:4686)
- Removed punctuation from Time2Str script function. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14655 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r--npc/other/Global_Functions.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt
index eea78ef5a..b93049e83 100644
--- a/npc/other/Global_Functions.txt
+++ b/npc/other/Global_Functions.txt
@@ -340,9 +340,9 @@ function script Time2Str {
set .@Time$, .@Time$ + .@Minutes + " minute, ";
if( .@Time_Left > 1 || .@Time_Left == 0 )
- set .@Time$, .@Time$ + .@Time_Left + " seconds.";
+ set .@Time$, .@Time$ + .@Time_Left + " seconds";
else if( .@Time_Left == 1 )
- set .@Time$, .@Time$ + .@Time_Left + " second.";
+ set .@Time$, .@Time$ + .@Time_Left + " second";
return .@Time$;
}