fix borrow errors using dbg!
This commit is contained in:
parent
7a6af25bc2
commit
f2cb7ab9c7
1 changed files with 3 additions and 3 deletions
|
@ -156,7 +156,7 @@ fn cook() -> Result<(), Errorfr> {
|
|||
|
||||
}
|
||||
if debug_mode {
|
||||
dbg!(powdervec);
|
||||
dbg!(&powdervec);
|
||||
}
|
||||
|
||||
// old powder data encode kinda, takes data from new encode
|
||||
|
@ -175,7 +175,7 @@ fn cook() -> Result<(), Errorfr> {
|
|||
dbg!(rerollcount);
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
None => pass(),
|
||||
};
|
||||
|
||||
|
@ -189,7 +189,7 @@ fn cook() -> Result<(), Errorfr> {
|
|||
if i.key == shiny.key {
|
||||
realshinykey = i.id;
|
||||
if debug_mode {
|
||||
dbg!(shiny.key);
|
||||
dbg!(&shiny.key);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue