Skip to content

Commit 0287003

Browse files
committed
Make objects more consistent with others
1 parent 8577968 commit 0287003

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

dlc_chopshop/salvage.lua

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ ChopShopSalvage = {
1414
"m23_2_id2_04_reds",
1515
"m23_2_cs1_05_reds",
1616
"m23_2_cs4_11_reds",
17-
}
18-
},
19-
20-
Load = function()
21-
EnableIpl(ChopShopSalvage.Ipl.Exterior.ipl, true)
22-
end,
23-
Remove = function()
24-
EnableIpl(ChopShopSalvage.Ipl.Exterior.ipl, false)
25-
end
17+
},
18+
19+
Load = function()
20+
EnableIpl(ChopShopSalvage.Ipl.Exterior.ipl, true)
21+
end,
22+
Remove = function()
23+
EnableIpl(ChopShopSalvage.Ipl.Exterior.ipl, false)
24+
end
25+
}
2626
},
2727

2828
Style = {
@@ -101,7 +101,7 @@ ChopShopSalvage = {
101101

102102
LoadDefault = function()
103103
-- Exterior
104-
ChopShopSalvage.Ipl.Load()
104+
ChopShopSalvage.Ipl.Exterior.Load()
105105

106106
-- Interior
107107
ChopShopSalvage.Tint.SetColor(ChopShopSalvage.Tint.gray, false)

dlc_drugwars/freakshop.lua

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ DrugWarsFreakshop = {
1111
ipl = {
1212
"xm3_warehouse",
1313
"xm3_warehouse_grnd"
14-
}
15-
},
16-
17-
Load = function()
18-
EnableIpl(DrugWarsFreakshop.Ipl.Exterior.ipl, true)
19-
end,
20-
Remove = function()
21-
EnableIpl(DrugWarsFreakshop.Ipl.Exterior.ipl, false)
22-
end
14+
},
15+
16+
Load = function()
17+
EnableIpl(DrugWarsFreakshop.Ipl.Exterior.ipl, true)
18+
end,
19+
Remove = function()
20+
EnableIpl(DrugWarsFreakshop.Ipl.Exterior.ipl, false)
21+
end
22+
}
2323
},
2424

2525
Door = {
@@ -41,7 +41,7 @@ DrugWarsFreakshop = {
4141

4242
LoadDefault = function()
4343
-- Exterior
44-
DrugWarsFreakshop.Ipl.Load()
44+
DrugWarsFreakshop.Ipl.Exterior.Load()
4545

4646
-- Interior
4747
DrugWarsFreakshop.Door.Set(DrugWarsFreakshop.Door.closed, false)

dlc_drugwars/garage.lua

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ DrugWarsGarage = {
88

99
Ipl = {
1010
Exterior = {
11-
ipl = "xm3_garage_fix"
12-
},
11+
ipl = "xm3_garage_fix",
1312

14-
Load = function()
15-
EnableIpl(DrugWarsGarage.Ipl.Exterior.ipl, true)
16-
end,
17-
Remove = function()
18-
EnableIpl(DrugWarsGarage.Ipl.Exterior.ipl, false)
19-
end
13+
Load = function()
14+
EnableIpl(DrugWarsGarage.Ipl.Exterior.ipl, true)
15+
end,
16+
Remove = function()
17+
EnableIpl(DrugWarsGarage.Ipl.Exterior.ipl, false)
18+
end
19+
}
2020
},
2121

2222
Banner = {
@@ -101,7 +101,7 @@ DrugWarsGarage = {
101101

102102
LoadDefault = function()
103103
-- Exterior
104-
DrugWarsGarage.Ipl.Load()
104+
DrugWarsGarage.Ipl.Exterior.Load()
105105
DrugWarsGarage.Banner.Hide()
106106

107107
-- Interior

0 commit comments

Comments
 (0)