Skip to content

Commit 7f14b6d

Browse files
authored
Fix lanterns with white color not being lit (#2233)
1 parent 62256b8 commit 7f14b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/object/lantern.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Lantern::Lantern(const ReaderMapping& reader) :
3636
lightcolor = Color(vColor);
3737
} else {
3838
if (!Editor::is_active()) {
39-
lightcolor = Color(0, 0, 0);
39+
lightcolor = Color(1, 1, 1);
4040
}
4141
}
4242
lightsprite->set_blend(Blend::ADD);

0 commit comments

Comments
 (0)