Update CrimeHelpers.ts

This commit is contained in:
hydroflame
2022-01-27 20:51:48 -05:00
committed by GitHub
parent 09da6ac63f
commit a4b8a9ffd5

View File

@@ -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("forg")) {
} 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;