-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(style): indentation and whitespace
- Loading branch information
Showing
11 changed files
with
703 additions
and
703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -555,7 +555,7 @@ else | |
end | ||
|
||
if returnSoundId then | ||
return soundId | ||
return soundId | ||
end | ||
|
||
ReleaseSoundId(soundId) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,126 +1,126 @@ | ||
---Gang names must be lower case (top level table key) | ||
---@type table<string, Gang> | ||
return { | ||
['none'] = { | ||
label = 'No Gang', | ||
grades = { | ||
['none'] = { | ||
label = 'No Gang', | ||
grades = { | ||
[0] = { | ||
name = 'Unaffiliated' | ||
}, | ||
}, | ||
}, | ||
['lostmc'] = { | ||
label = 'The Lost MC', | ||
grades = { | ||
}, | ||
['lostmc'] = { | ||
label = 'The Lost MC', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
}, | ||
['ballas'] = { | ||
label = 'Ballas', | ||
grades = { | ||
}, | ||
['ballas'] = { | ||
label = 'Ballas', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
}, | ||
['vagos'] = { | ||
label = 'Vagos', | ||
grades = { | ||
}, | ||
['vagos'] = { | ||
label = 'Vagos', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
}, | ||
['cartel'] = { | ||
label = 'Cartel', | ||
grades = { | ||
}, | ||
['cartel'] = { | ||
label = 'Cartel', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
}, | ||
['families'] = { | ||
label = 'Families', | ||
grades = { | ||
}, | ||
['families'] = { | ||
label = 'Families', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
}, | ||
['triads'] = { | ||
label = 'Triads', | ||
grades = { | ||
}, | ||
['triads'] = { | ||
label = 'Triads', | ||
grades = { | ||
[0] = { | ||
name = 'Recruit' | ||
}, | ||
[1] = { | ||
[1] = { | ||
name = 'Enforcer' | ||
}, | ||
[2] = { | ||
[2] = { | ||
name = 'Shot Caller' | ||
}, | ||
[3] = { | ||
[3] = { | ||
name = 'Boss', | ||
isboss = true, | ||
bankAuth = true | ||
}, | ||
}, | ||
} | ||
} | ||
} |
Oops, something went wrong.