[quote=@Phantomlink959] That is super weird and seems inefficient. [/quote] It makes perfect sense. Take the time in hours, so the code in the Guild might look something like this: [code]if time > 24: print str(round(time/24)) + " days" else: print str(round(time)) + " hours"[/code] (This is only a simple bit of code for demonstration of possible programming logic) This would have the effect of the time displaying "24 hours" if the time is between 23:30 and 24:00 Of course, the programming logic Mahz uses is likely rather different (and a lot more sophisticated), but the effect would be similar.