morse-simulator / morse

The Modular OpenRobots Simulation Engine
http://morse-simulator.github.io/
Other
350 stars 155 forks source link

Blender Version check reults in Index Error #824

Closed Crazy-Ginger closed 4 years ago

Crazy-Ginger commented 4 years ago

Running: morse run [simulation] results in a IndexError

Morse version was built in arch linux from https://aur.archlinux.org/packages/morse-simulator-git using yay

The issue is in: /bin/morse.in line 93

version = line.split()[1] + '.' + line.split()[3][:-1]

line.split() is only 2 elements thus causing an IndexError


cplaursen commented 4 years ago

From #822

The Blender game engine has been removed from Blender 2.8x, and MORSE can not run without it. The last version of Blender that should work is 2.79.

Crazy-Ginger commented 4 years ago

Thank you