mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-17 03:05:30 -04:00
Merge branch 'master' of github.com:MightyPirates/OpenComputers into one-three
This commit is contained in:
commit
f36835511a
@ -31,7 +31,7 @@ object GameTimeFormatter {
|
||||
//'G' -> (t => ""),
|
||||
'h' -> (t => format("%b", t)),
|
||||
'H' -> (t => "%02d".format(t.hour)),
|
||||
'I' -> (t => "%02d".format(t.hour % 12 + 1)),
|
||||
'I' -> (t => "%02d".format((t.hour + 11) % 12 + 1)),
|
||||
'j' -> (t => "%03d".format(t.yearDay)),
|
||||
'm' -> (t => "%02d".format(t.month)),
|
||||
'M' -> (t => "%02d".format(t.minute)),
|
||||
|
Loading…
x
Reference in New Issue
Block a user