Fix for Dev not building

It's the little things, like a missing "(", that make programmers happy all day long... >.<
This commit is contained in:
zeddrak 2022-01-28 09:54:35 -08:00 committed by GitHub
parent 47c2f9762c
commit dc8b051bde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,7 @@ export function findCrime(roughName: string): Crime | null {
return Crimes.Larceny;
} else if (roughName.includes("drugs")) {
return Crimes.DealDrugs;
} else if (roughName.includes("bond") && roughName.includes("forge")) {
} else if ((roughName.includes("bond") && roughName.includes("forge")) {
return Crimes.BondForgery;
} else if ((roughName.includes("traffic") || (roughName.includes("illegal")) && roughName.includes("arms")) {
return Crimes.TraffickArms;