Fix missing return value in Block_WriteFullBright (thanks Unk)

This commit is contained in:
Goodlyay 2024-05-14 01:31:09 -07:00
parent e82fb20943
commit c93a3c56c2

View file

@ -572,6 +572,7 @@ cc_uint8 Block_WriteFullBright(cc_uint8 brightness) {
} else {
return 0;
}
return fullBright;
}
/*########################################################################################################################*