Could Some one tell me how to change the cool down for alignment gain for the Can Praise God action???
Want to change it from once a day to another value....
CREATE DEFINER=`root`@`localhost` TRIGGER `character_alignment_fix` BEFORE UPDATE ON `character` FOR EACH ROW BEGIN
IF (new.LastTimeUsedPraiseYourGodAbility > 0) THEN
set new.LastTimeUsedPraiseYourGodAbility = 0;
END IF;
END;