This commit is contained in:
Lamp 2021-05-07 18:54:22 -07:00 committed by GitHub
parent 8c8c1bd3a9
commit c07e6578f5

@ -125,7 +125,7 @@ function qloq(hours, minutes) {
}
function date2jp(d) {
return (d.getHours() >= 12 ? "午後" : "午前") + hours[d.getHours()%12] + minutes[d.getMinutes()] + "だよ";
return "今は" + (d.getHours() >= 12 ? "午後" : "午前") + hours[d.getHours()%12] + minutes[d.getMinutes()] + "だよ";
}
function setStatus(emoji_name, text) {