From 7504cdcfbf1d4fffae93041878c5d66d035b019c Mon Sep 17 00:00:00 2001 From: paramat Date: Thu, 8 Oct 2015 05:17:25 +0100 Subject: Mapgen: Use mapgen-specific names for constants in headers Update copyright years in all mapgens Add myself to copyright notices in mgv5 and mgv7 --- src/mapgen_v6.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/mapgen_v6.h') diff --git a/src/mapgen_v6.h b/src/mapgen_v6.h index c71cf3c53..685fdad7e 100644 --- a/src/mapgen_v6.h +++ b/src/mapgen_v6.h @@ -1,6 +1,6 @@ /* Minetest -Copyright (C) 2010-2013 celeron55, Perttu Ahola +Copyright (C) 2010-2015 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -23,13 +23,13 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "mapgen.h" #include "noise.h" -#define AVERAGE_MUD_AMOUNT 4 -#define DESERT_STONE_BASE -32 -#define ICE_BASE 0 -#define FREQ_HOT 0.4 -#define FREQ_SNOW -0.4 -#define FREQ_TAIGA 0.5 -#define FREQ_JUNGLE 0.5 +#define MGV6_AVERAGE_MUD_AMOUNT 4 +#define MGV6_DESERT_STONE_BASE -32 +#define MGV6_ICE_BASE 0 +#define MGV6_FREQ_HOT 0.4 +#define MGV6_FREQ_SNOW -0.4 +#define MGV6_FREQ_TAIGA 0.5 +#define MGV6_FREQ_JUNGLE 0.5 //////////// Mapgen V6 flags #define MGV6_JUNGLES 0x01 -- cgit v1.2.3