Skip to content

Commit 632fbc5

Browse files
committed
rephrases block() a little because it seemed awkward
1 parent 1513063 commit 632fbc5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

content/language/proc/block.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ name = "EndY" # AUTOGEN STATIC
3434
name = "EndZ" # AUTOGEN STATIC
3535
+++
3636

37-
This proc allows for us to get a list of the turfs within a specified area.
37+
The returned list is inclusive of the Start and End turfs.
3838

3939
```dm
4040
for(var/turf/my_turf in block(1, 1, 1, 10, 10, 10))
4141
my_turf.icon_state = "green"
4242
```
4343

44-
This will change the {{ atom(var="icon_state") }} of every turf, beginning at the turf located at X = 1, Y = 1, Z = 1 and finishing at the turf located at X = 10, Y = 10 and Z = 10, to "green". This list is inclusive of the Start and End turfs.
44+
This will change the {{ atom(var="icon_state") }} of every turf, beginning at the turf located at X = 1, Y = 1, Z = 1 and finishing at the turf located at X = 10, Y = 10 and Z = 10, to "green".

content/objects/datum/proc/read.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ type = "/savefile" # AUTOGEN FIELD
99
This is called when a {{ datum() }} is read from a {{ savefile() }}. The {{ savefile() }} being read from is passed as the first argument. The return value is ignored.
1010

1111
Example:
12+
1213
```dm
1314
//create a demonstrator datum type
1415
/datum/test

0 commit comments

Comments
 (0)