League-of-Foundry-Developers / fvtt-module-theatre

GNU General Public License v3.0
30 stars 39 forks source link

V11: Wrong check in configureTheatreToolTip #129

Closed farling42 closed 1 year ago

farling42 commented 1 year ago

In Theatre.js, at line 1936, there is a test

if (texture) {

which should be a test for undefined

if (!texture) {
megahead11 commented 1 year ago

Do you know if this is currently tied to any of the open issues at the moment?

farling42 commented 1 year ago

Yes, it fixes #125

megahead11 commented 1 year ago

Confirmed fixed. Will go and fix that line.