fixed Asonov creation

This commit is contained in:
Zeno Rogue 2020-10-26 11:59:27 +01:00
parent 8ce684d628
commit a225ace0d0
1 changed files with 1 additions and 1 deletions

View File

@ -295,10 +295,10 @@ EX void initcells() {
hrmap* res = callhandlers((hrmap*)nullptr, hooks_newmap);
if(res) currentmap = res;
else if(asonov::in()) currentmap = asonov::new_map();
else if(nonisotropic || hybri) currentmap = nisot::new_map();
else if(INVERSE) currentmap = gp::new_inverse();
else if(fake::in()) currentmap = fake::new_map();
else if(asonov::in()) currentmap = asonov::new_map();
#if CAP_CRYSTAL
else if(cryst) currentmap = crystal::new_map();
#endif