ID:143653
 
Code:
Top {icon_state="cliff7"} density=1


Problem description: Why won't the density become 1? I can still walk over the cliff.

Give a bit more code than this, for instance where is this code situated?
In response to Farkas (#1)
Well, I have this in...
turf
Landscape
icon='Turf.dmi'
name=""
Cliff_Parts
Top {icon_state="cliff7"} density=1
In response to DarkD3vil666 (#2)
You need to add a space. It should look like this.

<dm>
turf
Landscape
icon='Turf.dmi'
name=""
Cliff_Parts
Top {icon_state="cliff7"}
density=1

In response to Yodamaster (#3)
I suggest you read the DM Guide to learn a little about indentation, since those curly brackets you're using aren't necessary in DM.
turf
Landscape
icon='Turf.dmi'
name=""
Cliff_Parts
Top
icon_state="cliff7"
density=1


It should look something like that.

-TKL
In response to Kangchao (#4)
Kangchao wrote:
I suggest you read the DM Guide to learn a little about indentation, since those curly brackets you're using aren't necessary in DM.
> turf
> Landscape
> icon='Turf.dmi'
> name=""
> Cliff_Parts
> Top
> icon_state="cliff7"
> density=1
>


It should look something like that.

-TKL

But they can be used.

turf
Landscape
icon = 'Turf.dmi'
name = ""
Cliff_Parts
Top {icon_state="cliff7";density = 1}
In response to LucifersHellion (#5)
Yes, they can, I didn't say they couldn't, I said it was unnecessary :P

-TKL
Top {icon_state="cliff7";density=1;}