1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Decoration, Ore: Resolve node names on Mapgen init

This commit is contained in:
kwolekr 2013-06-17 18:51:29 -04:00
parent 56093b6614
commit 0b20768a24
2 changed files with 5 additions and 5 deletions

View file

@ -109,8 +109,6 @@ void Ore::placeOre(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) {
if (!in_range)
return;
resolveNodeNames(mg->ndef);
int ymin, ymax;
if (in_range & ORE_RANGE_MIRROR) {
ymin = MYMAX(nmin.Y, -height_max);
@ -226,8 +224,6 @@ void Decoration::resolveNodeNames(INodeDefManager *ndef) {
void Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) {
resolveNodeNames(mg->ndef);
PseudoRandom ps(blockseed + 53);
int carea_size = nmax.X - nmin.X + 1;