Skip to content

Commit 777d087

Browse files
committed
Fix list formatting
1 parent b2aa355 commit 777d087

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/main/java/com/laytonsmith/core/functions/EntityManagement.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5000,32 +5000,32 @@ public String docs() {
50005000
+ " 'viewrange', 'shadowradius', 'shadowstrength', 'teleportduration', and 'transformation'. ---- "
50015001
+ " The following values are common to all display entity types. Data about specific display entity"
50025002
+ " types (block, text, and item display entities) can be found in {{function|entity_spec}}.\n\n"
5003-
+ " * '''billboard''' (string) : Controls which axes the rendered entity rotates around the entity"
5003+
+ "* '''billboard''' (string) : Controls which axes the rendered entity rotates around the entity"
50045004
+ " location when the viewing player's position or facing changes. FIXED (default) will not rotate."
50055005
+ " HORIZONTAL or VERTICAL rotate on their respective axes. CENTER rotates on both axes.\n"
5006-
+ " * '''brightness''' (array) : Controls the brightness when rendering the display entity."
5006+
+ "* '''brightness''' (array) : Controls the brightness when rendering the display entity."
50075007
+ " A null value (default) will render the entity based on the environment."
50085008
+ " An array with int values for the keys '''\"block\"''' and '''\"sky\"''' simulate the rendering"
50095009
+ " brightness from those respective light sources. Each must be from 0 - 15."
50105010
+ " Optionally a single int can be provided and will be used for both sky and block sources.\n"
5011-
+ " * '''glowcolor''' (array) : An RGB array for the entity glow color. If null (default), the"
5011+
+ "* '''glowcolor''' (array) : An RGB array for the entity glow color. If null (default), the"
50125012
+ " entity will use its scoreboard team color, if it has one.\n"
5013-
+ " * '''height''' (double) : The maximum height of the entity's bounding box. (default: 0.0)"
5013+
+ "* '''height''' (double) : The maximum height of the entity's bounding box. (default: 0.0)"
50145014
+ " Spans vertically from the entity's y location to (y+height), and is used for culling."
50155015
+ " If the client's field of view does not include this box, the entity will not be rendered."
50165016
+ " If either width or height is 0.0, culling is disabled.\n"
5017-
+ " * '''width''' (double) : The maximum width of the entity's bounding box. (default: 0.0)"
5017+
+ "* '''width''' (double) : The maximum width of the entity's bounding box. (default: 0.0)"
50185018
+ " Spans horizontally (width/2) from entity location.\n"
5019-
+ " * '''viewrange''' (double) : The relative distance the entity will be viewable."
5019+
+ "* '''viewrange''' (double) : The relative distance the entity will be viewable."
50205020
+ " The default is 1.0, which is 64 meters multiplied by the player's entity distance scaling."
50215021
+ " This can also be limited by the world's entity-tracking-range for display entities.\n"
5022-
+ " * '''shadowradius''' (double) : The visible radius in meters of the entity's shadow."
5022+
+ "* '''shadowradius''' (double) : The visible radius in meters of the entity's shadow."
50235023
+ " Effective range is from 0.0 (default) to 64.0.\n"
5024-
+ " * '''shadowstrength''' (double) : The opacity of the entity's shadow as a function of distance"
5024+
+ "* '''shadowstrength''' (double) : The opacity of the entity's shadow as a function of distance"
50255025
+ " to a block below the entity within shadowradius. (default: 1.0)\n"
5026-
+ " * '''teleportduration''' (int) : The duration in ticks a teleport is interpolated on the client."
5026+
+ "* '''teleportduration''' (int) : The duration in ticks a teleport is interpolated on the client."
50275027
+ " Range is strictly from 0 - 59. (default: 0) (MC 1.20.2+)\n"
5028-
+ " * '''transformation''' (array) : An associative array that includes 4 values, leftRotation,"
5028+
+ "* '''transformation''' (array) : An associative array that includes 4 values, leftRotation,"
50295029
+ " rightRotation, scale, and translation. Both leftRotation and rightRotation have x, y, z, and w"
50305030
+ " values, and scale and translation have x, y, and z values. For leftRotation and rightRotation,"
50315031
+ " these are full width 64 bit doubles, but scale and translation are only 32 bit floats."

0 commit comments

Comments
 (0)