i probably brained it

This commit is contained in:
abbie 2022-01-29 10:38:04 +00:00
parent 2d9b4ecaf3
commit 20dd51cee4
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87

View file

@ -27,11 +27,10 @@ fn load_macro(set: String, mac: String, inputs: String, vars: Vec<String>) -> St
let mut keg: String = "".to_owned(); let mut keg: String = "".to_owned();
let mut coont = 0; let mut coont = 0;
for input in based { for input in based {
println!("{}", inputs);
let x; let x;
if contents.contains(")!!") { if inputs.contains(")!!") {
x = format!("{}![[hex]]", input); x = format!("{}![[hex]]", input);
} else if contents.contains(")..") { } else if inputs.contains(")..") {
x = format!("var!{}", input); x = format!("var!{}", input);
} else { } else {
x = input.to_string(); x = input.to_string();