Skip to content

Commit 887c996

Browse files
committed
Fix tuner typos
1 parent 56adcff commit 887c996

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

dlc_tuner/garage.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TunerGarage = {
66
InteriorId = 285953,
77

88
Ipl = {
9-
Interior = {
9+
Exterior = {
1010
ipl = {
1111
'tr_tuner_shop_burton',
1212
'tr_tuner_shop_mesa',
@@ -17,10 +17,10 @@ TunerGarage = {
1717
},
1818

1919
Load = function()
20-
EnableIpl(TunerGarage.Ipl.Interior.ipl, true)
20+
EnableIpl(TunerGarage.Ipl.Exterior.ipl, true)
2121
end,
2222
Remove = function()
23-
EnableIpl(TunerGarage.Ipl.Interior.ipl, false)
23+
EnableIpl(TunerGarage.Ipl.Exterior.ipl, false)
2424
end,
2525
},
2626
Entities = {
@@ -89,6 +89,6 @@ TunerGarage = {
8989
TunerGarage.Ipl.Load()
9090
TunerGarage.Entities.Load()
9191

92-
RefreshInterior(TunerGarage.interiorId)
92+
RefreshInterior(TunerGarage.InteriorId)
9393
end
9494
}

dlc_tuner/meetup.lua

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
-- Los Santos Car Meet: -2000.0, 1113.211, -25.36243
12
exports('GetTunerMeetupObject', function()
23
return TunerMeetup
34
end)
@@ -6,28 +7,28 @@ TunerMeetup = {
67
InteriorId = 285697,
78

89
Ipl = {
9-
Interior = {
10+
Exterior = {
1011
ipl = {
1112
'tr_tuner_meetup',
1213
'tr_tuner_race_line'
1314
}
1415
},
1516

1617
Load = function()
17-
EnableIpl(TunerMeetup.Ipl.Interior.ipl, true)
18+
EnableIpl(TunerMeetup.Ipl.Exterior.ipl, true)
1819
end,
1920
Remove = function()
20-
EnableIpl(TunerMeetup.Ipl.Interior.ipl, false)
21+
EnableIpl(TunerMeetup.Ipl.Exterior.ipl, false)
2122
end
2223
},
2324
Entities = {
2425
entity_set_meet_crew = true,
2526
entity_set_meet_lights = true,
26-
entity_set_meet_lights_cheap = true,
27+
entity_set_meet_lights_cheap = false,
2728
entity_set_player = true,
2829
entity_set_test_crew = false,
2930
entity_set_test_lights = true,
30-
entity_set_test_lights_cheap = true,
31+
entity_set_test_lights_cheap = false,
3132
entity_set_time_trial = true,
3233

3334
Set = function(name, state)
@@ -59,6 +60,6 @@ TunerMeetup = {
5960
TunerMeetup.Ipl.Load()
6061
TunerMeetup.Entities.Load()
6162

62-
RefreshInterior(TunerMeetup.interiorId)
63+
RefreshInterior(TunerMeetup.InteriorId)
6364
end
6465
}

dlc_tuner/methlab.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ TunerMethLab = {
3636
LoadDefault = function()
3737
TunerMethLab.Entities.Load()
3838

39-
SetInteriorEntitySetColor(TunerMethLab.interiorId, TunerMethLab.Entities.tintable_walls, 3)
40-
RefreshInterior(TunerMethLab.interiorId)
39+
SetInteriorEntitySetColor(TunerMethLab.InteriorId, TunerMethLab.Entities.tintable_walls, 3)
40+
RefreshInterior(TunerMethLab.InteriorId)
4141
end
4242
}

0 commit comments

Comments
 (0)