fix shovel not being craftable from jungle wood

This commit is contained in:
darkrose 2015-04-03 00:40:57 +10:00
parent 1288521991
commit 7166a79d4b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -19,3 +19,4 @@ CPackSourceConfig.cmake
src/jthread/jthreadconfig.h
cmake_config.h
data/textureshd

View File

@ -474,8 +474,8 @@ void setShovelRecipe(u16 input, u16 result)
setRecipe(r1,result,0);
u16 r2[9] = {
CONTENT_IGNORE, input, CONTENT_IGNORE,
CONTENT_IGNORE, CONTENT_CRAFTITEM_WOOD_PLANK, CONTENT_IGNORE,
CONTENT_IGNORE, CONTENT_CRAFTITEM_WOOD_PLANK, CONTENT_IGNORE
CONTENT_IGNORE, CONTENT_CRAFTITEM_JUNGLE_PLANK, CONTENT_IGNORE,
CONTENT_IGNORE, CONTENT_CRAFTITEM_JUNGLE_PLANK, CONTENT_IGNORE
};
setRecipe(r2,result,0);
}