From 777d08777b67ecd2704d9af6bab057d15afce97a Mon Sep 17 00:00:00 2001 From: LadyCailin Date: Thu, 8 Feb 2024 10:54:39 +0100 Subject: [PATCH] Fix list formatting --- .../core/functions/EntityManagement.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/laytonsmith/core/functions/EntityManagement.java b/src/main/java/com/laytonsmith/core/functions/EntityManagement.java index 19b3d0a34..2df298a70 100644 --- a/src/main/java/com/laytonsmith/core/functions/EntityManagement.java +++ b/src/main/java/com/laytonsmith/core/functions/EntityManagement.java @@ -5000,32 +5000,32 @@ public String docs() { + " 'viewrange', 'shadowradius', 'shadowstrength', 'teleportduration', and 'transformation'. ---- " + " The following values are common to all display entity types. Data about specific display entity" + " types (block, text, and item display entities) can be found in {{function|entity_spec}}.\n\n" - + " * '''billboard''' (string) : Controls which axes the rendered entity rotates around the entity" + + "* '''billboard''' (string) : Controls which axes the rendered entity rotates around the entity" + " location when the viewing player's position or facing changes. FIXED (default) will not rotate." + " HORIZONTAL or VERTICAL rotate on their respective axes. CENTER rotates on both axes.\n" - + " * '''brightness''' (array) : Controls the brightness when rendering the display entity." + + "* '''brightness''' (array) : Controls the brightness when rendering the display entity." + " A null value (default) will render the entity based on the environment." + " An array with int values for the keys '''\"block\"''' and '''\"sky\"''' simulate the rendering" + " brightness from those respective light sources. Each must be from 0 - 15." + " Optionally a single int can be provided and will be used for both sky and block sources.\n" - + " * '''glowcolor''' (array) : An RGB array for the entity glow color. If null (default), the" + + "* '''glowcolor''' (array) : An RGB array for the entity glow color. If null (default), the" + " entity will use its scoreboard team color, if it has one.\n" - + " * '''height''' (double) : The maximum height of the entity's bounding box. (default: 0.0)" + + "* '''height''' (double) : The maximum height of the entity's bounding box. (default: 0.0)" + " Spans vertically from the entity's y location to (y+height), and is used for culling." + " If the client's field of view does not include this box, the entity will not be rendered." + " If either width or height is 0.0, culling is disabled.\n" - + " * '''width''' (double) : The maximum width of the entity's bounding box. (default: 0.0)" + + "* '''width''' (double) : The maximum width of the entity's bounding box. (default: 0.0)" + " Spans horizontally (width/2) from entity location.\n" - + " * '''viewrange''' (double) : The relative distance the entity will be viewable." + + "* '''viewrange''' (double) : The relative distance the entity will be viewable." + " The default is 1.0, which is 64 meters multiplied by the player's entity distance scaling." + " This can also be limited by the world's entity-tracking-range for display entities.\n" - + " * '''shadowradius''' (double) : The visible radius in meters of the entity's shadow." + + "* '''shadowradius''' (double) : The visible radius in meters of the entity's shadow." + " Effective range is from 0.0 (default) to 64.0.\n" - + " * '''shadowstrength''' (double) : The opacity of the entity's shadow as a function of distance" + + "* '''shadowstrength''' (double) : The opacity of the entity's shadow as a function of distance" + " to a block below the entity within shadowradius. (default: 1.0)\n" - + " * '''teleportduration''' (int) : The duration in ticks a teleport is interpolated on the client." + + "* '''teleportduration''' (int) : The duration in ticks a teleport is interpolated on the client." + " Range is strictly from 0 - 59. (default: 0) (MC 1.20.2+)\n" - + " * '''transformation''' (array) : An associative array that includes 4 values, leftRotation," + + "* '''transformation''' (array) : An associative array that includes 4 values, leftRotation," + " rightRotation, scale, and translation. Both leftRotation and rightRotation have x, y, z, and w" + " values, and scale and translation have x, y, and z values. For leftRotation and rightRotation," + " these are full width 64 bit doubles, but scale and translation are only 32 bit floats."