mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Play place_failed sound if occupied or cannot attach (#9486)
This commit is contained in:
parent
808fa5ecb3
commit
ae83edd165
2 changed files with 7 additions and 2 deletions
|
@ -3379,6 +3379,7 @@ bool Game::nodePlacement(const ItemDefinition &selected_def,
|
|||
} else {
|
||||
node = map.getNode(p, &is_valid_position);
|
||||
if (is_valid_position && !nodedef->get(node).buildable_to) {
|
||||
soundmaker->m_player_rightpunch_sound = selected_def.sound_place_failed;
|
||||
// Report to server
|
||||
client->interact(INTERACT_PLACE, pointed);
|
||||
return false;
|
||||
|
@ -3451,6 +3452,7 @@ bool Game::nodePlacement(const ItemDefinition &selected_def,
|
|||
pp = p + v3s16(0, -1, 0);
|
||||
|
||||
if (!nodedef->get(map.getNode(pp)).walkable) {
|
||||
soundmaker->m_player_rightpunch_sound = selected_def.sound_place_failed;
|
||||
// Report to server
|
||||
client->interact(INTERACT_PLACE, pointed);
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue