On line 425 of the main_werewolf.rpy file it currently reads:
if quest41.status == 2 and quest41.start_date > timenow.day and 7 < timenow.hour < 11:
shouldn't it be:
if quest41.status == 2 and quest41.start_date < timenow.day and 7 < timenow.hour < 11:
(Only change is the direction of the first '>')
quest41.start_date shouldn't be greater than timenow.day, which is currently required to progress the Wuldon Raid storyline.