Skip to content

Commit 36d024a

Browse files
jhcoleSmallJoker
authored andcommittedJun 22, 2017
Allow mossy cobble slabs to combine (#1791)
1 parent 120e969 commit 36d024a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎mods/stairs/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ stairs.register_stair_and_slab(
349349

350350
stairs.register_stair_and_slab(
351351
"mossycobble",
352-
nil,
352+
"default:mossycobble",
353353
{cracky = 3},
354354
{"default_mossycobble.png"},
355355
"Mossy Cobblestone Stair",

4 commit comments

Comments
 (4)

paramat commented on Jun 23, 2017

@paramat
Contributor

That was nil for a reason 2199be5 #1118 #1120

SmallJoker commented on Jun 23, 2017

@SmallJoker
Member

@paramat This PR is just an extension for PR 1120, as the players seem to want to craft them. There's nothing wrong with crafting mossy stairs or slabs from entire nodes and backwards.

paramat commented on Jun 23, 2017

@paramat
Contributor

I agree.
Should we remove the code which copes with 'nil' too?

SmallJoker commented on Jun 24, 2017

@SmallJoker
Member

I guess that one can be left this way, if a modder really wants to add such special stairs or slabs (they'll always find an use for it).

Please sign in to comment.