Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit f447f48

Browse files
committed
Bitwise and
yeah..
1 parent 2e78fe9 commit f447f48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ pub static GMOD_DIR: Lazy<PathBuf> = Lazy::new(|| {
146146
pub static BIN_DIR: Lazy<PathBuf> = Lazy::new(|| {
147147
let gm_dir = &*GMOD_DIR;
148148
match gm_dir.join("bin") {
149-
bin if bin.exists() & bin.join("lua_shared.dll").exists() => bin, // GarrysMod/bin
149+
bin if bin.exists() && bin.join("lua_shared.dll").exists() => bin, // GarrysMod/bin
150150
_ => {
151151
let garrysmod_bin = gm_dir.join("garrysmod").join("bin");
152152
if !garrysmod_bin.exists() {

0 commit comments

Comments
 (0)