projects
/
oweals
/
minetest.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1298fe
)
Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE
author
Perttu Ahola
<celeron55@gmail.com>
Wed, 16 Nov 2011 14:52:36 +0000
(16:52 +0200)
committer
Perttu Ahola
<celeron55@gmail.com>
Tue, 29 Nov 2011 17:13:47 +0000
(19:13 +0200)
src/mapgen.cpp
patch
|
blob
|
history
diff --git
a/src/mapgen.cpp
b/src/mapgen.cpp
index 5e7349a3bc397142a2e4ff5afa2f30ff6a38aae0..8b2b1aa23ba9abb9e4c221ca8742c0d3ea8c35dc 100644
(file)
--- a/
src/mapgen.cpp
+++ b/
src/mapgen.cpp
@@
-2222,7
+2222,7
@@
void make_block(BlockMakeData *data)
vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_MUD");
p.Y++;*/
if(vmanip.m_area.contains(p))
- vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_JUNGLEG
N
RASS");
+ vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_JUNGLEGRASS");
}
}