You are yet another victim of writing
live_room_updated = roomUpdated();
(assigning the result of calling a script) instead of
live_room_updated = roomUpdated;
(assigning the script itself)