Add spawnbox parameter that overrides collision box for spawn volume checks

This commit is contained in:
teknomunk 2024-06-17 20:27:55 -05:00
parent b6aafedf25
commit d8d39ffd52

View File

@ -531,7 +531,7 @@ local function get_water_spawn(p)
end end
local function has_room(self,pos) local function has_room(self,pos)
local cb = self.collisionbox local cb = self.spawnbox or self.collisionbox
local nodes = {} local nodes = {}
if self.fly_in then if self.fly_in then
local t = type(self.fly_in) local t = type(self.fly_in)