blob: b686f373e83ccc7b8d819ac1dec78c5dbb7c12ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local yard_id = "BY"
local subs = {
['S27'] = POS(-1512,8,-2613),
}
if event.ext_int or event.punch then
for fc, pos in pairs(subs) do
if S.yards[yard_id].notify[fc] then
interrupt_pos(pos,"notify")
end
end
S.yards[yard_id].notify = {}
end
|