6 lines
97 B
Lua
6 lines
97 B
Lua
|
|
spacecannon.can_shoot = function(pos)
|
|
-- only allow shooting in space
|
|
return pos.y > 1000
|
|
end
|