zinoubm commited on
Commit
b6b2a1b
·
1 Parent(s): 1a81701

fixing paths in assets

Browse files
Files changed (1) hide show
  1. commands.py +6 -6
commands.py CHANGED
@@ -1,18 +1,18 @@
1
  class ResponseManager:
2
  def activate_heated_seats(self):
3
- return "assets\command_responses\heated_activated.wav"
4
 
5
  def deactivate_heated_seats(self):
6
- return "assets\command_responses\heated_deactivated.wav"
7
 
8
  def activate_cooled_seats(self):
9
- return "assets\command_responses\cooled_activated.wav"
10
 
11
  def deactivate_cooled_seats(self):
12
- return "assets\command_responses\cooled_deactivated.wav"
13
 
14
  def activate_massage_seats(self):
15
- return "assets\command_responses\massage_activated.wav"
16
 
17
  def deactivate_massage_seats(self):
18
- return "assets\command_responses\massage_deactivated.wav"
 
1
  class ResponseManager:
2
  def activate_heated_seats(self):
3
+ return ".\assets\command_responses\heated_activated.wav"
4
 
5
  def deactivate_heated_seats(self):
6
+ return ".\assets\command_responses\heated_deactivated.wav"
7
 
8
  def activate_cooled_seats(self):
9
+ return ".\assets\command_responses\cooled_activated.wav"
10
 
11
  def deactivate_cooled_seats(self):
12
+ return ".\assets\command_responses\cooled_deactivated.wav"
13
 
14
  def activate_massage_seats(self):
15
+ return ".\assets\command_responses\massage_activated.wav"
16
 
17
  def deactivate_massage_seats(self):
18
+ return ".\assets\command_responses\massage_deactivated.wav"