fix borrow errors using dbg!

This commit is contained in:
endernon 2024-11-06 17:23:44 +00:00
parent 7a6af25bc2
commit f2cb7ab9c7

View file

@ -156,7 +156,7 @@ fn cook() -> Result<(), Errorfr> {
} }
if debug_mode { if debug_mode {
dbg!(powdervec); dbg!(&powdervec);
} }
// old powder data encode kinda, takes data from new encode // old powder data encode kinda, takes data from new encode
@ -175,7 +175,7 @@ fn cook() -> Result<(), Errorfr> {
dbg!(rerollcount); dbg!(rerollcount);
}; };
}; };
}; }
None => pass(), None => pass(),
}; };
@ -189,7 +189,7 @@ fn cook() -> Result<(), Errorfr> {
if i.key == shiny.key { if i.key == shiny.key {
realshinykey = i.id; realshinykey = i.id;
if debug_mode { if debug_mode {
dbg!(shiny.key); dbg!(&shiny.key);
} }
} }
} }