mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-25 06:13:45 +01:00
more fix
can't count...
This commit is contained in:
@ -34,7 +34,7 @@ export function findCrime(roughName: string): Crime | null {
|
||||
roughName = roughName.toLowerCase();
|
||||
if (roughName.includes("shoplift")) {
|
||||
return Crimes.Shoplift;
|
||||
} else if ((roughName.includes("rob") && roughName.includes("store")) {
|
||||
} else if (roughName.includes("rob") && roughName.includes("store")) {
|
||||
return Crimes.RobStore;
|
||||
} else if (roughName.includes("mug")) {
|
||||
return Crimes.Mug;
|
||||
|
Reference in New Issue
Block a user