Closed BuckarooBanzay closed 3 years ago
The drawer that caused this crash was surrounded by vacuum:vacuum
nodes, so getting a drop position from find_node_near
fails, and then dropPos
is incorrectly set to self.pos
, which is also a nil value.
Changing line 377 to this should fix it: (untested)
dropPos = self.object:get_pos()