Skip to content

Commit

Permalink
Merge pull request #612 from ab9rf/ramp_top_shall_not_pass
Browse files Browse the repository at this point in the history
change `tiletype_shape::RAMP_TOP` `walkable` attr to false
  • Loading branch information
myk002 authored Jun 26, 2023
2 parents b289211 + 646bbe0 commit 1809e3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ that repo.
# Future

## Structures
- ``tiletype_shape``: changed RAMP_TOP and ENDLESS_PIT to not walkable to reflect how scripts actually need these types to be treated

# 50.08-r4

Expand Down
4 changes: 1 addition & 3 deletions df.tile-types.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<enum-attr name='passable_high' type-name='bool' default-value='false' comment='tile is missing a roof'/>
<enum-attr name='passable_flow' type-name='bool' default-value='false' comment='tile is non-solid'/>
<enum-attr name='passable_flow_down' type-name='bool' default-value='false' comment='floor is non-solid'/>
<enum-attr name='walkable' type-name='bool' default-value='false' comment='can be walked into'/>
<enum-attr name='walkable' type-name='bool' default-value='false' comment='can be stood upon'/>
<enum-attr name='walkable_up' type-name='bool' default-value='false' comment='can walk to ceiling'/>

<enum-item name='NONE' value='-1'/>
Expand Down Expand Up @@ -90,7 +90,6 @@
<item-attr name='passable_high' value='true'/>
<item-attr name='passable_flow' value='true'/>
<item-attr name='passable_flow_down' value='true'/>
<item-attr name='walkable' value='true'/>
</enum-item>
<enum-item name='BROOK_BED'>
<item-attr name='caption' value='mineable, water-passable rock on the bottom of a brook'/>
Expand Down Expand Up @@ -147,7 +146,6 @@
<item-attr name='basic_shape' value='Open'/>
<item-attr name='passable_high' value='true'/>
<item-attr name='passable_flow' value='true'/>
<item-attr name='walkable' value='true'/>
</enum-item>
</enum-type>

Expand Down

0 comments on commit 1809e3d

Please sign in to comment.