Fix SpawnItemsOnUse not playing sound (#27621)
Made SpamItemsOnUse play sound at entity coordinates instead of parenting
This commit is contained in:
@@ -82,7 +82,9 @@ namespace Content.Server.Storage.EntitySystems
|
|||||||
|
|
||||||
if (component.Sound != null)
|
if (component.Sound != null)
|
||||||
{
|
{
|
||||||
_audio.PlayPvs(component.Sound, uid);
|
// The entity is often deleted, so play the sound at its position rather than parenting
|
||||||
|
var coordinates = Transform(uid).Coordinates;
|
||||||
|
_audio.PlayPvs(component.Sound, coordinates);
|
||||||
}
|
}
|
||||||
|
|
||||||
component.Uses--;
|
component.Uses--;
|
||||||
|
|||||||
Reference in New Issue
Block a user