1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-26 15:13:20 +00:00
opus/sys/apis/sound.lua

13 lines
226 B
Lua
Raw Normal View History

2018-11-27 01:53:28 +00:00
local peripheral = _G.peripheral
local speaker = peripheral.find('speaker')
local Sound = { }
function Sound.play(sound, vol)
if speaker then
speaker.playSound('minecraft:' .. sound, vol or 1)
end
end
return Sound