From a225ace0d01c7551c29fca6a8819be6c16b2ffd1 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 26 Oct 2020 11:59:27 +0100 Subject: [PATCH] fixed Asonov creation --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index badcd926..768a82a9 100644 --- a/cell.cpp +++ b/cell.cpp @@ -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