remove extra spaces.

This commit is contained in:
eswordthecat
2015-03-23 04:05:38 +08:00
parent e22c5287e9
commit 9c9ec79f28

View File

@@ -5,7 +5,7 @@
//Returns the world time in english
proc/worldtime2text(timestamp = world.time)
return "[round(timestamp / 36000) + 12] : [(timestamp / 600 % 60) < 10 ? add_zero(timestamp / 600 % 60, 1) : timestamp / 600 % 60]"
return "[round(timestamp / 36000) + 12]:[(timestamp / 600 % 60) < 10 ? add_zero(timestamp / 600 % 60, 1) : timestamp / 600 % 60]"
proc/time_stamp()
return time2text(world.timeofday, "hh:mm:ss")