Page 1 of 1

Bug in getCurrentRoom() [ MainLib.py ]

Posted: 08 Nov 2007, 01:37
by bacuri

File:
MainLib.py
Location: getCurrentRoom() method definition.

Where it reads:

Code: Select all

res = zone.getRoomByName(rm)
... it should read:

Code: Select all

room = zone.getRoomByName(rm)
The way it is right now, the method will always return 'None'.

Posted: 08 Nov 2007, 06:49
by Lapo
Thanks for reporting