allows to put non-square blocks next to yourself

This commit is contained in:
Sergwest
2024-03-19 20:34:49 +03:00
parent 3d4bfeb442
commit 9b0cc01e68
3 changed files with 23 additions and 1 deletions
+1 -1
View File
@@ -415,7 +415,7 @@ void PlayerController::updateInteraction(){
vox = chunks->get(x, y, z);
blockid_t chosenBlock = def->rt.id;
if (vox && (target = indices->getBlockDef(vox->id))->replaceable) {
if (!level->physics->isBlockInside(x,y,z, player->hitbox.get())
if (!level->physics->isBlockInside(x,y,z,def,states, player->hitbox.get())
|| !def->obstacle){
if (def->grounded && !chunks->isSolidBlock(x, y-1, z)) {
chosenBlock = 0;