Some improvements on the holiday system (#32329)

This commit is contained in:
tortellinitony
2017-11-04 00:36:49 -04:00
committed by CitadelStationBot
parent 910e6b6396
commit 3772d722e2
2 changed files with 2 additions and 2 deletions

View File

@@ -177,7 +177,7 @@ SUBSYSTEM_DEF(events)
var/YY = text2num(time2text(world.timeofday, "YY")) // get the current year
var/MM = text2num(time2text(world.timeofday, "MM")) // get the current month
var/DD = text2num(time2text(world.timeofday, "DD")) // get the current day
var/DDD = text2num(time2text(world.timeofday, "DDD")) // get the current weekday
var/DDD = time2text(world.timeofday, "DDD") // get the current weekday
var/W = weekdayofthemonth() // is this the first monday? second? etc.
for(var/H in subtypesof(/datum/holiday))