Fixed block placement errors

This commit is contained in:
CobaltXII
2019-01-04 17:40:55 -05:00
parent 1e2fbbc744
commit d8db54a445

View File

@@ -742,7 +742,7 @@ int main(int argc, char** argv)
// Can't place blocks inside other blocks.
if (the_world->get_id_safe(px, py, pz) != id_air)
if (is_not_permeable_ray(the_world->get_id_safe(px, py, pz)))
{
break;
}