Change default variant from 'normal' to ''

This commit is contained in:
ice_iix 2018-12-24 16:52:14 -08:00
parent 60e8b98c18
commit 60705a4125
2 changed files with 3 additions and 2 deletions

View File

@ -177,7 +177,8 @@ macro_rules! define_blocks {
$($fname,)*
} => {
$(return String::from($variant);)*
"normal".to_owned()
//"normal".to_owned()
"".to_owned()
}
)+
}

View File

@ -1,5 +1,5 @@
{
"variants": {
"normal": { "model": "missing_block" }
"": { "model": "missing_block" }
}
}