BronzeDodger
March 6th, 2022, 06:43
Messing around with the Light cantrip. I was adding a couple of light effects on the PC sheet (alongside the default save for attempting to anchor the light on a creature).
Using hex codes to make novel colors (FFAA00 looks very flicker-y/soft light if you're experimenting...) when I realized that the duration was not being tracked on the combat tracker. When I poked around to other spells and tried them they all worked (showed the [D:X] in the effect on the CT).
Since I could not remember running into this ever in-game I got the idea to mess with the duration math. Lo and behold found a pattern:
Light cantrip has a 1 hour duration so:
Duration set as: 600 RND - works
Duration set as: 60 MIN - works
Duration set as: 1 HR - does not work
I went hunting and found that Charm Person is also a 1 hr duration - and when I added that to the PC sheet, set a target, and applied the effect, it did the same thing (as it was coded as "1 HR"). Changing it to 60 MIN again fixed it. Changing it to 8 HR has the same issue. Perchance is the "HR" entry no longer triggering a calc that adds itself to the CT? Or just me?
Using hex codes to make novel colors (FFAA00 looks very flicker-y/soft light if you're experimenting...) when I realized that the duration was not being tracked on the combat tracker. When I poked around to other spells and tried them they all worked (showed the [D:X] in the effect on the CT).
Since I could not remember running into this ever in-game I got the idea to mess with the duration math. Lo and behold found a pattern:
Light cantrip has a 1 hour duration so:
Duration set as: 600 RND - works
Duration set as: 60 MIN - works
Duration set as: 1 HR - does not work
I went hunting and found that Charm Person is also a 1 hr duration - and when I added that to the PC sheet, set a target, and applied the effect, it did the same thing (as it was coded as "1 HR"). Changing it to 60 MIN again fixed it. Changing it to 8 HR has the same issue. Perchance is the "HR" entry no longer triggering a calc that adds itself to the CT? Or just me?