fixed Wild West not appearing in PTM (last commit fixed other lands)

This commit is contained in:
Zeno Rogue 2018-04-14 09:44:28 +02:00
parent 364605bb1a
commit d8e7c74f70
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ void addMessage(string s, char spamtype = 0);
#define ALPHA (M_PI*2/S7)
#define S7 ginf[geometry].sides
#define S3 ginf[geometry].vertex
#define hyperbolic_37 (S7 > 7 && S3 > 3 && hyperbolic)
#define hyperbolic_37 (S7 == 7 && S3 == 3)
#define hyperbolic_not37 ((S7 > 7 || S3 > 3) && hyperbolic)
#define weirdhyperbolic ((S7 > 7 || S3 > 3 || gp::on) && hyperbolic)
#define stdhyperbolic (S7 == 7 && S3 == 3 && !gp::on)