460 if (devtype == 4): |
460 if (devtype == 4): |
461 # pitlane sent something |
461 # pitlane sent something |
462 if (status == 5): |
462 if (status == 5): |
463 self.slot[slot]["status"] = "PITLANE" |
463 self.slot[slot]["status"] = "PITLANE" |
464 trigger_sound("pitlane_enter") |
464 trigger_sound("pitlane_enter") |
465 if (status == 6): |
465 if (status == 7): |
466 self.slot[slot]["status"] = "IN-RACE" |
466 self.slot[slot]["status"] = "IN-RACE" |
467 trigger_sound("pitlane_exit") |
467 trigger_sound("pitlane_exit") |
468 |
468 |
469 self.render_slots() |
469 self.render_slots() |
470 |
470 |