The entities light_mine1 and light_mine2 do not emit light.
The problem I think is line 2336 of blarghrad. cpp.
if (!strcmp(name, "light")) {
It should be something like
if (!strcmp(name, "light") || !strcmp(name, "light_mine1") || !strcmp(name, "light_mine2")) {
The entities light_mine1 and light_mine2 do not emit light.
The problem I think is line 2336 of blarghrad. cpp.
if (!strcmp(name, "light")) {It should be something like
if (!strcmp(name, "light") || !strcmp(name, "light_mine1") || !strcmp(name, "light_mine2")) {