1
0
mirror of https://github.com/kepler155c/opus synced 2024-11-15 05:04:50 +00:00
opus/sys/apis/sound.lua
2018-11-29 15:12:25 -05:00

13 lines
223 B
Lua

local peripheral = _G.peripheral
local Sound = { }
function Sound.play(sound, vol)
local speaker = peripheral.find('speaker')
if speaker then
speaker.playSound('minecraft:' .. sound, vol or 1)
end
end
return Sound