diff --git a/area.html b/area.html index c7255920b65a..df506059e1cc 100644 --- a/area.html +++ b/area.html @@ -16,7 +16,7 @@

Unknown - +

@@ -35,67 +35,67 @@

Var Details

Default sound to play as ambience for clients entering the area

area_has_base_lighting - +

Whether this area has a currently active base lighting, bool

base_lighting_alpha - +

alpha 0-255 of lighting_effect and thus baselighting intensity

base_lighting_color - +

The colour of the light acting on this area

block_game_interaction - +

If this area is outside the game's normal interactivity and should be excluded from things like EOR reports and crew monitors. Doesn't need to be set for areas/Z levels that are marked as admin-only

flags_area - +

Bitfield of special area features

lighting_effect - +

The mutable appearance we underlay to show light

sound_environment - +

Default sound environment to use for the area, as list or int BYOND preset: http://www.byond.com/docs/ref/#/sound/var/environment

static_lighting - +

Whether this area allows static lighting and thus loads the lighting objects

Proc Details

get_sound_ambience

Returns the correct ambience sound track for a client in this area

diff --git a/area/almayer.html b/area/almayer.html index f00ded7c9886..04c1c5d23344 100644 --- a/area/almayer.html +++ b/area/almayer.html @@ -16,7 +16,7 @@

/area/almayer - +

Vars

@@ -27,24 +27,24 @@

Var Details

Whether this area is used for hijack evacuation progress

hijack_evacuation_type - +

Whether this area is additive or multiplicative towards evacuation progress

hijack_evacuation_weight - +

The weight this area gives towards hijack evacuation progress

diff --git a/area/shuttle.html b/area/shuttle.html index 0b73c2d06b7d..4e0de50afee0 100644 --- a/area/shuttle.html +++ b/area/shuttle.html @@ -16,20 +16,20 @@

Shuttle - +

Vars

Procs

PlaceOnTopReactarea/shuttle/Initialize()

Proc Details

PlaceOnTopReact

area/shuttle/Initialize()

diff --git a/atom.html b/atom.html index 4f4d6f77c0c0..652c3f8d4fb7 100644 --- a/atom.html +++ b/atom.html @@ -16,7 +16,7 @@

/atom - +

@@ -92,158 +92,158 @@

Var Details

Default pixel x shifting for the atom's icon.

base_pixel_y - +

Default pixel y shifting for the atom's icon.

base_transform - +

Base transform matrix, edited by admin tooling and such

hybrid_light_sources - +

Any light sources that are "inside" of us, for example, if src here was a mob that's carrying a flashlight, that flashlight's light source would be part of this list.

light - +

Our light source. Don't fuck with this directly unless you have a good reason!

light_color - +

Hexadecimal RGB string representing the colour of the light. White by default.

light_flags - +

Bitflags to determine lighting-related atom properties.

light_mask_type - +

typepath for the lighting maskfor dynamic light sources

light_on - +

Boolean variable for toggleable lights. Has no effect without the proper light_system, light_range and light_power values.

light_pixel_x - +

x offset for dynamic lights on this atom

light_pixel_y - +

y offset for dynamic lights on this atom

light_power - +

Intensity of the light. The stronger, the less shadows you will see on the lit area.

light_range - +

Range of the light in tiles. Zero means no light.

light_system - +

Light systems, only one of the three should be active at the same time.

minimap_color - +

The color this atom will be if we choose to draw it on the minimap

orbit_target - +

Reference to atom being orbited

raw_transform - +

Last transform used before being compound with base_transform This allows us to re-create transform if only base_transform changes

reagents - +

Chemistry.

static_light - +

The light source, datum. Dont fuck with this directly

static_light_sources - +

Static light sources currently attached to this atom, this includes ones owned by atoms inside this atom

Proc Details

GetAllContents

Will return the contents of an atom recursivly to a depth of 'searchDepth', not including starting atom

Topic

Passes Stat Browser Panel clicks to the game and calls client click on an atom

add_blood

add_blood

add_mob_blood

Adjust the randomness there so everyone gets the same thing Shout it at everyone

apply_transform

Updates the atom's transform compounding it with /atom/var/base_transform

attack_alien

*The parent proc, will default to UnarmedAttack behaviour unless overridden @@ -255,20 +255,20 @@

Var Details

Creates text that will float from the atom upwards to the viewer.

balloon_alert_to_viewers

Create balloon alerts (text that floats up) to everything within range. Will only display to people who can see.

beam

This is what you use to start a beam. Example: origin.Beam(target, args). Store the return of this proc if you don't set maxdist or time, you need it to delete the beam.

@@ -282,26 +282,26 @@

Var Details

This proc is called on atoms when they are loaded into a shuttle

get_all_contents

Returns the src and all recursive contents as a list. Includes the starting atom.

get_all_orbiters

Recursive getter method to return a list of all ghosts orbitting this atom

This will work fine without manually passing arguments.

get_storage_depth_to

Returns the storage depth of an atom. This is the number of items the atom is nested in before reaching the designated container, counted inclusively. @@ -310,14 +310,14 @@

Var Details

Like get storage depth to, but returns the depth to the nearest turf, inclusively Returns FALSE if no top level turf (a loc was null somewhere, or a non-turf atom's loc was an area somehow).

langchat_display_image

Vars

@@ -42,54 +42,54 @@

Var Details

Lazylist to keep track on the sources of illumination.

affecting_dynamic_lumi - +

Highest-intensity light affecting us, which determines our visibility.

black_market_value - +

How much this mob|object is worth when lowered into the ASRS pit while the black market is unlocked.

blocks_emissive - +

Either FALSE, EMISSIVE_BLOCK_GENERIC, or EMISSIVE_BLOCK_UNIQUE

em_block - +

Internal holder for emissive blocker object, do not use directly use blocks_emissive

emissive_overlay - +

Holds a reference to the emissive blocker overlay

Proc Details

Collide

Called when a movable atom has hit an atom via movement

Collided

Called when an atom has been hit by a movable atom via movement

abstract_move

meant for movement with zero side effects. only use for objects that are supposed to move "invisibly" (like camera mobs or ghosts) @@ -97,26 +97,26 @@

Var Details

---Var-Copy---

keybind_face_direction

A wrapper for setDir that should only be able to fail by living mobs.

Called from [/atom/movable/proc/keyLoop], this exists to be overwritten by living mobs with a check to see if we're actually alive enough to change directions

set_light_range_power_color

Helper to change several lighting overlay settings.

ui_interact

The ui_interact proc is used to open and update Nano UIs @@ -129,13 +129,13 @@

Var Details

Keeps track of the sources of dynamic luminosity and updates our visibility with the highest.

diff --git a/atom/movable/emissive_blocker.html b/atom/movable/emissive_blocker.html index 6e7bbf0286d0..f0c411db39ca 100644 --- a/atom/movable/emissive_blocker.html +++ b/atom/movable/emissive_blocker.html @@ -16,7 +16,7 @@

emissive blocker - +

Internal atom that copies an appearance on to the blocker plane

@@ -26,7 +26,7 @@

emissive blocker

Vars

@@ -61,60 +61,60 @@

Var Details

Turfs that are being affected by this mask, this is for the sake of luminosity

attached_atom - +

The atom that we are attached to, does not need hard del protection as we are deleted with it

awaiting_update - +

Prevents us from registering for update twice before SSlighting init

current_angle - +

The current angle the item is pointing at

is_directional - +

Set to TRUE if you want the light to rotate with the owner

mask_holder - +

Reference to the holder /obj/effect

radius - +

The radius of illumination of the mask

shadows - +

list of mutable appearance shadows

Proc Details

apply_matrix

if you want the matrix to grow or shrink, you can do that using this proc when applyng it

calculate_lighting_shadows

Returns a list of matrices corresponding to the matrices that should be applied to triangles of @@ -122,7 +122,7 @@

Var Details

Basically takes the 2-4 corners, extends them and then generates triangle coordinates representing shadows @@ -133,13 +133,13 @@

Var Details

Takes in the list of lines and sight blockers and returns only the lines that are not blocked

get_corners_from_coords

Converts the corners into the 3 (or 2) valid points @@ -149,13 +149,13 @@

Var Details

Creates a matrix for the lighting mak to use

group_atoms

Groups things into vertical and horizontal lines. @@ -164,50 +164,50 @@

Var Details

Enqueues the mask in the queue properly

rotate

Rotates the light source to angle degrees.

rotate_mask_on_holder_turn

The holder atom turned, spins the mask if it's needed

set_color

Setter proc for colors

set_intensity

Setter proc for the intensity of the mask

set_radius

Sets the radius of the mask, and updates everything that needs to be updated

triangle_to_matrix

Converts a triangle into a matrix that can be applied to a standardized triangle to make it represent the points.

diff --git a/atom/movable/plane_master_controller.html b/atom/movable/plane_master_controller.html index 85d325c98293..71e9bd8e7963 100644 --- a/atom/movable/plane_master_controller.html +++ b/atom/movable/plane_master_controller.html @@ -16,7 +16,7 @@

/atom/movable/plane_master_controller - +

Atom that manages and controls multiple planes. It's an atom so we can hook into add_filter etc. Multiple controllers can control one plane.

Vars

@@ -31,48 +31,48 @@

Var Details

List of planes in this controllers control. Initially this is a normal list, but becomes an assoc list of plane numbers as strings | plane instance

owner_hud - +

hud that owns this controller

Proc Details

Initialize

Ensures that all the planes are correctly in the controlled_planes list.

add_filter

Full override so we can just use filterrific

get_filters

Gets all filters for this controllers plane masters

remove_filter

Full override so we can just use filterrific

transition_filter

Transitions all filters owned by this plane master controller

diff --git a/atom/movable/screen.html b/atom/movable/screen.html index 3dae084e4fe7..0fdd99c3a304 100644 --- a/atom/movable/screen.html +++ b/atom/movable/screen.html @@ -16,7 +16,7 @@

/atom/movable/screen - +

A screen object, which acts as a container for turfs and other things @@ -36,20 +36,20 @@

Var Details

Map name assigned to this object. Automatically set by /client/proc/add_obj_to_map.

clear_with_screen - +

If FALSE, this will not be cleared when calling /client/clear_screen()

del_on_map_removal - +

Mark this object as garbage-collectible after you clean the map it was registered on.

@@ -58,25 +58,25 @@

Var Details

- +

A reference to the owner HUD, if any.

master - +

A reference to the object in the slot. Grabs or items, generally.

Proc Details

fill_rect

Sets screen_loc to fill a rectangular area of the map.

If applicable, "assigned_map" has to be assigned before this proc call.

set_position

Sets screen_loc of this screen object, in form of point coordinates, @@ -84,13 +84,13 @@

Var Details

le awesome parent type

diff --git a/atom/movable/screen/alert.html b/atom/movable/screen/alert.html index 5662500e0ea6..65880344be44 100644 --- a/atom/movable/screen/alert.html +++ b/atom/movable/screen/alert.html @@ -16,7 +16,7 @@

Alert - +

Vars

@@ -28,30 +28,30 @@

Var Details

Boolean. If TRUE, the Click() proc will attempt to Click() on the master first if there is a master.

override_alerts - +

If it is overriding other alerts of the same type

owner - +

Alert owner

timeout - +

If set to a number, this alert will clear itself after that many deciseconds

diff --git a/atom/movable/screen/alert/status_effect.html b/atom/movable/screen/alert/status_effect.html index 05285e0abf32..2b3de7607c34 100644 --- a/atom/movable/screen/alert/status_effect.html +++ b/atom/movable/screen/alert/status_effect.html @@ -16,7 +16,7 @@

Curse of Mundanity - +

Alert base type for status effect alerts

Vars

@@ -25,12 +25,12 @@

Var Details

- +

The status effect we're linked to

diff --git a/atom/movable/screen/color_matrix_proxy_view.html b/atom/movable/screen/color_matrix_proxy_view.html index cc13dc57eeaf..63cfd2ce3c44 100644 --- a/atom/movable/screen/color_matrix_proxy_view.html +++ b/atom/movable/screen/color_matrix_proxy_view.html @@ -16,7 +16,7 @@

color_matrix_proxy_view - +

Vars

@@ -25,12 +25,12 @@

Var Details

The client that is watching this view

diff --git a/atom/movable/screen/escape_menu/home_button_text.html b/atom/movable/screen/escape_menu/home_button_text.html index ac8869de1acd..76785fee8d1f 100644 --- a/atom/movable/screen/escape_menu/home_button_text.html +++ b/atom/movable/screen/escape_menu/home_button_text.html @@ -16,20 +16,20 @@

/atom/movable/screen/escape_menu/home_button_text - +

Vars

Procs

set_hoveredSets the hovered state of the button, and updates the text

Proc Details

set_hovered

Sets the hovered state of the button, and updates the text

diff --git a/atom/movable/screen/fullscreen.html b/atom/movable/screen/fullscreen.html index 0a2d245688e2..ccd352649ce0 100644 --- a/atom/movable/screen/fullscreen.html +++ b/atom/movable/screen/fullscreen.html @@ -16,7 +16,7 @@

/atom/movable/screen/fullscreen - +

@@ -25,12 +25,12 @@

Var Details

If this should try and resize if the user's view is bigger than the default

diff --git a/atom/movable/screen/gun.html b/atom/movable/screen/gun.html index 1ef831bce1c9..f5cf7f56ddc8 100644 --- a/atom/movable/screen/gun.html +++ b/atom/movable/screen/gun.html @@ -16,7 +16,7 @@

/atom/movable/screen/gun - +

Vars

@@ -25,12 +25,12 @@

Var Details

The proc/verb which should be called on the gun.

diff --git a/atom/movable/screen/plane_master.html b/atom/movable/screen/plane_master.html index 699fd572e88d..1206c633d7c2 100644 --- a/atom/movable/screen/plane_master.html +++ b/atom/movable/screen/plane_master.html @@ -16,7 +16,7 @@

/atom/movable/screen/plane_master - +

Vars

@@ -30,30 +30,30 @@

Var Details

integer: blend mode to apply to the render relay in case you dont want to use the plane_masters blend_mode

generate_render_target - +

bool: Whether this plane should get a render target automatically generated

relay - +

reference: current relay this plane is utilizing to render

render_relay_plane - +

integer: what plane we will relay this planes render to

Proc Details

relay_render_to_plane

Plane master proc called in backdrop() that creates a relay object, sets it as needed and then adds it to the clients screen @@ -71,7 +71,7 @@

Var Details

Vars

@@ -27,19 +27,19 @@

Var Details

The 'category' of the atom currently being tracked. (Defaults to TRACKER_QUEEN)

tracking_ref - +

A weak reference to the atom currently being tracked. (Note: This is null for TRACKER_QUEEN and TRACKER_HIVE, as those are accessed through the user's hive datum.)

diff --git a/atom/movable/screen/text/screen_text.html b/atom/movable/screen/text/screen_text.html index edfe4c17ad8d..f26843eeaa4f 100644 --- a/atom/movable/screen/text/screen_text.html +++ b/atom/movable/screen/text/screen_text.html @@ -16,7 +16,7 @@

/atom/movable/screen/text/screen_text - +

Vars

@@ -36,78 +36,78 @@

Var Details

Time taken to fade in as we start printing text

fade_out_delay - +

Time before fade out after printing is finished

fade_out_time - +

Time taken when fading out after fade_out_delay

letters_per_update - +

letters to update by per text to per play_delay

play_delay - +

delay between playing each letter. in general use 1 for fluff and 0.5 for time sensitive messsages

player - +

The client that this text is for

style_close - +

closing styling for the message

style_open - +

opening styling for the message

text_to_play - +

var for the text we are going to play

Proc Details

after_play

handles post-play effects like fade out after the fade out delay

end_play

ends the play then deletes this screen object and plays the next one in queue if it exists

play_to_client

proc for actually playing this screen_text on a mob.

diff --git a/atom/movable/vis_obj/weed_food.html b/atom/movable/vis_obj/weed_food.html index e53f5713826e..d323e9984dff 100644 --- a/atom/movable/vis_obj/weed_food.html +++ b/atom/movable/vis_obj/weed_food.html @@ -16,20 +16,20 @@

weeds - +

Vars

Procs

on_animation_timerTimer callback for changing the icon_state

Proc Details

on_animation_timer

Timer callback for changing the icon_state

diff --git a/client.html b/client.html index 93d508a53206..088f1e8ebfd6 100644 --- a/client.html +++ b/client.html @@ -16,7 +16,7 @@

/client - +

@@ -106,109 +106,109 @@

Var Details

Client var used for returning the ahelp verb

completed_asset_jobs - +

List of all completed blocking send jobs awaiting acknowledgement by send_asset

connection_time - +

world.time they connected

current_ticket - +

Client var used for tracking the ticket the (usually) not-admin client is dealing with

holding_click - +

Whether or not the player is holding their mouse click

ignore_next_click - +

Means that there can only be one click per mousedown.

key_combos_held - +

A buffer for combinations such of modifiers + keys (ex: CtrlD, AltE, ShiftT). Format: "key" -> "combo" (ex: "D" -> "CtrlD")

keys_held - +

A buffer of currently held keys.

last_asset_job - +

Last asset send job id.

mouse_trace_history - +

The history of all atoms that were hovered over while the mouse was depressed

movement_keys - +

custom movement keys for this client

movement_locked - +

Are we locking our movement input?

next_move_dir_add - +

On next move, add this dir to the move that would otherwise be done

next_move_dir_sub - +

On next move, subtract this dir from the move that would otherwise be done

obj_window - +

Our object window datum. It stores info about and handles behavior for the object tab

panel_tabs - +

list of all tabs

recent_examines - +

A lazy list of atoms we've examined in the last EXAMINE_MORE_TIME (default 1.5) seconds, so that we will call [/atom/proc/examine_more] instead of [/atom/proc/examine] on them when examining

screen_maps - +

Assoc list with all the active maps - when a screen obj is added to a map, it's put in here as well.

@@ -216,105 +216,105 @@

Var Details

lazylist of screen_texts for this client, first in this list is the one playing

stat_panel - +

Stat panel window declaration

stat_tab - +

our current tab

tgui_cache_reloaded - +

global

TRUE if cache was reloaded by tgui dev server at least once.

tgui_say - +

Assigned say modal of the client

tgui_windows - +

global

Tracks open windows for a user.

tooltips - +

datum that controls the displaying and hiding of tooltips

topiclimiter - +

Used for limiting the rate of topic sends by the client to avoid abuse

typing_indicators - +

Does this client have typing indicators enabled?

urgent_ahelp_cooldown - +

The last urgent ahelp that this player sent

Proc Details

adaptive_zoom

Attempts to scale client zoom automatically to fill 1080p multiples. Best used with auto fit viewport.

add_to_screen

Wrapper for adding anything to a client's screen

admin_follow

Attempts to make the client orbit the given object, for administrative purposes. If they are not an observer, will try to aghost them.

asset_cache_confirm_arrival

Process asset cache client topic calls for "asset_cache_confirm_arrival=[INT]"

asset_cache_preload_data

Process asset cache client topic calls for "asset_cache_preload_data=[HTML+JSON_STRING]

asset_cache_update_json

Updates the client side stored json file used to keep track of what assets the client has between restarts/reconnects.

browse_queue_flush

Blocks until all currently sending browse and browse_rsc assets have been sent. @@ -322,19 +322,19 @@

Var Details

Logical OR list, not match all.

clear_all_maps

Clears all the maps of registered screen objects.

clear_map

Clears the map of registered screen objects.

@@ -343,19 +343,19 @@

Var Details

Clears the client's screen, aside from ones that opt out

close_popup

Closes a popup.

create_popup

Creates a popup window with a basic map element in it, without any @@ -364,62 +364,62 @@

Var Details

Erases macros set by the keybinding system

fix_tgui_panel

tgui panel / chat troubleshooting verb

get_total_drone_playtime

playtime for drone and drone evolution castes

get_total_t3_playtime

playtime for t3 castes and queen

get_total_xeno_playtime

playtime for all castes

handle_ooc_prefix

Used by OOC chat to generate icons for player prefix. Intended to make it easy to see at a glance if someone is staff, WL Council or Mentor.

handle_popup_close

When the popup closes in any way (player or proc call) it calls this.

init_verbs

Compiles a full list of verbs to be sent to the browser Sends the 2D verbs vector of (verb category, verb name)

keyUp

Check if the key is short enough to even be a real key

nanoclose

Called when a Nano UI window is closed @@ -428,75 +428,75 @@

Var Details

Handles login-related logging and associated notifications

on_stat_panel_message

Handles incoming messages from the stat-panel TGUI.

open_escape_menu

Opens the escape menu. Verb, hardcoded to Escape, set in the client skin.

open_particle_editor

opens the particle editor UI for the in_atom object for this client

register_map_obj

Registers screen obj with the client, which makes it visible on the assigned map, and becomes a part of the assigned map's lifecycle.

remove_from_screen

Wrapper for removing anything from a client's screen

reset_held_keys

Manually clears any held keys, in case due to lag or other undefined behavior a key gets stuck.

set_crit_type

Toggle in character preferences and toggle preferences to configure what kind of crit overlay is used in game; Either white or grey.

set_eye_blur_type

Toggle in character preferences and toggle preferences to configure what kind of blur overlay is used in game; Either blurry, impaired, or legacy.

set_flash_type

Toggle in character preferences and toggle preferences to configure what kind of flash overlay is used in game; Either white or black.

set_macros

Request blocking update of keybinds to client, clearing old ones

setup_popup

Create the popup, and get it ready for generic use by giving @@ -504,7 +504,7 @@

Var Details

Management Access @@ -512,7 +512,7 @@

Var Details

Creates a JSON encoded message to open TGUI say modals properly.

@@ -522,19 +522,19 @@

Var Details

Toggle whether dual-wielding fires both guns at once or swaps between them.

typing_indicator

Whether or not to show a typing indicator when speaking. Defaults to on.

uiclose

verb

@@ -543,7 +543,7 @@

Var Details

Updates the keybinds for special keys

@@ -556,7 +556,7 @@

Var Details

Vars

@@ -43,102 +43,102 @@

code/__DEFINES/ARES.dm

COOLDOWN_ARES_SENSORCooldowns
JOE_JOIN_DEAD_TIMETime until someone can respawn as Working Joe

Define Details

ARES_ACCESS_BASIC - +

Generic access for 1:1 conversations with ARES and unrestricted commands.

ARES_ACCESS_CE - +

Synth, CE & Commanding Officer, can read the access log.

ARES_ACCESS_COMMAND - +

Secure Access, can read ARES Announcements and Bioscans.

ARES_ACCESS_CORPORATE - +

CL, can read Apollo Log and also Delete Announcements.

ARES_ACCESS_DEBUG - +

Debugging. Allows me to view everything without using a high command rank.

ARES_ACCESS_HIGH - +

High Command, can read the deletion log.

ARES_ACCESS_SENIOR - +

Senior Command, can Delete Bioscans.

ARES_LOG_MAIN - +

Logged with all announcements

ARES_LOG_NONE - +

Not by ARES logged through marine_announcement()

ARES_LOG_SECURITY - +

Logged in the security updates

COOLDOWN_ARES_SENSOR - +

Cooldowns

JOE_JOIN_DEAD_TIME - +

Time until someone can respawn as Working Joe

TICKET_ASSIGNED - +

Assigned to a WJ

TICKET_CANCELLED - +

Cancelled by reporter

TICKET_COMPLETED - +

Completed by WJs

TICKET_GRANTED - +

Granted Access Ticket

TICKET_NON_PRIORITY - +

Downgraded from Priority

TICKET_OPEN - +

Checks for if buttons can be used, these may yet be removed and internalised to the UI programming

TICKET_PENDING - +

Ticket statuses, both for Access and Maintenance Pending assignment/rejection

TICKET_PRIORITY - +

Upgraded to Priority

TICKET_REJECTED - +

Rejected by WJs

TICKET_RETURNED - +

Self-Returned Access Ticket

TICKET_REVOKED - +

Revoked Access Ticket

diff --git a/code/__DEFINES/MC.html b/code/__DEFINES/MC.html index e06252c712e6..6e7011cce868 100644 --- a/code/__DEFINES/MC.html +++ b/code/__DEFINES/MC.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/MC.dm - +

@@ -56,89 +56,89 @@

code/__DEFINES/MC.dm

INITSTAGE_MAIN! Main init stage
INITSTAGE_MAX! Highest initstage.

Define Details

INITSTAGE_EARLY - +

! Early init stuff that doesn't need to wait for mapload

INITSTAGE_MAIN - +

! Main init stage

INITSTAGE_MAX - +

! Highest initstage.

MC_AVG_OVER_TIME - +

creates a running average of "things elapsed" per time period when you need to count via a smaller time period. eg you want an average number of things happening per second but you measure the event every tick (50 milliseconds). make sure both time intervals are in the same units. doesnt work if current_duration > total_duration or if total_duration == 0

MC_RUNNING - +

Returns true if the MC is initialized and running. Optional argument init_stage controls what stage the mc must have initializted to count as initialized. Defaults to INITSTAGE_MAX if not specified.

SS_BACKGROUND - +

Subsystem only runs on spare cpu (after all non-background subsystems have ran that tick) SS_BACKGROUND has its own priority bracket, this overrides SS_TICKER's priority bump

SS_IDLE - +

ain't doing shit.

SS_KEEP_TIMING - +

keep the subsystem's timing on point by firing early if it fired late last fire because of lag ie: if a 20ds subsystem fires say 5 ds late due to lag or what not, its next fire would be in 15ds, not 20ds.

SS_NO_FIRE - +

subsystem does not fire. (like can_fire = 0, but keeps it from getting added to the processing subsystems list) (Requires a MC restart to change)

SS_NO_INIT - +

subsystem does not initialize.

SS_OK_TO_FAIL_INIT - +

If this subsystem doesn't initialize, it should not report as a hard error in CI. This should be used for subsystems that are flaky for complicated reasons, such as the Lua subsystem, which relies on auxtools, which is unstable. It should not be used simply to silence CI.

SS_PAUSED - +

paused by mc_tick_check

SS_PAUSING - +

in the middle of pausing

SS_POST_FIRE_TIMING - +

Calculate its next fire after its fired. (IE: if a 5ds wait SS takes 2ds to run, its next fire should be 5ds away, not 3ds like it normally would be) This flag overrides SS_KEEP_TIMING

SS_QUEUED - +

queued to run

SS_RUNNING - +

actively running

SS_SLEEPING - +

fire() slept.

SS_TICKER - +

Treat wait as a tick count, not DS, run every wait ticks. @@ -148,7 +148,7 @@

INITS This is designed for basically anything that works as a mini-mc (like SStimer)

diff --git a/code/__DEFINES/__game.html b/code/__DEFINES/__game.html index 8be73f05bb3e..9d61c350271a 100644 --- a/code/__DEFINES/__game.html +++ b/code/__DEFINES/__game.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/__game.dm - +

@@ -60,153 +60,153 @@

code/__DEFINES/__game.dm

PERF_TOGGLE_TECHWEBSDisables loading Techwebs and additional Z-Levels

Define Details

AMOUNT_PER_TIME - +

Used for calculations with delta_time when figuring how much "amount" to give per "time" amount - The number to get per time time - The time period in which to gain this amount To be used with delta_time. Multiplied by 10 to convert from deciseconds to seconds

BARRICADE_BSTATE_MOVABLE - +

Ready to be deconstructed and can be moved.

BARRICADE_BSTATE_UNSECURED - +

Intermediate state before cade is movable (no apparent effect on health).

BEAM_INFINITE_DURATION - +

For beams with an infinite duration (deletion is handled separately)

CANDLE_LUM - +

For how bright candles are.

CEILING_IS_PROTECTED - +

Only use the CEILING_PROTECTION_TIER_X defines for protection_level

CEILING_NO_PROTECTION - +

Do not block any ordnance

CEILING_PROTECTION_TIER_1 - +

Blocks mortar placement, lasing, and medevac

CEILING_PROTECTION_TIER_2 - +

Blocks CAS signals, supply drops, fultoning, and mortar fire

CEILING_PROTECTION_TIER_3 - +

Blocks CAS fire

CEILING_PROTECTION_TIER_4 - +

Blocks OB fire

CHAT_CPM_ALLOWED - +

Max characters per minute allowed to speak

CHAT_CPM_MINIMUM - +

Minimum character length counted for a single message

CHAT_CPM_PERIOD - +

Buffer period over which speaking budget is considered

CHAT_TYPE_ALL - +

This is so if we have newer flags, we still have ALL working. This will work for 16 first flags.

CHAT_TYPE_ALL_COMBAT - +

Used for pre-setting tgchat message type as combat messages

DOCK_ATTEMPT_TIMEOUT - +

how long in ticks we wait before assuming the docking controller is broken or blown up.

EXTINGUISHER_WATER_USE_AMT - +

Amount of water consumed by extinguisher per use.//why is this a define let alone a GLOBAL define oh my good lord

GET_RANDOM_FREQ - +

Frequency stuff only works with 45kbps oggs.

NO_FLAGS - +

To make it even more clear that something is a bitfield.

PERF_TOGGLE_ATTACKLOGS - +

Disable file-based attacklogs

PERF_TOGGLE_LAZYSS - +

Set conservative MC timings on game start

PERF_TOGGLE_NOBLOODPRINTS - +

Disable bloody footprints

PERF_TOGGLE_SHUTTLES - +

Disables loading/ticking shuttle controllers

PERF_TOGGLE_TECHWEBS - +

Disables loading Techwebs and additional Z-Levels

PLAYERCOUNT_LOWPOP_MAP_LIMIT - +

Number of players before we switch to lowpop maps only (LV, BR, Prison).

PREROUND_TIME - +

Time before the round starts.

QTREE_SCAN_MOBS - +

Return mob list instead of client list.

QUADTREE_BOUNDARY_MINIMUM_HEIGHT - +

Minimum Y height up to which we keep dividing the tree (meaning cells can be half that)

QUADTREE_BOUNDARY_MINIMUM_WIDTH - +

Minimum X width up to which we keep dividing the tree (meaning cells can be half that)

QUADTREE_CAPACITY - +

Max amount of player coordinates in a quadtree cell

ROUNDSTART_LOGOUT_REPORT_TIME - +

Amount of time (in deciseconds) after the rounds starts, that the player disconnect report is issued.

SPLIT_ADMIN_TABS - +

Splits admin tabs in Statpanel

TOGGLE_WINDOW_SKIN - +

Window skin types

TRANSITIONEDGE - +

Distance from edge to move to another z-level.

diff --git a/code/__DEFINES/__rust_g.html b/code/__DEFINES/__rust_g.html index 585b02a48ce1..347069304d93 100644 --- a/code/__DEFINES/__rust_g.html +++ b/code/__DEFINES/__rust_g.html @@ -14,14 +14,14 @@ — Define Details

code/__DEFINES/__rust_g.dm - +

rustg_cnoise_generateThis proc generates a cellular automata noise grid which can be used in procedural generation methods.

Define Details

rustg_cnoise_generate - +

This proc generates a cellular automata noise grid which can be used in procedural generation methods.

@@ -37,7 +37,7 @@

diff --git a/code/__DEFINES/_click.html b/code/__DEFINES/_click.html index c292f4f44881..d98b5ae5e5c3 100644 --- a/code/__DEFINES/_click.html +++ b/code/__DEFINES/_click.html @@ -14,21 +14,21 @@ — Define Details

code/__DEFINES/_click.dm - +

BUTTONMouse button that was just clicked/released if(modifiersBUTTON == LEFT_CLICK)

Define Details

BUTTON - +

Mouse button that was just clicked/released if(modifiersBUTTON == LEFT_CLICK)

diff --git a/code/__DEFINES/_globals.html b/code/__DEFINES/_globals.html index 9286965fa84b..69ebd3c7c5c8 100644 --- a/code/__DEFINES/_globals.html +++ b/code/__DEFINES/_globals.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/_globals.dm - +

@@ -41,113 +41,113 @@

code/__DEFINES/_globals.dm

GLOBAL_SUBTYPE_PATHS_LIST_INDEXEDCreates list of subtype paths indexed by a variable

Define Details

GLOBAL_DATUM - +

Create a typed null global

GLOBAL_DATUM_INIT - +

Create a typed global with an initializer expression

GLOBAL_LIST - +

Create a null global list

GLOBAL_LIST_EMPTY - +

Create a list global that is initialized as an empty list

GLOBAL_LIST_EMPTY_TYPED - +

Create a typed list global that is initialized as an empty list

GLOBAL_LIST_FILE_LOAD - +

Load a file in as a global list

GLOBAL_LIST_INIT - +

Create a list global with an initializer expression

GLOBAL_LIST_INIT_TYPED - +

Create a typed list global with an initializer expression

GLOBAL_MANAGED - +

Creates a global initializer with a given InitValue expression, do not use

GLOBAL_PROTECT - +

Prevents a given global from being VV'd

GLOBAL_RAW - +

Defines a global var on the controller, do not use

GLOBAL_REAL - +

Standard typed BYOND global, do not use

GLOBAL_REAL_VAR - +

Standard BYOND global, do not use

GLOBAL_REFERENCE_LIST_INDEXED - +

Creates datum reference list

GLOBAL_SUBTYPE_INDEXED - +

Creates name keyed subtype instance list

GLOBAL_SUBTYPE_PATHS_LIST_INDEXED - +

Creates list of subtype paths indexed by a variable

GLOBAL_SUBTYPE_PATH_INDEXED - +

Lists subtypes of a given type, indexed by initial value of a variable

GLOBAL_UNMANAGED - +

Creates an empty global initializer, do not use

GLOBAL_VAR - +

Create an untyped null global

GLOBAL_VAR_CONST - +

Create a global const var, do not use

GLOBAL_VAR_INIT - +

Create an untyped global with an initializer expression

diff --git a/code/__DEFINES/_macros.html b/code/__DEFINES/_macros.html index 528af4483d60..6bc3fce575e2 100644 --- a/code/__DEFINES/_macros.html +++ b/code/__DEFINES/_macros.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/_macros.dm - +

@@ -23,23 +23,23 @@

code/__DEFINES/_macros.dm

text_refTakes a datum as input, returns its ref string

Define Details

calculateticks - +

Converts your ticks to proper tenths.

tcheck - +

Shorthand of checking and then sleeping a process based on world CPU.

text_ref - +

Takes a datum as input, returns its ref string

diff --git a/code/__DEFINES/_math.html b/code/__DEFINES/_math.html index ceccb06a4c36..6006f43e4bb8 100644 --- a/code/__DEFINES/_math.html +++ b/code/__DEFINES/_math.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/_math.dm - +

@@ -23,17 +23,17 @@

code/__DEFINES/_math.dm

LERPPerforms a linear interpolation between a and b. Note that amount=0 returns a, amount=1 returns b, and amount=0.5 returns the mean of a and b.

Define Details

LERP - +

Performs a linear interpolation between a and b. Note that amount=0 returns a, amount=1 returns b, and amount=0.5 returns the mean of a and b.

SIGN - +

Gets the sign of x, returns -1 if negative, 0 if 0, 1 if positive

get_turf - +

Get the turf that A resides in, regardless of any containers.

@@ -41,7 +41,7 @@

LERP stored inside an inventory, locker, or other container.

diff --git a/code/__DEFINES/_tick.html b/code/__DEFINES/_tick.html index 6905d093ee18..392ab2da1df4 100644 --- a/code/__DEFINES/_tick.html +++ b/code/__DEFINES/_tick.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/_tick.dm - +

@@ -29,49 +29,49 @@

code/__DEFINES/_tick.dm

TICK_CHECK_HIGH_PRIORITYReturns true if tick usage is above 95, for high priority usage
CHECK_TICK_HIGH_PRIORITYruns stoplag if tick_usage is above 95, for high priority usage

Define Details

CHECK_TICK - +

runs stoplag if tick_usage is above the limit

CHECK_TICK_HIGH_PRIORITY - +

runs stoplag if tick_usage is above 95, for high priority usage

TICK_BYOND_RESERVE - +

Tick limit while running normally

TICK_CHECK - +

Returns true if tick_usage is above the limit

TICK_CHECK_HIGH_PRIORITY - +

Returns true if tick usage is above 95, for high priority usage

TICK_LIMIT_MC - +

Tick limit for MC while running

TICK_LIMIT_MC_INIT_DEFAULT - +

Tick limit while initializing

TICK_LIMIT_TO_RUN - +

Tick limit used to resume things in stoplag

TICK_USAGE - +

for general usage of tick_usage

TICK_USAGE_REAL - +

to be used where the result isn't checked

diff --git a/code/__DEFINES/access.html b/code/__DEFINES/access.html index 8c3fefa1e6d2..b9c595599c6f 100644 --- a/code/__DEFINES/access.html +++ b/code/__DEFINES/access.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/access.dm - +

@@ -56,157 +56,157 @@

code/__DEFINES/access.dm

ACCESS_LIST_CLF_BASEGeneric/basic access to CLF stuff
ACCESS_LIST_CLF_ALLAll access levels associated with CLF

Define Details

ACCESS_ARES_DEBUG - +

Used to access Maintenance Protocols on ARES Interface.

ACCESS_CLF_GENERAL - +

Found on just about all CLF ID cards

ACCESS_CLF_SENIOR_LEAD - +

Senior leadership, the highest ranks

ACCESS_COME_BACK_TO_ME - +

Temporary, just so I can flag places I need to change

ACCESS_ILLEGAL_PIRATE - +

The generic "I'm a bad guy" access

ACCESS_LIST_CIVIL_LIAISON - +

Used by the Wey-Yu - Civil Authority Liaison

ACCESS_LIST_CLF_ALL - +

All access levels associated with CLF

ACCESS_LIST_CLF_BASE - +

Generic/basic access to CLF stuff

ACCESS_LIST_COLONIAL_ALL - +

All the access levels in the civillian category, excluding Press.

ACCESS_LIST_DELIVERY - +

The access used by delivery ERT (Pizza/Souto)

ACCESS_LIST_EMERGENCY_RESPONSE - +

The accesses granted to emergency responders.

ACCESS_LIST_GLOBAL - +

Well... everything (non Yautja).

ACCESS_LIST_MARINE_ALL - +

All USCM Access levels used on the USS Almayer

ACCESS_LIST_MARINE_LIAISON - +

Used by the Wey-Yu - USCM Liaison

ACCESS_LIST_MARINE_MAIN - +

Most of the USCM Access Levels used on the USS Almayer, excluding highly restricted ones.

ACCESS_LIST_UA - +

Access used by United Americas responders.

ACCESS_LIST_UPP_ALL - +

All access levels associated with UPP

ACCESS_LIST_WY_ALL - +

All access levels associated with Weyland Yutani

ACCESS_LIST_WY_BASE - +

Generic/basic access to Wey-Yu stuff

ACCESS_LIST_WY_GOON - +

Wey-Yu Corp Security access.

ACCESS_LIST_WY_PMC - +

Wey-Yu PMCs access.

ACCESS_LIST_WY_SENIOR - +

Access levels for WY senior leadership

ACCESS_MARINE_AI - +

Used as dedicated access to ARES Core.

ACCESS_MARINE_AI_TEMP - +

Used in temporary passes

ACCESS_TUTORIAL_LOCKED - +

Anything in a tutorial sequence that shouldn't be accessed

ACCESS_TWE_GENERAL - +

Found on just about all Imperial ID cards

ACCESS_TWE_SENIOR_LEAD - +

Senior leadership, the highest ranks

ACCESS_UPP_GENERAL - +

Found on just about all Union ID cards

ACCESS_UPP_SENIOR_LEAD - +

Senior leadership, the highest ranks

ACCESS_WY_COLONIAL - +

WY employee override for most colonial areas

ACCESS_WY_EXEC - +

WY access given to field executives, like a marine liaison.

ACCESS_WY_GENERAL - +

Found on just about all corporate ID cards

ACCESS_WY_SECRETS - +

Secret research or other projects with highly restricted access

ACCESS_WY_SENIOR_LEAD - +

Senior leadership, the highest ranks

ACCESS_YAUTJA_ANCIENT - +

Ancients only

ACCESS_YAUTJA_ELDER - +

Elders+ only

ACCESS_YAUTJA_SECURE - +

Requires a visible ID chip to open

diff --git a/code/__DEFINES/admin.html b/code/__DEFINES/admin.html index 44bf830c0bfc..48fba8224b75 100644 --- a/code/__DEFINES/admin.html +++ b/code/__DEFINES/admin.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/admin.dm - +

@@ -33,65 +33,65 @@

code/__DEFINES/admin.dm

ANTIGRIEF_ENABLEDEnables antigrief entirely: Nobody can activate explosives on the Almayer, unless the ship crashed.
PROC_BLOCKEDProc has been blocked by IsAdminAdvancedProcCall()

Define Details

ANTIGRIEF_DISABLED - +

Disables antigrief entirely: Anyone can activate explosives at any time on the Almayer.

ANTIGRIEF_ENABLED - +

Enables antigrief entirely: Nobody can activate explosives on the Almayer, unless the ship crashed.

ANTIGRIEF_NEW_PLAYERS - +

Enables antigrief on the Almayer, but only for new players: Those who've had less than 10 total human hours.

for /proc/check_asay_links, if there are any actionable refs in the asay message, this index in the return list contains the new message text to be printed

for /proc/check_asay_links, if there are any admin pings in the asay message, this index in the return list contains a list of admins to ping

HELD_KEY_BUFFER_LENGTH - +

Length of held key buffer

MAX_COMMANDS_PER_KEY - +

Maximum keys that can be bound to one button

MAX_KEYPRESS_AUTOKICK - +

Max amount of keypress messages per second over two seconds before client is autokicked

MAX_KEYPRESS_COMMANDLENGTH - +

Max length of a keypress command before it's considered to be a forged packet/bogus command

MAX_KEYS_PER_KEYBIND - +

Maximum keys per keybind

NOTE_ADMIN - +

This note is used by staff for disciplinary record keeping.

NOTE_MERIT - +

This note is used by staff for positive record keeping.

NOTE_WHITELIST - +

These notes are automatically applied by the Whitelist Panel.

PROC_BLOCKED - +

Proc has been blocked by IsAdminAdvancedProcCall()

diff --git a/code/__DEFINES/assert.html b/code/__DEFINES/assert.html index 93c1e6a9192c..84f1889e6a26 100644 --- a/code/__DEFINES/assert.html +++ b/code/__DEFINES/assert.html @@ -14,20 +14,20 @@ — Define Details

code/__DEFINES/assert.dm - +

ASSERTOverride BYOND's native ASSERT to optionally specify a message

Define Details

ASSERT - +

Override BYOND's native ASSERT to optionally specify a message

diff --git a/code/__DEFINES/atmospherics.html b/code/__DEFINES/atmospherics.html index 6ae6831ae88c..7482a1f03519 100644 --- a/code/__DEFINES/atmospherics.html +++ b/code/__DEFINES/atmospherics.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/atmospherics.dm - +

@@ -29,49 +29,49 @@

code/__DEFINES/atmospherics.dm

BODYTEMP_COLD_DAMAGE_LIMITThe limit the human body can take before it starts taking damage from coldness.
VENT_GAS_SMOKEUsed in /obj/structure/pipes/vents/proc/create_gas

Define Details

BODYTEMP_AUTORECOVERY_DIVISOR - +

This is the divisor which handles how much of the temperature difference between the current body temperature and 310.15K (optimal temperature) humans auto-regenerate each tick. The higher the number, the slower the recovery. This is applied each tick, so long as the mob is alive.

BODYTEMP_AUTORECOVERY_MINIMUM - +

Minimum amount of kelvin moved toward 310.15K per tick. So long as abs(310.15 - bodytemp) is more than 50.

BODYTEMP_COLD_DAMAGE_LIMIT - +

The limit the human body can take before it starts taking damage from coldness.

BODYTEMP_COLD_DIVISOR - +

Similar to the BODYTEMP_AUTORECOVERY_DIVISOR, but this is the divisor which is applied at the stage that follows autorecovery. This is the divisor which comes into play when the human's loc temperature is lower than their body temperature. Make it lower to lose bodytemp faster.

BODYTEMP_COOLING_MAX - +

The maximum number of degrees that your body can cool in 1 tick, when in a cold area.

BODYTEMP_HEATING_MAX - +

The maximum number of degrees that your body can heat up in 1 tick, when in a hot area.

BODYTEMP_HEAT_DAMAGE_LIMIT - +

The limit the human body can take before it starts taking damage from heat.

BODYTEMP_HEAT_DIVISOR - +

Similar to the BODYTEMP_AUTORECOVERY_DIVISOR, but this is the divisor which is applied at the stage that follows autorecovery. This is the divisor which comes into play when the human's loc temperature is higher than their body temperature. Make it lower to gain bodytemp faster.

TEMPERATURE_DAMAGE_COEFFICIENT - +

This is used in handle_temperature_damage() for humans, and in reagents that affect body temperature. Temperature damage is multiplied by this amount.

VENT_GAS_SMOKE - +

Used in /obj/structure/pipes/vents/proc/create_gas

diff --git a/code/__DEFINES/autofire.html b/code/__DEFINES/autofire.html index c695653b5f36..b5179b9ed216 100644 --- a/code/__DEFINES/autofire.html +++ b/code/__DEFINES/autofire.html @@ -14,20 +14,20 @@ — Define Details

code/__DEFINES/autofire.dm - +

AUTOFIRE_BUCKET_POSHelper for getting the correct bucket

Define Details

AUTOFIRE_BUCKET_POS - +

Helper for getting the correct bucket

diff --git a/code/__DEFINES/autolathe.html b/code/__DEFINES/autolathe.html index c5c97331ea12..65e787f152d6 100644 --- a/code/__DEFINES/autolathe.html +++ b/code/__DEFINES/autolathe.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/autolathe.dm - +

@@ -23,25 +23,25 @@

code/__DEFINES/autolathe.dm

AUTOLATHE_ARMYLATHE_CATEGORIES_LISTarmylathe
AUTOLATHE_MEDILATHE_CATEGORIES_LISTmedilathe

Define Details

AUTOLATHE_ARMYLATHE_CATEGORIES_LIST - +

armylathe

AUTOLATHE_CATEGORY_ALL - +

CATEGORY DEFINES

AUTOLATHE_MEDILATHE_CATEGORIES_LIST - +

medilathe

AUTOLATHE_STANDARD_CATEGORIES_LIST - +

standard lathe

diff --git a/code/__DEFINES/bullet_traits.html b/code/__DEFINES/bullet_traits.html index 28d695f776c0..a91d8ebd109a 100644 --- a/code/__DEFINES/bullet_traits.html +++ b/code/__DEFINES/bullet_traits.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/bullet_traits.dm - +

@@ -25,25 +25,25 @@

code/__DEFINES/bullet_traits.dm

GIVE_BULLET_TRAITHelper define for directly changing a projectile's bullet traits

Define Details

BULLET_TRAIT_ENTRY - +

An entry to a list for giving projectiles bullet traits Must be placed inside of a list

BULLET_TRAIT_ENTRY_ID - +

An entry to a list for giving projectiles bullet traits with a unique ID Must be placed inside of a list

GIVE_BULLET_TRAIT - +

Helper define for directly changing a projectile's bullet traits

diff --git a/code/__DEFINES/chat.html b/code/__DEFINES/chat.html index 012d5cf2f3f9..7f5e11edbeef 100644 --- a/code/__DEFINES/chat.html +++ b/code/__DEFINES/chat.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/chat.dm - +

@@ -23,13 +23,13 @@

code/__DEFINES/chat.dm

examine_blockAdds a generic box around whatever message you're sending in chat. Really makes things stand out.

Define Details

examine_block - +

Adds a generic box around whatever message you're sending in chat. Really makes things stand out.

diff --git a/code/__DEFINES/chemistry.html b/code/__DEFINES/chemistry.html index 3178e50f88d8..8e6ecd44dcbe 100644 --- a/code/__DEFINES/chemistry.html +++ b/code/__DEFINES/chemistry.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/chemistry.dm - +

@@ -46,117 +46,117 @@

code/__DEFINES/chemistry.dm

EXPLOSION_PHORON_THRESHOLDThe minimum amount of phoron required to turn shrapnel into incendiary shrapnel
INCENDIARY_SHARDS_MAX_REDUCTIONThe maximum amount of shards is divided by this number if the shards are incendiary

Define Details

BOTTLE_ICON_CHOICES - +

Amount of bottle icon variations in total

CHEM_CLASS_BASIC - +

Chemicals that can be dispensed directly from the dispenser (iron, oxygen)

CHEM_CLASS_COMMON - +

Chemicals which recipe is commonly known and made (bicaridine, alkysine, salt)

CHEM_CLASS_NONE - +

Default. Chemicals not used in the chem generator

CHEM_CLASS_RARE - +

Chemicals without a recipe but can be obtained on the Almayer, or requires rare components

CHEM_CLASS_SPECIAL - +

Chemicals without a recipe and can't be obtained on the Almayer, or requires special components

CHEM_CLASS_ULTRA - +

Randomly generated chemicals

CHEM_CLASS_UNCOMMON - +

Chemicals which recipe is uncommonly known and made (spacedrugs, foaming agent)

CHEM_FIRE_PENETRATION_THRESHOLD - +

The minimum amount of a fire penetrating chemical required to turn a fire into fire penetrating

CHEM_FIRE_PHOSPHORUS_PER_RADIUS - +

Amount of phosphorus that equals 1 radius of white phosphorus smoke

CHEM_FIRE_STAR_THRESHOLD - +

An intensity greater than this will cause a fire to be star shape

EXPLOSION_PHORON_THRESHOLD - +

The minimum amount of phoron required to turn shrapnel into incendiary shrapnel

INCENDIARY_SHARDS_MAX_REDUCTION - +

The maximum amount of shards is divided by this number if the shards are incendiary

PILL_ICON_CHOICES - +

Amount of random icon variations for pills in total

PROPERTY_ADMIN - +

can only be spawned through admin powers

PROPERTY_COMMON - +

can be generated anywhere and available in round start chems

PROPERTY_DISABLED - +

the property is disabled and can't spawn anywhere, however is still functional

PROPERTY_LEGENDARY - +

can strictly only be generated at specific gen_tiers

PROPERTY_RARE - +

can only be generated at specific gen_tiers, but can also be made through specific property combinations

PROPERTY_UNCOMMON - +

can be generated anywhere, but not available in round start chems

REAGENT_CANNOT_OVERDOSE - +

Whether the reagent canNOT trigger its overdose effects. Used by regulating property. For ordinary reagents with no overdose effect, instead keep var/overdose at 0.

REAGENT_NOT_INGESTIBLE - +

Whether the reagent canNOT be ingested and must be delivered through injection. Used by electrogenetic property.

REAGENT_NO_GENERATION - +

Reagent doesn't randomly generate in chemicals

REAGENT_SCANNABLE - +

Whether the reagent shows up on health analysers.

REAGENT_TYPE_MEDICAL - +

Used to restrict recipes in the generator from employing all reagents of this type

RESEARCH_LEVEL_INCREASE_MULTIPLIER - +

Scales cost of increasing clearance using credits

TECHTREE_LEVEL_MULTIPLIER - +

Scales tech level to max amplification level

diff --git a/code/__DEFINES/clans.html b/code/__DEFINES/clans.html index 7b806a517490..39f087bd6a33 100644 --- a/code/__DEFINES/clans.html +++ b/code/__DEFINES/clans.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/clans.dm - +

@@ -35,73 +35,73 @@

code/__DEFINES/clans.dm

CLAN_ACTION_PLAYER_MOVECLANSet a player's clan
CLAN_ACTION_PLAYER_MODIFYRANKSet a player's rank. Resets when moved from clan to Young Blood

Define Details

CLAN_ACTION_CLAN_RENAME - +

Set name of clan

CLAN_ACTION_CLAN_SETDESC - +

Set description of clan

CLAN_ACTION_CLAN_SETHONOR - +

Set honor of clan

CLAN_ACTION_PLAYER_MODIFYRANK - +

Set a player's rank. Resets when moved from clan to Young Blood

CLAN_ACTION_PLAYER_MOVECLAN - +

Set a player's clan

CLAN_LIMIT_NUMBER - +

Hard limit

CLAN_LIMIT_SIZE - +

Scales with clan size

CLAN_PERMISSION_ADMIN_MANAGER - +

Manages the ancients

CLAN_PERMISSION_ADMIN_MODIFY - +

Modify all clans

CLAN_PERMISSION_ADMIN_MOVE - +

Move people to and from clans

CLAN_PERMISSION_ADMIN_VIEW - +

View all clans

CLAN_PERMISSION_USER_MODIFY - +

Modify ranks within clan

CLAN_RANK_ADMIN - +

Must be given by someone with CLAN_PERMISSION_ADMIN_MODIFY

CLAN_RANK_BLOODED - +

New to the clan

CLAN_RANK_UNBLOODED - +

Unused for the moment

CLAN_RANK_YOUNG - +

Clanless

diff --git a/code/__DEFINES/client_prefs.html b/code/__DEFINES/client_prefs.html index 8b8d6421de9f..9534c08812c1 100644 --- a/code/__DEFINES/client_prefs.html +++ b/code/__DEFINES/client_prefs.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/client_prefs.dm - +

@@ -26,34 +26,34 @@

code/__DEFINES/client_prefs.dm

DUAL_WIELD_SWAPSwap to the other weapon when dual wielding
DUAL_WIELD_NONEDo nothing when dual wielding

Define Details

DUAL_WIELD_FIRE - +

dual_wield_pref from /datum/preferences Fire both weapons when dual wielding

DUAL_WIELD_NONE - +

Do nothing when dual wielding

DUAL_WIELD_SWAP - +

Swap to the other weapon when dual wielding

TOGGLE_AMMO_DISPLAY_TYPE - +

limit how often the ammo is displayed when using semi-automatic fire

XENO_ABILITY_CLICK_MAX - +

Update this to whatever the largest value of the XENO_ABILITY_CLICK_* defines is.

XENO_ABILITY_CLICK_MIDDLE - +

Determines how abilities are activated, whether they're activated via middle click, shift click or right click.

diff --git a/code/__DEFINES/colours.html b/code/__DEFINES/colours.html index 0cddfefcbd88..8dacdef50e86 100644 --- a/code/__DEFINES/colours.html +++ b/code/__DEFINES/colours.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/colours.dm - +

@@ -63,188 +63,188 @@

code/__DEFINES/colours.dm

GAUSSIAN_BLURIcon filter that creates gaussian blur
COLOR_LASER_REDGun muzzle colors

Define Details

ADMIN_COLOR_PRIORITY - +

Only used by rare effects like greentext coloring mobs and when admins varedit color

AMBIENT_OCCLUSION - +

Icon filter that creates ambient occlusion

COLOR_BLACK - +

Black rgb(0, 0, 0)

COLOR_BLUE - +

Blue rgb(0, 0, 255)

COLOR_CYAN - +

Cyan rgb(0, 255, 255) B + G

COLOR_GRAY - +

Gray rgb(128, 128, 128)

COLOR_GREEN - +

Green rgb(0, 255, 0)

COLOR_LASER_RED - +

Gun muzzle colors

COLOR_LIGHT_GREEN - +

light green rgb( 0, 128, 0)

COLOR_MAGENTA - +

Magenta rgb(255, 0, 255) R+B

COLOR_MAROON - +

Maroon rgb(128, 0, 0) shade of red

COLOR_MOSTLY_PURE_RED - +

The default color for admin say, used as a fallback when the preference is not enabled

COLOR_OLIVE - +

Olive rgb(128, 128, 0)

COLOR_PRIORITY_AMOUNT - +

how many color priority levels there are.

COLOR_PURPLE - +

Purple rgb( 128, 0, 128)

COLOR_RED - +

Red rgb(255, 0, 0)

COLOR_SILVER - +

Silver rgb(192, 192, 192) shade of grey

COLOR_WHITE - +

White rgb(255, 255, 255)

COLOR_YELLOW - +

Yellow rgb(255, 255, 0) R+G

FIXED_COLOR_PRIORITY - +

Color inherent to the atom (e.g. blob color)

GAUSSIAN_BLUR - +

Icon filter that creates gaussian blur

LIGHT_COLOR_BLOOD_MAGIC - +

deep crimson

LIGHT_COLOR_BLUE - +

Cold, diluted blue. rgb(100, 150, 250)

LIGHT_COLOR_BLUEGREEN - +

Light blueish green. rgb(125, 225, 175)

LIGHT_COLOR_BROWN - +

Clear brown, mostly dim. rgb(150, 100, 50)

LIGHT_COLOR_CYAN - +

Diluted cyan. rgb(125, 225, 225)

LIGHT_COLOR_DARK_BLUE - +

Saturated blue. rgb(51, 117, 248)

LIGHT_COLOR_FIRE - +

Warm orange color, leaning strongly towards yellow. rgb(250, 160, 25)

LIGHT_COLOR_FLARE - +

Bright, non-saturated red. Leaning slightly towards pink for visibility. rgb(250, 100, 75)

LIGHT_COLOR_GREEN - +

Some defines to generalise Colors used in lighting.

Important note: Colors can end up significantly different from the basic html picture, especially when saturated Bright but quickly dissipating neon green. rgb(100, 200, 100)

LIGHT_COLOR_HALOGEN - +

Barely visible cyan-ish hue, as the doctor prescribed. rgb(240, 250, 250)

LIGHT_COLOR_HOLY_MAGIC - +

slightly desaturated bright yellow.

LIGHT_COLOR_LAVA - +

Very warm yellow, leaning slightly towards orange. rgb(196, 138, 24)

LIGHT_COLOR_LAVENDER - +

Less-saturated light purple. rgb(155, 81, 255)

LIGHT_COLOR_LIGHT_CYAN - +

More-saturated cyan. rgb(64, 206, 255)

LIGHT_COLOR_ORANGE - +

Mostly pure orange. rgb(250, 150, 50)

LIGHT_COLOR_PINK - +

Diluted, mid-warmth pink. rgb(225, 125, 225)

LIGHT_COLOR_PURPLE - +

Light Purple. rgb(149, 44, 244)

LIGHT_COLOR_RED - +

Warm red color rgb(250, 66, 66)

LIGHT_COLOR_SLIME_LAMP - +

Weird color, between yellow and green, very slimy. rgb(175, 200, 75)

LIGHT_COLOR_TUNGSTEN - +

Extremely diluted yellow, close to skin color (for some reason). rgb(250, 225, 175)

LIGHT_COLOR_YELLOW - +

Dimmed yellow, leaning kaki. rgb(225, 225, 125)

TEMPORARY_COLOR_PRIORITY - +

e.g. purple effect of the revenant on a mob, black effect when mob electrocuted

WASHABLE_COLOR_PRIORITY - +

Color splashed onto an atom (e.g. paint on turf)

diff --git a/code/__DEFINES/combat.html b/code/__DEFINES/combat.html index 7b43d6d53822..6af8f9cc19be 100644 --- a/code/__DEFINES/combat.html +++ b/code/__DEFINES/combat.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/combat.dm - +

@@ -25,33 +25,33 @@

code/__DEFINES/combat.dm

DECLOAK_SUBMERGEDCaused by being in a body of water.
DECLOAK_EMPCaused by an EMP.

Define Details

DECLOAK_EMP - +

Caused by an EMP.

DECLOAK_EXTINGUISHER - +

Caused by fire extinguisher.

DECLOAK_FORCED - +

Forced for any unspecified reason.

DECLOAK_PREDALIEN - +

Caused by predalien screech.

DECLOAK_SPECIES - +

Caused by being worn by non humans.

DECLOAK_SUBMERGED - +

Caused by being in a body of water.

diff --git a/code/__DEFINES/conflict.html b/code/__DEFINES/conflict.html index b4de9ade4339..3bea933bd261 100644 --- a/code/__DEFINES/conflict.html +++ b/code/__DEFINES/conflict.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/conflict.dm - +

@@ -51,137 +51,137 @@

code/__DEFINES/conflict.dm

DMG_ORGAN_DAM_PROB_MULTThe multiplier to damage when calculating organ damage probability
BRUTE_ORGAN_DAM_PROB_MULTThe multiplier to existing brute damage when calculating organ damage probability

Define Details

AMMO_ANTISTRUCT - +

Primarily for railgun but can be implemented for other projectiles that are for antitank and antistructure (wall/machine)

AMMO_FLAME - +

Handles sentry flamers glob

AMMO_HITS_TARGET_TURF - +

Whether or not the bullet hits the target that was clicked or if it keeps travelling

AMMO_MP - +

Can only hit people with criminal status

AMMO_NO_DEFLECT - +

Can't be deflected

AMMO_STRIKES_SURFACE - +

If the projectile hits a dense turf it'll do on_hit_turf on the turf just in front of the turf instead of on the turf itself

AMMUNITION_HANDFUL_BOX - +

for dump_ammo_to(), boxes of handfuls like shotgun shell boxes

AMMUNITION_SLAP_TRANSFER - +

If this magazine can transfer to other magazines of the same type by slapping one with the other

ATTACH_IGNORE_EMPTY - +

This attachment should override ignore if it is empty

ATTACH_MELEE - +

This attachment should activate if you attack() with it attached.

ATTACH_PROJECTILE - +

for attachments that fire bullets

ATTACH_WEAPON - +

is a weapon that fires stuff

ATTACH_WIELD_OVERRIDE - +

Override for attachies so you can fire them with a single hand . ONLY FOR PROJECTILES!!

BRUTE_ORGAN_DAM_PROB_MULT - +

The multiplier to existing brute damage when calculating organ damage probability

DMG_ORGAN_DAM_PROB_MULT - +

The multiplier to damage when calculating organ damage probability

EXPLOSION_PRONE_MULTIPLIER - +

prone mobs receive less damage from explosions

EXPLOSION_THRESHOLD_GIB - +

how much it takes to gib a mob

FALLOFF_PER_TILE - +

1 % per 1 tile per 1 normalcy

GUN_INTERNAL_MAG - +

If checking for ammo with current.mag you have to check it against numerical values, as booleans will not trigger.

GUN_LOW_AMMO_PERCENTAGE - +

A gun filled with this percentage of it's total ammo or lower is considered to have low ammo

GUN_NO_DESCRIPTION - +

No gun description, only base desc

GUN_ONE_HAND_WIELDED - +

removes unwielded accuracy and scatter penalties (not recoil)

GUN_RECOIL_BUILDUP - +

Whether the gun has been fired by its current user (reset upon dropped())

GUN_SUPPORT_PLATFORM - +

support weapon, bipod will grant autofire

MOB_SIZE_COEFF - +

Coefficient of mobsize when calculating damage from a mob colliding with a dense atom

PROJECTILE_BULLSEYE - +

Apply additional effects upon hitting clicked target

PROJECTILE_SHRAPNEL - +

Projectile is shrpanel which allow it to skip some collisions

SHOES_SLOWDOWN - +

How much shoes slow you down by default. Negative values speed you up

THROWFORCE_COEFF - +

Coefficient of throwforce when calculating damage from an atom colliding with a mob

THROW_DELAY - +

This is how long you must wait to throw again after throwing two things

THROW_SPEED_DENSE_COEFF - +

Coefficient of throwspeed when calculating damage from a mob colliding with a dense atom

THROW_SPEED_IMPACT_COEFF - +

Coefficient of throwspeed when calculating damage from an atom colliding with a mob

diff --git a/code/__DEFINES/cooldowns.html b/code/__DEFINES/cooldowns.html index a0420ac481e0..0a6aa3338bd1 100644 --- a/code/__DEFINES/cooldowns.html +++ b/code/__DEFINES/cooldowns.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/cooldowns.dm - +

@@ -22,18 +22,18 @@

code/__DEFINES/cooldowns.dm

COOLDOWN_SECONDSLEFTjust pre-divides the result by 10 to give an output in seconds

Define Details

COMSIG_CD_STOP - +

COOLDOWN SYSTEMS

COOLDOWN_SECONDSLEFT - +

just pre-divides the result by 10 to give an output in seconds

diff --git a/code/__DEFINES/dcs/flags.html b/code/__DEFINES/dcs/flags.html index 69fa613f646d..63c60e03bc44 100644 --- a/code/__DEFINES/dcs/flags.html +++ b/code/__DEFINES/dcs/flags.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/flags.dm - +

@@ -32,52 +32,52 @@

code/__DEFINES/dcs/flags.dm

COMPONENT_DUPE_UNIQUE_PASSARGSold component is given the initialization args of the new
COMPONENT_DUPE_SELECTIVEeach component of the same type is consulted as to whether the duplicate should be allowed

Define Details

COMPONENT_DUPE_ALLOWED - +

duplicates allowed

COMPONENT_DUPE_HIGHLANDER - +

old component is deleted (default)

COMPONENT_DUPE_SELECTIVE - +

each component of the same type is consulted as to whether the duplicate should be allowed

COMPONENT_DUPE_UNIQUE - +

new component is deleted

COMPONENT_DUPE_UNIQUE_PASSARGS - +

old component is given the initialization args of the new

COMPONENT_INCOMPATIBLE - +

Return this from /datum/component/Initialize or datum/component/OnTransfer to have the component be deleted if it's applied to an incorrect type. parent must not be modified if this is to be returned. This will be noted in the runtime logs

COMPONENT_NOTRANSFER - +

Returned in PostTransfer to prevent transfer, similar to COMPONENT_INCOMPATIBLE

ELEMENT_BESPOKE - +

Only elements created with the same arguments given after id_arg_index share an element instance The arguments are the same when the text and number values are the same and all other values have the same ref

ELEMENT_DETACH - +

Causes the detach proc to be called when the host object is being deleted

ELEMENT_INCOMPATIBLE - +

Return value to cancel attaching

diff --git a/code/__DEFINES/dcs/helpers.html b/code/__DEFINES/dcs/helpers.html index 25f824ff51c1..fbf4b8f79a4f 100644 --- a/code/__DEFINES/dcs/helpers.html +++ b/code/__DEFINES/dcs/helpers.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/helpers.dm - +

@@ -31,41 +31,41 @@

code/__DEFINES/dcs/helpers.dm

AddComponentA wrapper for _AddComponent that allows us to pretend we're using normal named arguments

Define Details

AddComponent - +

A wrapper for _AddComponent that allows us to pretend we're using normal named arguments

AddElement - +

A wrapper for _AddElement that allows us to pretend we're using normal named arguments

RemoveElement - +

A wrapper for _RemoveElement that allows us to pretend we're using normal named arguments

SEND_SIGNAL - +

Used to trigger signals and call procs registered for that signal The datum hosting the signal is automaticaly added as the first argument Returns a bitfield gathered from all registered procs Arguments given here are packaged in a list and given to _SendSignal

SIGNAL_HANDLER - +

Signifies that this proc is used to handle signals. Every proc you pass to RegisterSignal must have this.

SIGNAL_HANDLER_DOES_SLEEP - +

Signifies that this proc is used to handle signals, but also sleeps. Do not use this for new work.

diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.html b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.html index 74baaec3b44a..535e9ff0f119 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.html +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm - +

@@ -38,85 +38,85 @@

code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm

COMSIG_HUMAN_COLD_PROTECTION_APPLY_MODIFIERSFrom /mob/living/carbon/human/proc/get_flags_cold_protection()
COMSIG_HUMAN_SHRAPNEL_REMOVEDFrom /obj/item/proc/dig_out_shrapnel() : ()

Define Details

COMSIG_HUMAN_ALIEN_ATTACK - +

from /mob/living/carbon/human/attack_alien()

COMSIG_HUMAN_ATTEMPTING_EQUIP - +

From /mob/proc/equip_to_slot_if_possible()

COMSIG_HUMAN_BLOOD_CROSSED - +

From /obj/effect/decal/cleanable/blood/Crossed(): (amount, bcolor, dry_time_left)

COMSIG_HUMAN_BULLET_ACT - +

From /mob/living/carbon/human/bullet_act(): (damage_result, ammo_flags, obj/projectile/P)

COMSIG_HUMAN_CARRY - +

From /mob/living/carbon/human/MouseDrop_T(atom/dropping, mob/user)

COMSIG_HUMAN_COLD_PROTECTION_APPLY_MODIFIERS - +

From /mob/living/carbon/human/proc/get_flags_cold_protection()

COMSIG_HUMAN_EXTINGUISH - +

From /mob/living/carbon/human/ExtinguishMob()

COMSIG_HUMAN_FLAY_ATTEMPT - +

From /datum/flaying_datum

COMSIG_HUMAN_FORCESAY - +

from /mob/living/carbon/human/proc/force_say(): ()

COMSIG_HUMAN_IMPREGNATE - +

From /obj/item/clothing/mask/facehugger/proc/impregnate(): (obj/item/clothing/mask/facehugger/hugger)

COMSIG_HUMAN_MOVEMENT_CANCEL_INTERACTION - +

from /mob/living/carbon/human/movement_delay()

COMSIG_HUMAN_OVERLAY_APPLIED - +

From /mob/living/carbon/human/apply_overlay(): (cache_index, overlay_image)

COMSIG_HUMAN_OVERLAY_REMOVED - +

From /mob/living/carbon/human/remove_overlay(): (cache_index, overlay_image)

COMSIG_HUMAN_POST_MOVE_DELAY - +

from /mob/living/carbon/human/movement_delay(): (list/movedata)

COMSIG_HUMAN_POST_UPDATE_SIGHT - +

from /mob/living/carbon/human/update_sight()

COMSIG_HUMAN_PRE_BULLET_ACT - +

From /mob/living/carbon/human/bullet_act

COMSIG_HUMAN_REVIVED - +

From /obj/item/device/defibrillator/attack

COMSIG_HUMAN_SHRAPNEL_REMOVED - +

From /obj/item/proc/dig_out_shrapnel() : ()

COMSIG_HUMAN_SURGERY_APPLY_MODIFIERS - +

from /datum/surgery_step/proc/attempt_step()

diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.html b/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.html index 6b6824920b63..49d2e3ef6a55 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.html +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm - +

@@ -34,69 +34,69 @@

code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm

COMSIG_LIVING_SET_BODY_POSITIONfrom base of mob/living/set_body_position()
COMSIG_LIVING_APPLY_EFFECTfrom base of /mob/living/apply_status_effect(): (datum/status_effect/new_effect)

Define Details

COMSIG_LIVING_APPLY_EFFECT - +

from base of /mob/living/apply_status_effect(): (datum/status_effect/new_effect)

COMSIG_LIVING_ATTACKHAND_HUMAN - +

From /mob/living/carbon/human/attack_hand() : (mob/living/carbon/human/attacked_mob)

COMSIG_LIVING_CLIMB_STRUCTURE - +

From /obj/structure/proc/do_climb(var/mob/living/user, mods)

COMSIG_LIVING_FLAMER_CROSSED - +

From /obj/flamer_fire/Crossed

COMSIG_LIVING_FLAMER_FLAMED - +

From /obj/flamer_fire/Initialize

COMSIG_LIVING_GHOSTED - +

From /mob/living/proc/do_ghost() : (mob/dead/observer/ghost)

COMSIG_LIVING_HYPOSPRAY_INJECTED - +

From /obj/item/reagent_container/hypospray/attack() : (obj/item/reagent_container/hypospray/injector)

COMSIG_LIVING_PREIGNITION - +

From /mob/living/proc/IgniteMob

COMSIG_LIVING_PRE_COLLIDE - +

From /mob/living/Collide(): (atom/A)

COMSIG_LIVING_REJUVENATED - +

From /mob/living/rejuvenate

COMSIG_LIVING_SET_BODY_POSITION - +

from base of mob/living/set_body_position()

COMSIG_LIVING_SET_BUCKLED - +

from base of mob/living/set_buckled(): (new_buckled)

COMSIG_LIVING_ZOOM_OUT - +

From /obj/item/proc/unzoom

COMSIG_MOB_RECALCULATE_CLIENT_COLOR - +

From /mob/living/verb/resist()

COMSIG_MOB_RESISTED - +

From /mob/living/verb/resist()

diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.html b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.html index 0702f5fe5054..c8e0e723b6c5 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.html +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm - +

@@ -43,105 +43,105 @@

code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm

COMSIG_XENO_TRY_HIVEMIND_TALKFrom /mob/living/carbon/xenomorph/proc/hivemind_talk(): (message)
COMSIG_XENO_DEBUFF_CLEANSEused in /datum/component/status_effect/cleanse()

Define Details

COMSIG_QUEEN_DISMOUNT_OVIPOSITOR - +

From /mob/living/carbon/xenomorph/queen/proc/dismount_ovipositor(): (instant_dismount)

COMSIG_QUEEN_MOUNT_OVIPOSITOR - +

From /mob/living/carbon/xenomorph/queen/proc/mount_ovipositor

COMSIG_XENO_ACTION_USED - +

From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)

COMSIG_XENO_ALIEN_ATTACK - +

from /mob/living/carbon/xenomorph/attack_alien()

COMSIG_XENO_APPEND_TO_STAT - +

from /mob/living/carbon/xenomorph/get_status_tab_items(): (list/statdata)

COMSIG_XENO_BULLET_ACT - +

From /mob/living/carbon/xenomorph/bullet_act

COMSIG_XENO_DEAL_ACID_DAMAGE - +

From /mob/living/carbon/xenomorph/proc/check_blood_splash()

COMSIG_XENO_DEBUFF_CLEANSE - +

used in /datum/component/status_effect/cleanse()

COMSIG_XENO_ENTER_CRIT - +

From /mob/living/carbon/xenomorph/proc/handle_crit()

COMSIG_XENO_FAILED_ACTION_USED - +

From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)

COMSIG_XENO_MOVEMENT_DELAY - +

from /mob/living/carbon/xenomorph/movement_delay()

COMSIG_XENO_PLANT_RESIN_NODE - +

From /datum/action/xeno_action/onclick/plant_weeds/use_ability(): (atom/A)

COMSIG_XENO_POST_SPIT - +

From ../xeno_action/activable/xeno_spit/use_ability

COMSIG_XENO_PRE_ACTION_USED - +

From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner)

COMSIG_XENO_PRE_APPLY_ARMOURED_DAMAGE - +

from /mob/living/carbon/xenomorph/apply_armoured_damage(): (list/damagedata)

COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE - +

from /mob/living/carbon/xenomorph/bullet_act(): (list/damagedata)

COMSIG_XENO_RECALCULATE_SPEED - +

From /mob/living/carbon/xenomorph/proc/recalculate_speed()

COMSIG_XENO_REVIVED - +

From /mob/living/carbon/xenomorph/revive()

COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF - +

For any additional things that should happen when a xeno's melee_attack_additional_effects_self() proc is called

COMSIG_XENO_START_CHARGING - +

Called whenever xeno should resume charge

COMSIG_XENO_START_EMIT_PHEROMONES - +

From //mob/living/carbon/xenomorph/proc/emit_pheromones(): (pheromone, emit_cost)

COMSIG_XENO_STOP_MOMENTUM - +

Called whenever xeno should stop momentum (when charging)

COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER - +

From /obj/effect/alien/resin/special/eggmorph/attack_alien: (mob/living/carbon/xenomorph/M)

COMSIG_XENO_TRY_HIVEMIND_TALK - +

From /mob/living/carbon/xenomorph/proc/hivemind_talk(): (message)

diff --git a/code/__DEFINES/dcs/signals/atom/mob/signals_mind.html b/code/__DEFINES/dcs/signals/atom/mob/signals_mind.html index a31669f8811b..2827234a16b7 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/signals_mind.html +++ b/code/__DEFINES/dcs/signals/atom/mob/signals_mind.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/dcs/signals/atom/mob/signals_mind.dm - +

COMSIG_MIND_TRANSFERREDfrom mind/transfer_to. Sent after the mind has been transferred to a different body: (mob/previous_body)

Define Details

COMSIG_MIND_TRANSFERRED - +

from mind/transfer_to. Sent after the mind has been transferred to a different body: (mob/previous_body)

diff --git a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.html b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.html index d8e0b01fe73a..a6417cd6a16f 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.html +++ b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm - +

@@ -71,211 +71,211 @@

code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm

COMSIG_MOB_AGGRESSIVELY_GRABBEDFrom /obj/item/grab/proc/progress_passive() : (mob/living/carbon/human/grabber)
COMSIG_MOB_EFFECT_CLOAK_CANCELCancels all running cloaking effects on target

Define Details

COMSIG_LIVING_POST_FULLY_HEAL - +

from rejuv

COMSIG_MOB_AGGRESSIVELY_GRABBED - +

From /obj/item/grab/proc/progress_passive() : (mob/living/carbon/human/grabber)

COMSIG_MOB_APC_CUT_WIRE - +

From /obj/structure/machinery/power/apc/proc/cut

COMSIG_MOB_APC_POWER_PULSE - +

From /obj/structure/machinery/power/apc/proc/pulse

COMSIG_MOB_APC_REMOVE_BOARD - +

From /obj/structure/machinery/power/apc/attackby

COMSIG_MOB_APC_REMOVE_CELL - +

From /obj/structure/machinery/power/apc/attack_hand

COMSIG_MOB_ATTEMPTING_EQUIP - +

From /mob/proc/equip_to_slot_if_possible()

COMSIG_MOB_CHANGE_VIEW - +

called in /client/change_view()

COMSIG_MOB_CONSTRUCT_WALL - +

From /obj/structure/girder/proc/do_wall

COMSIG_MOB_CONSTRUCT_WINDOW - +

From /obj/structure/window_frame/attackby

COMSIG_MOB_DEATH - +

From /mob/proc/death

COMSIG_MOB_DESTROY_AIRLOCK - +

From /obj/structure/machinery/door/airlock/proc/take_damage

COMSIG_MOB_DESTROY_WALL - +

From /turf/closed/wall/proc/take_damage

COMSIG_MOB_DESTROY_WINDOW - +

From /obj/structure/window/proc/healthcheck

COMSIG_MOB_DEVOURED - +

For when a mob is devoured by a Xeno

COMSIG_MOB_DISASSEMBLE_AIRLOCK - +

From /obj/structure/machinery/door/airlock/attackby

COMSIG_MOB_DISASSEMBLE_WINDOW - +

From /obj/structure/window/attackby

COMSIG_MOB_DISASSEMBLE_W_FRAME - +

From /obj/structure/window_frame/attackby

COMSIG_MOB_DRAGGED - +

For when a mob is dragged

COMSIG_MOB_EATEN_SNACK - +

From /obj/item/reagent_container/food/snacks/proc/on_Consume() : (obj/item/reagent_container/food/snacks/eaten_food)

COMSIG_MOB_EFFECT_CLOAK_CANCEL - +

Cancels all running cloaking effects on target

COMSIG_MOB_EMOTE - +

from /mob/living/emote(): ()

COMSIG_MOB_EXPLODED_WALL - +

From /turf/closed/wall/ex_act

COMSIG_MOB_EXPLODE_W_FRAME - +

From /obj/structure/window/framed/ex_act

COMSIG_MOB_FIRED_GUN - +

From /projectiles/updated_projectiles/guns/proc/fire

COMSIG_MOB_FIRED_GUN_ATTACHMENT - +

From /projectiles/updated_projectiles/guns/proc/fire_attachment

COMSIG_MOB_GET_STATUS_TAB_ITEMS - +

From /mob/proc/get_status_tab_items() : (list/status_list)

COMSIG_MOB_GHOSTIZE - +

When a mob is turned into a /mob/dead/observer at /mob/proc/ghostize()

COMSIG_MOB_GRAB_UPGRADE - +

From /obj/item/grab/attack_self(mob/user)

COMSIG_MOB_GUN_EMPTY - +

From /obj/item/weapon/gun/proc/reload_into_chamber() : (obj/item/weapon/gun/empty_gun)

COMSIG_MOB_INTENT_CHANGE - +

From /mob/proc/a_intent_change() : (new_intent)

COMSIG_MOB_ITEM_ATTACK_SELF - +

From /obj/item/proc/attack_self() : (obj/item/used)

COMSIG_MOB_ITEM_DROPPED - +

From /obj/item/proc/dropped() : (obj/item/dropped)

COMSIG_MOB_ITEM_UNEQUIPPED - +

From /obj/item/proc/unequipped()

COMSIG_MOB_LOGGED_IN - +

From base of /mob/Login(), called after a client logs into this mob: () Not to be confused with COMSIG_MOB_LOGIN

COMSIG_MOB_LOGIN - +

From base of /mob/Login(), called when a client logs into this mob: () Not to be confused with COMSIG_MOB_LOGGED_IN

COMSIG_MOB_LOGOUT - +

From base of /mob/Logout(): ()

COMSIG_MOB_NEW_MIND - +

When a mob gets a new mind via transfer at /datum/mind/proc/transfer_to()

COMSIG_MOB_PARENT_ATTACKBY - +

From /atom/proc/attackby() : (atom/attacked, obj/item/attacked_with)

COMSIG_MOB_PICKUP_ITEM - +

From /obj/item/proc/pickup() : (obj/item/picked_up)

COMSIG_MOB_REAL_NAME_CHANGED - +

From /mob/proc/change_real_name(): (old_name, new_name)

COMSIG_MOB_RELOADED_GUN - +

From /obj/item/weapon/gun/proc/reload() : (obj/item/weapon/gun/reloaded)

COMSIG_MOB_RESET_VIEW - +

Called in /mob/reset_view(): (atom/A)

COMSIG_MOB_SET_FACE_DIR - +

From base of /mob/proc/set_face_dir(): (newdir)

COMSIG_MOB_STATCHANGE - +

from base of mob/set_stat(): (new_stat, old_stat)

COMSIG_MOB_SWAPPED_HAND - +

From /mob/proc/swap_hand() : ()

COMSIG_MOB_TACKLED_DOWN - +

From /mob/living/carbon/human/attack_alien(): (mob/living/carbon/xenomorph/M, dam_bonus)

COMSIG_MOB_TUTORIAL_UPDATE_OBJECTIVE - +

From /datum/tutorial/proc/update_objective() : (new_objective)

COMSIG_MOB_WEED_SLOWDOWN - +

From /obj/effect/alien/weeds/Crossed(atom/movable/AM)

COMSIG_MOB_WINDOW_EXPLODED - +

From /obj/structure/window/ex_act

diff --git a/code/__DEFINES/dcs/signals/atom/signals_atom.html b/code/__DEFINES/dcs/signals/atom/signals_atom.html index eadc81d9967a..36a4b9a62362 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_atom.html +++ b/code/__DEFINES/dcs/signals/atom/signals_atom.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_atom.dm - +

@@ -36,77 +36,77 @@

code/__DEFINES/dcs/signals/atom/signals_atom.dm

COMSIG_ATOM_DROP_ONCalled when an atom is mouse dropped on another atom, from /client/MouseDrop: (atom/dropped_onto)
COMSIG_ATOM_EMP_ACTCalled when an atom has emp_act called on it, from /atom/emp_act: (severity)

Define Details

COMSIG_ATOM_DECORATED - +

From /atom/proc/Decorate

COMSIG_ATOM_DIR_CHANGE - +

from base of atom/setDir(): (old_dir, new_dir). Called before the direction changes.

COMSIG_ATOM_DROPPED_ON - +

Called when an atom has something mouse dropped on it, from /client/MouseDrop: (atom/dropped_on)

COMSIG_ATOM_DROP_ON - +

Called when an atom is mouse dropped on another atom, from /client/MouseDrop: (atom/dropped_onto)

COMSIG_ATOM_EMP_ACT - +

Called when an atom has emp_act called on it, from /atom/emp_act: (severity)

COMSIG_ATOM_HITBY - +

from /atom/hitby(): (atom/movable/AM)

COMSIG_ATOM_ORBIT_BEGIN - +

called when an atom starts orbiting another atom: (atom)

COMSIG_ATOM_ORBIT_STOP - +

called when an atom stops orbiting another atom: (atom)

COMSIG_ATOM_SET_LIGHT_COLOR - +

Called right before the atom changes the value of light_color to a different one, from base atom/set_light_color(): (new_color)

COMSIG_ATOM_SET_LIGHT_FLAGS - +

Called right before the atom changes the value of light_flags to a different one, from base atom/set_light_flags(): (new_value)

COMSIG_ATOM_SET_LIGHT_ON - +

Called right before the atom changes the value of light_on to a different one, from base atom/set_light_on(): (new_value)

COMSIG_ATOM_SET_LIGHT_POWER - +

Called right before the atom changes the value of light_power to a different one, from base atom/set_light_power(): (new_power)

COMSIG_ATOM_SET_LIGHT_RANGE - +

Called right before the atom changes the value of light_range to a different one, from base atom/set_light_range(): (new_range)

COMSIG_ATOM_SET_OPACITY - +

from base of atom/set_opacity(): (new_opacity)

COMSIG_ATOM_TEMPORARY_ANIMATION_START - +

generally called before temporary non-parallel animate()s on the atom (animation_duration)

COMSIG_ATOM_TURF_CHANGE - +

from /turf/ChangeTurf

COMSIG_ATOM_VV_MODIFY_TRANSFORM - +

When the transform or an atom is varedited through vv topic.

diff --git a/code/__DEFINES/dcs/signals/atom/signals_cell.html b/code/__DEFINES/dcs/signals/atom/signals_cell.html index bba28c8bb819..69594b534791 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_cell.html +++ b/code/__DEFINES/dcs/signals/atom/signals_cell.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_cell.dm - +

@@ -24,29 +24,29 @@

code/__DEFINES/dcs/signals/atom/signals_cell.dm

COMSIG_CELL_CHECK_CHARGE(charge_amount)
COMSIG_CELL_REMOVE_CELL(mob/living/user)

Define Details

COMSIG_CELL_ADD_CHARGE - +

(charge_amount)

COMSIG_CELL_CHECK_CHARGE - +

(charge_amount)

COMSIG_CELL_REMOVE_CELL - +

(mob/living/user)

COMSIG_CELL_TRY_RECHARGING - +

(mob/living/user)

COMSIG_CELL_USE_CHARGE - +

(charge_amount)

diff --git a/code/__DEFINES/dcs/signals/atom/signals_item.html b/code/__DEFINES/dcs/signals/atom/signals_item.html index 485819f6bb21..11c9bc74769c 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_item.html +++ b/code/__DEFINES/dcs/signals/atom/signals_item.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_item.dm - +

@@ -33,65 +33,65 @@

code/__DEFINES/dcs/signals/atom/signals_item.dm

COMSIG_GUN_RECALCULATE_ATTACHMENT_BONUSESfrom /obj/item/weapon/gun/proc/recalculate_attachment_bonuses() : ()
COMSIG_GUN_INTERRUPT_FIREfrom /obj/item/weapon/gun/proc/load_into_chamber() : ()

Define Details

COMPONENT_CANCEL_EQUIP - +

Return this in response if you don't want items equipped

COMSIG_BROADCAST_GO_LIVE - +

from /obj/item/device/camera/broadcasting

COMSIG_GUN_INTERRUPT_FIRE - +

from /obj/item/weapon/gun/proc/load_into_chamber() : ()

COMSIG_GUN_RECALCULATE_ATTACHMENT_BONUSES - +

from /obj/item/weapon/gun/proc/recalculate_attachment_bonuses() : ()

COMSIG_ITEM_ATTACKED - +

from /obj/item/attackby() : (obj/item, mob/user)

COMSIG_ITEM_ATTACK_SELF - +

From base of /obj/item/proc/attack_self(): (mob/user)

COMSIG_ITEM_ATTEMPTING_EQUIP - +

from /obj/item/proc/mob_can_equip

COMSIG_ITEM_DROPPED - +

from base of obj/item/dropped(): (mob/user)

COMSIG_ITEM_EQUIPPED - +

From base of /obj/item/proc/equipped(): (mob/user, slot)

COMSIG_ITEM_UNEQUIPPED - +

From base of /obj/item/proc/unequipped(): (mob/user, slot)

COMSIG_ITEM_UNWIELD - +

from /obj/item/proc/unwield

COMSIG_ITEM_UNZOOM - +

from /obj/item/proc/unzoom() : (mob/user)

COMSIG_ITEM_ZOOM - +

from /obj/item/proc/do_zoom() : (mob/user)

COMSIG_SNACK_EATEN - +

from /obj/item/reagent_container/food/snacks/proc/On_Consume

diff --git a/code/__DEFINES/dcs/signals/atom/signals_movable.html b/code/__DEFINES/dcs/signals/atom/signals_movable.html index 87e7f5dcfa57..c57d56b09878 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_movable.html +++ b/code/__DEFINES/dcs/signals/atom/signals_movable.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_movable.dm - +

@@ -27,41 +27,41 @@

code/__DEFINES/dcs/signals/atom/signals_movable.dm

COMSIG_MOVABLE_SHUTTLE_CRUSHshuttle crushing something
COMSIG_MOVABLE_UPDATE_GLIDE_SIZEfrom base of /atom/movable/proc/set_glide_size(): (target)

Define Details

COMSIG_MOVABLE_ENTERED_RIVER - +

From /turf/open/gm/river/Entered(): (turf/open/gm/river/river, covered)

COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED - +

From /atom/movable/proc/doMove: I think it only works with forceMove so watch out

COMSIG_MOVABLE_MOVED - +

from base of atom/movable/Moved(): (/atom, dir, forced)

COMSIG_MOVABLE_PRE_MOVE - +

From /atom/movable/Move(): (atom/NewLoc)

COMSIG_MOVABLE_PRE_THROW - +

From /atom/movable/proc/launch_towards

COMSIG_MOVABLE_SHUTTLE_CRUSH - +

shuttle crushing something

COMSIG_MOVABLE_UPDATE_GLIDE_SIZE - +

from base of /atom/movable/proc/set_glide_size(): (target)

COMSIG_MOVABLE_XENO_START_PULLING - +

from /mob/living/carbon/xenomorph/start_pulling(): (mob/living/carbon/xenomorph/X)

diff --git a/code/__DEFINES/dcs/signals/atom/signals_obj.html b/code/__DEFINES/dcs/signals/atom/signals_obj.html index 832b10af7111..08d7c006098d 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_obj.html +++ b/code/__DEFINES/dcs/signals/atom/signals_obj.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_obj.dm - +

@@ -31,57 +31,57 @@

code/__DEFINES/dcs/signals/atom/signals_obj.dm

COMSIG_VENDOR_SUCCESSFUL_VENDfrom /proc/vendor_successful_vend() : (obj/structure/machinery/cm_vending/vendor, list/itemspec, mob/living/carbon/human/user)
COMSIG_LIMB_STOP_BLEEDINGfrom /obj/limb/proc/remove_all_bleeding() : (external, internal)

Define Details

COMSIG_ARC_ANTENNA_TOGGLED - +

from /obj/vehicle/multitile/arc/toggle_antenna()

COMSIG_CRYOPOD_GO_OUT - +

from /obj/structure/machinery/cryopod/go_out()

COMSIG_INTEL_DISK_COMPLETED - +

from /datum/cm_objective/retrieve_data/disk/complete()

COMSIG_INTEL_DISK_LOST_POWER - +

from /datum/cm_objective/retrieve_data/disk/process()

COMSIG_LIMB_STOP_BLEEDING - +

from /obj/limb/proc/remove_all_bleeding() : (external, internal)

COMSIG_OBJ_AFTER_BUCKLE - +

from /obj/proc/afterbuckle()

COMSIG_SHUTTLE_SETMODE - +

shuttle mode change

COMSIG_TRANSMITTER_UPDATE_ICON - +

from /obj/structure/transmitter/update_icon()

COMSIG_VENDOR_SUCCESSFUL_VEND - +

from /proc/vendor_successful_vend() : (obj/structure/machinery/cm_vending/vendor, list/itemspec, mob/living/carbon/human/user)

COMSIG_WEEDNODE_CANNOT_EXPAND_FURTHER - +

From /obj/effect/alien/weeds/proc/on_weed_expand()

COMSIG_WEEDNODE_GROWTH - +

From /obj/effect/alien/weeds/Initialize()

COMSIG_WEEDNODE_GROWTH_COMPLETE - +

From /obj/effect/alien/weeds/Initialize()

diff --git a/code/__DEFINES/dcs/signals/atom/signals_projectile.html b/code/__DEFINES/dcs/signals/atom/signals_projectile.html index 768b7e5f5f96..c1737cc16ad6 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_projectile.html +++ b/code/__DEFINES/dcs/signals/atom/signals_projectile.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_projectile.dm - +

@@ -33,62 +33,62 @@

code/__DEFINES/dcs/signals/atom/signals_projectile.dm

COMSIG_BULLET_PRE_HANDLE_TURFFrom /obj/projectile/scan_a_turf(): (turf/target)
COMSIG_BULLET_DIRECT_HITCalled when a bullet hits a living mob on a sprite click (original target is final target)

Define Details

COMSIG_AMMO_POINT_BLANK - +

Called on point blank for ammo effects

COMSIG_BULLET_ACT_LIVING - +

Called when a bullet hits a living mob

COMSIG_BULLET_ACT_XENO - +

Called when a bullet hits a xenomorph

COMSIG_BULLET_CHECK_MOB_SKIPPING - +

Called when checking whether bullet should skip mob for whatever reasons (like IFF)

COMSIG_BULLET_DIRECT_HIT - +

Called when a bullet hits a living mob on a sprite click (original target is final target)

COMSIG_BULLET_POST_HANDLE_MOB - +

From /obj/projectile/handle_mob(): (mob/living/target)

COMSIG_BULLET_POST_HANDLE_OBJ - +

From /obj/projectile/handle_obj(): (obj/target, did_hit)

COMSIG_BULLET_POST_HANDLE_TURF - +

From /obj/projectile/scan_a_turf(): (turf/target)

COMSIG_BULLET_PRE_HANDLE_MOB - +

From /obj/projectile/handle_mob(): (mob/living/target)

COMSIG_BULLET_PRE_HANDLE_OBJ - +

From /obj/projectile/handle_obj(): (obj/target)

COMSIG_BULLET_PRE_HANDLE_TURF - +

From /obj/projectile/scan_a_turf(): (turf/target)

COMSIG_BULLET_USER_EFFECTS - +

Apply any effects to the bullet (primarily through bullet traits) based on the user

COMSIG_POST_BULLET_ACT_HUMAN - +

Called when a bullet hits a human

diff --git a/code/__DEFINES/dcs/signals/atom/signals_turf.html b/code/__DEFINES/dcs/signals/atom/signals_turf.html index 405f131b8c0d..390942e9e045 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_turf.html +++ b/code/__DEFINES/dcs/signals/atom/signals_turf.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/atom/signals_turf.dm - +

@@ -25,33 +25,33 @@

code/__DEFINES/dcs/signals/atom/signals_turf.dm

COMSIG_POSTER_PLACEDfrom /turf/closed/wall/proc/place_poster
COMSIG_TURF_RESERVATION_RELEASEDfrom base of /datum/turf_reservation/proc/Release: (datum/turf_reservation/reservation)

Define Details

COMSIG_MOVABLE_TURF_ENTERED - +

from /turf/Entered

COMSIG_POSTER_PLACED - +

from /turf/closed/wall/proc/place_poster

COMSIG_TURF_BULLET_ACT - +

Called when a bullet hits a turf

COMSIG_TURF_RESERVATION_RELEASED - +

from base of /datum/turf_reservation/proc/Release: (datum/turf_reservation/reservation)

COMSIG_WALL_RESIN_ATTACKBY - +

From /turf/closed/wall/resin/attackby(): (obj/item/I, mob/M)

COMSIG_WALL_RESIN_XENO_ATTACK - +

From /turf/closed/wall/resin/attack_alien(): (mob/living/carbon/xenomorph/X)

diff --git a/code/__DEFINES/dcs/signals/signals_admin.html b/code/__DEFINES/dcs/signals/signals_admin.html index 97274488c628..fe36fb567ab1 100644 --- a/code/__DEFINES/dcs/signals/signals_admin.html +++ b/code/__DEFINES/dcs/signals/signals_admin.html @@ -14,24 +14,24 @@ — Define Details

code/__DEFINES/dcs/signals/signals_admin.dm - +

COMSIG_ADMIN_HELP_REPLIEDCalled on the /datum/admin_help when the player replies. From /client/proc/cmd_admin_pm().
COMSIG_ADMIN_HELP_RECEIVEDCalled on a client when a player receives an adminhelp. From /client/proc/receive_ahelp(message)

Define Details

COMSIG_ADMIN_HELP_RECEIVED - +

Called on a client when a player receives an adminhelp. From /client/proc/receive_ahelp(message)

COMSIG_ADMIN_HELP_REPLIED - +

Called on the /datum/admin_help when the player replies. From /client/proc/cmd_admin_pm().

diff --git a/code/__DEFINES/dcs/signals/signals_client.html b/code/__DEFINES/dcs/signals/signals_client.html index fed5b8174e7c..e278c9c075d1 100644 --- a/code/__DEFINES/dcs/signals/signals_client.html +++ b/code/__DEFINES/dcs/signals/signals_client.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/signals_client.dm - +

@@ -25,33 +25,33 @@

code/__DEFINES/dcs/signals/signals_client.dm

COMSIG_CLIENT_SCREEN_ADDCalled when something is added to a client's screen : /client/proc/add_to_screen(screen_add)
COMSIG_CLIENT_SCREEN_REMOVECalled when something is removed from a client's screen : /client/proc/remove_from_screen(screen_remove)

Define Details

COMSIG_CLIENT_MOB_LOGGED_IN - +

Called from /mob/Login() after a client logs into a mob: (mob)

COMSIG_CLIENT_PRE_CLICK - +

from /mob/do_click(): (atom/A, list/mods)

COMSIG_CLIENT_SCREEN_ADD - +

Called when something is added to a client's screen : /client/proc/add_to_screen(screen_add)

COMSIG_CLIENT_SCREEN_REMOVE - +

Called when something is removed from a client's screen : /client/proc/remove_from_screen(screen_remove)

COMSIG_CLIENT_VERB_ADDED - +

Called after one or more verbs are added: (list of verbs added)

COMSIG_CLIENT_VERB_REMOVED - +

Called after one or more verbs are added: (list of verbs added)

diff --git a/code/__DEFINES/dcs/signals/signals_datum.html b/code/__DEFINES/dcs/signals/signals_datum.html index 3e9fe20e98df..2034fe92adcf 100644 --- a/code/__DEFINES/dcs/signals/signals_datum.html +++ b/code/__DEFINES/dcs/signals/signals_datum.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/signals_datum.dm - +

@@ -40,93 +40,93 @@

code/__DEFINES/dcs/signals/signals_datum.dm

COMSIG_DROP_RETRIEVAL_CHECKFrom /datum/element/drop_retrieval usage: /obj/item/attachable/magnetic_harness/can_be_attached_to_gun(), /obj/item/storage/pouch/sling/can_be_inserted() (/obj/item/I)
COMSIG_LAZY_TEMPLATE_LOADEDFired on the lazy template datum when the template is finished loading. (list/loaded_atom_movables, list/loaded_turfs, list/loaded_areas)

Define Details

COMPONENT_NO_AFTERATTACK - +

Return this in response if you don't want afterattack to be called

COMSIG_ACTION_ACTIVATED - +

From base of /datum/action/proc/action_activate() : ()

COMSIG_ACTION_GIVEN - +

From /datum/action/proc/give_to(): (mob/owner)

COMSIG_ACTION_HIDDEN - +

From base of /datum/action/proc/hide_from(): (mob/owner)

COMSIG_ACTION_REMOVED - +

From base of /datum/action/proc/remove_from(): (mob/owner)

COMSIG_ACTION_UNHIDDEN - +

From base of /datum/action/proc/unhide_from(): (mob/owner)

COMSIG_BONUS_DAMAGE - +

from /datum/component/bonus_damage_stack

COMSIG_COMPONENT_ADDED - +

when a component is added to a datum: (/datum/component)

COMSIG_COMPONENT_REMOVING - +

before a component is removed from a datum because of RemoveComponent: (/datum/component)

COMSIG_DROP_RETRIEVAL_CHECK - +

From /datum/element/drop_retrieval usage: /obj/item/attachable/magnetic_harness/can_be_attached_to_gun(), /obj/item/storage/pouch/sling/can_be_inserted() (/obj/item/I)

COMSIG_ELEMENT_ATTACH - +

fires on the target datum when an element is attached to it (/datum/element)

COMSIG_ELEMENT_DETACH - +

fires on the target datum when an element is attached to it (/datum/element)

COMSIG_LAZY_TEMPLATE_LOADED - +

Fired on the lazy template datum when the template is finished loading. (list/loaded_atom_movables, list/loaded_turfs, list/loaded_areas)

COMSIG_PARENT_ATTACKBY - +

from base of atom/attackby(): (/obj/item, /mob/living, params)

COMSIG_PARENT_EXAMINE - +

from base of atom/examine(): (/mob, list/examine_text)

COMSIG_PARENT_PREQDELETED - +

before a datum's Destroy() is called: (force), returning a COMPONENT_ABORT_QDEL value will cancel the qdel operation

COMSIG_PARENT_QDELETING - +

just before a datum's Destroy() is called: (force), at this point none of the other components chose to interrupt qdel and Destroy will be called

COMSIG_SET_SQUAD - +

from /datum/squad/proc/put_marine_in_squad

COMSIG_TOPIC - +

generic topic handler (usr, href_list)

COMSIG_UI_ACT - +

from datum ui_act (usr, action)

COMSIG_VV_TOPIC - +

handler for vv_do_topic (usr, href_list)

diff --git a/code/__DEFINES/dcs/signals/signals_global.html b/code/__DEFINES/dcs/signals/signals_global.html index aa8b6dc072c1..191c7a488ee9 100644 --- a/code/__DEFINES/dcs/signals/signals_global.html +++ b/code/__DEFINES/dcs/signals/signals_global.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/signals_global.dm - +

@@ -44,109 +44,109 @@

code/__DEFINES/dcs/signals/signals_global.dm

COMSIG_GLOB_GENERATOR_SET_OVERLOADINGFrom /obj/structure/machinery/power/reactor/proc/set_overloading() : (set_overloading)
COMSIG_GLOB_FUEL_PUMP_UPDATEFrom /datum/controller/subsystem/hijack/fire()

Define Details

CANCEL_RANDOM_EVENT - +

Do not allow this random event to continue.

COMSIG_GLOB_AICORE_LOCKDOWN - +

From /proc/aicore_lockdown()

COMSIG_GLOB_CLIENT_LOGGED_IN - +

Called from /client/New() when a client logs in to the game: (client)

COMSIG_GLOB_DS_FIRST_LANDED - +

from /datum/game_mode/proc/ds_first_landed

COMSIG_GLOB_EXPANDED_WORLD_BOUNDS - +

sent after world.maxx and/or world.maxy are expanded: (has_exapnded_world_maxx, has_expanded_world_maxy)

COMSIG_GLOB_FUEL_PUMP_UPDATE - +

From /datum/controller/subsystem/hijack/fire()

COMSIG_GLOB_GENERATOR_SET_OVERLOADING - +

From /obj/structure/machinery/power/reactor/proc/set_overloading() : (set_overloading)

COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING - +

From /datum/game_mode/colonialmarines/proc/check_ground_humans()

COMSIG_GLOB_GROUNDSIDE_TELECOMM_TURNED_OFF - +

From /obj/structure/machinery/telecomms/proc/tcomms_shutdown(), called when the relay turns off

COMSIG_GLOB_MARINE_DEATH - +

from /mob/living/carbon/human/death

COMSIG_GLOB_MOB_LOGGED_IN - +

Called from /mob/Login() when a client logs into a mob: (mob)

COMSIG_GLOB_MODE_POSTSETUP - +

from /datum/game_mode/proc/post_setup

COMSIG_GLOB_MODE_PREGAME_LOBBY - +

from /datum/controller/subsystem/ticker/fire

COMSIG_GLOB_MODE_PRESETUP - +

from /datum/game_mode/proc/pre_setup

COMSIG_GLOB_NEW_Z - +

from base of datum/controller/subsystem/mapping/proc/add_new_zlevel(): (list/args)

COMSIG_GLOB_POST_SETUP - +

from /datum/controller/subsystem/ticker/PostSetup

COMSIG_GLOB_PREDATOR_ROUND_TOGGLED - +

From /datum/admins/proc/force_predator_round()

COMSIG_GLOB_RANDOM_EVENT - +

Called by (/datum/round_event_control/RunEvent).

COMSIG_GLOB_RESEARCH_LOCKDOWN - +

From /proc/biohazard_lockdown()

COMSIG_GLOB_SECURITY_LEVEL_CHANGED - +

from /proc/set_security_level

COMSIG_GLOB_VAR_EDIT - +

called after a successful var edit somewhere in the world: (list/args)

COMSIG_GLOB_VEHICLE_ORDERED - +

from base of datum/controller/subsystem/mapping/proc/add_new_zlevel(): (list/args)

COMSIG_GLOB_XENO_DEATH - +

from /mob/living/carbon/xenomorph/death

COMSIG_GLOB_XENO_SPAWN - +

from /mob/living/carbon/xenomorph/initialize

COMSIG_GLOB_YAUTJA_ARMORY_OPENED - +

From

diff --git a/code/__DEFINES/dcs/signals/signals_subsystem.html b/code/__DEFINES/dcs/signals/signals_subsystem.html index 31b68c3d305f..7624cf31c04b 100644 --- a/code/__DEFINES/dcs/signals/signals_subsystem.html +++ b/code/__DEFINES/dcs/signals/signals_subsystem.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals/signals_subsystem.dm - +

@@ -22,18 +22,18 @@

code/__DEFINES/dcs/signals/signals_subsystem.dm From base of datum/controller/subsystem/Initialize

COMSIG_SSRADIO_GET_AVAILABLE_TCOMMS_ZSfrom /datum/controller/subsystem/radio/get_available_tcomm_zs(): (list/tcomms)

Define Details

COMSIG_SSRADIO_GET_AVAILABLE_TCOMMS_ZS - +

from /datum/controller/subsystem/radio/get_available_tcomm_zs(): (list/tcomms)

COMSIG_SUBSYSTEM_POST_INITIALIZE - +

Subsystem signals From base of datum/controller/subsystem/Initialize

diff --git a/code/__DEFINES/equipment.html b/code/__DEFINES/equipment.html index 8bb33c45f0e6..b23f37ac3a15 100644 --- a/code/__DEFINES/equipment.html +++ b/code/__DEFINES/equipment.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/equipment.dm - +

@@ -97,321 +97,321 @@

code/__DEFINES/equipment.dm

ICE_PLANET_MIN_COLD_PROTFor the ice planet map protection from the elements.
ACCESSORY_SLOT_ARMOR_CUsed for uniform armor inserts.

Define Details

ACCESSORY_SLOT_ARMOR_C - +

Used for uniform armor inserts.

ALLOWCPR - +

Allows CPR even though the face is covered by a mask

ALLOWINTERNALS - +

mask allows internals

ALLOWREBREATH - +

Mask allows to breath in really hot or really cold air.

ANIMATED_SURGICAL_TOOL - +

whether it has an animated icon state of "[icon_state]_on" to be used during surgeries.

ARMOR_MAX_HEAT_PROT - +

For armor

ARMOR_MIN_COLD_PROT - +

For armor

ATOM_DECORATED - +

Has run Decorate() as part of subsystem init

BLOCKGASEFFECT - +

blocks the effect that chemical clouds would have on a mob --glasses, mask and helmets

BLOCKSHARPOBJ - +

From /tg: prevents syringes, parapens and hypos if the external suit or helmet (if targeting head) has this flag. Example: space suits, biosuit, bombsuits, thick suits that cover your body.

BLOCK_KNOCKDOWN - +

Suits only. Wearing this will stop you from being pushed over.

CAN_BE_DISPENSED_INTO - +

Chem dispenser can dispense in this even if it isn't an OPENCONTAINER

CAN_BE_SYRINGED - +

syringes can inject or drain reagents in this even if it isn't an OPENCONTAINER

CAN_DIG_SHRAPNEL - +

whether activating it digs shrapnel out of the user and striking others with medical skills can dig shapnel out of other people.

CONDUCT - +

conducts electricity (metal etc.)

COVEREYES - +

Covers the eyes/protects them.

COVERMOUTH - +

Covers the mouth.

DELONDROP - +

Deletes on drop instead of falling on the floor.

DIRLOCK - +

movable atom won't change direction when Moving()ing. Useful for items that have several dir states.

FIRESUIT_MAX_HEAT_PROT - +

what max_heat_protection_temperature is set to for firesuit quality headwear. MUST NOT BE 0.

FIRE_HELMET_MAX_HEAT_PROT - +

for fire helmet quality items (red and white hardhats)

FORCEDROP_CONDITIONAL - +

Overrides NODROP in some cases (stripping)

FPRINT - +

takes a fingerprint

FULL_DECAP_PROTECTION - +

Helmet does not fall off when blocking a decapitation

GLOVES_MAX_HEAT_PROT - +

For some gloves

GLOVES_MIN_COLD_PROT - +

For some gloves (black and)

HELMET_MAX_HEAT_PROT - +

For normal helmets

HELMET_MIN_COLD_PROT - +

For normal helmets

HIDEALLHAIR - +

temporarily removes the user's hair, facial and otherwise.

HIDEEARS - +

(ears means headsets and such)

HIDEEYES - +

(eyes means glasses)

HIDEFACE - +

Dictates whether we appear as unknown.

HIDELOWHAIR - +

temporarily removes the user's facial hair overlay.

HIDETOPHAIR - +

temporarily removes the user's hair overlay. Leaves facial hair.

HTML_USE_INITAL_ICON - +

Should we use the initial icon for display? Mostly used by overlay only objects

ICE_PLANET_MIN_COLD_PROT - +

For the ice planet map protection from the elements.

IGNITING_ITEM - +

Has heat source but isn't 'on fire' and thus can be stored

INITIALIZED - +

Initialized by SSatoms.

ITEM_ABSTRACT - +

The item is abstract (grab, powerloader_clamp, etc)

ITEM_OVERRIDE_NORTHFACE - +

For backpacks if they should have unique layering functions

ITEM_PREDATOR - +

Specific predator item interactions.

ITEM_UNCATCHABLE - +

The item can't be caught out of the air.

MOB_LOCK_ON_EQUIP - +

Lock this item to the mob that equips it up until permadeath

NOBLOODY - +

Don't want a blood overlay on this one.

NOBLUDGEON - +

when an item has this it produces no "X has been hit by Y with Z" message with the default handler

NODROP - +

Cannot be dropped/unequipped at all, only deleted.

NOINTERACT - +

You can't interact with it, at all. Useful when doing certain animations.

NOPRESSUREDMAGE - +

This flag is used on the flags variable for SUIT and HEAD items which stop pressure damage.

NOREACT - +

Reagents dont' react inside this container.

NOSHIELD - +

weapon not affected by shield (does nothing currently)

NO_CRYO_STORE - +

This item deletes itself when put in cryo storage

NO_NAME_OVERRIDE - +

Used for nonstandard marine clothing to ignore 'specialty' var.

NO_SNOW_TYPE - +

Used for armors or uniforms that don't have a snow/desert/etc icon state set via select_gamemode_skin (not all item types currently perform this test though).

ON_BORDER - +

'border object'. item has priority to check when entering or leaving

OPENCONTAINER - +

is an open container for chemistry purposes

RELAY_CLICK - +

This is used for /obj/ that relay your clicks via handle_click(), mostly for MGs ~Art

SHOE_MAX_HEAT_PROT - +

For shoes

SHOE_MIN_COLD_PROT - +

For shoes

SLOT_BLOCK_SUIT_STORE - +

Anything with this flag cannot be worn in suit storage, period.

SMARTGUNNER_BACKPACK_OVERRIDE - +

Overrides smartgunner not being able to wear backpacks

SMARTGUN_HARNESS - +

Whether wearing this suit grants you the ability to fire a smartgun

SPACE_HELMET_MIN_COLD_PROT - +

what min_cold_protection_temperature is set to for space-helmet quality headwear. MUST NOT BE 0.

SPACE_SUIT_MAX_HEAT_PROT - +

These need better heat protect, but not as good heat protect as firesuits.

SPACE_SUIT_MIN_COLD_PROT - +

what min_cold_protection_temperature is set to for space-suit quality jumpsuits or suits. MUST NOT BE 0.

TWOHANDED - +

The item is twohanded.

UNIFORM_DO_NOT_HIDE_ACCESSORIES - +

are accessories never hidden by sleeve/jacket state? (meant for snow uniform which rolls collar instead of sleeves)

UNIFORM_JACKET_REMOVABLE - +

can the jacket be removed?

UNIFORM_SLEEVE_CUTTABLE - +

can the sleeves be cut?

UNIFORM_SLEEVE_ROLLABLE - +

can we roll the sleeves on this uniform?

USES_HEARING - +

Whether or not the object uses hearing

VISION_IMPAIR_HIGH - +

1 tile of full and 2 of partial impairment

VISION_IMPAIR_MAX - +

3 tiles of full and 2 of partial impairment (original one)

VISION_IMPAIR_MED - +

3 tiles of partial impairment

VISION_IMPAIR_MIN - +

1 tile of partial impairment

VISION_IMPAIR_NONE - +

No visual impairment

VISION_IMPAIR_STRONG - +

2 tiles of full and 2 of partial impairment

VISION_IMPAIR_WEAK - +

2 tiles of partial impairment

WIELDED - +

The item is wielded with both hands.

diff --git a/code/__DEFINES/flags.html b/code/__DEFINES/flags.html index 91e68b92f458..f4f9637a0f60 100644 --- a/code/__DEFINES/flags.html +++ b/code/__DEFINES/flags.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/flags.dm - +

@@ -26,37 +26,37 @@

code/__DEFINES/flags.dm

WORKING_JOE_EMOTEWorking Joe emote
HAZARD_JOE_EMOTEHazard Joe emote

Define Details

ALL_CARDINALS - +

All the cardinal direction bitflags.

EMOTE_AUDIBLE - +

Is the emote audible

EMOTE_IMPORTANT - +

Is it an emote that should be shown regardless of blindness/deafness

EMOTE_NO_MESSAGE - +

Does the emote not have a message?

EMOTE_VISIBLE - +

Is the emote visible

HAZARD_JOE_EMOTE - +

Hazard Joe emote

WORKING_JOE_EMOTE - +

Working Joe emote

diff --git a/code/__DEFINES/fonts.html b/code/__DEFINES/fonts.html index eb66a0082d3e..59159fdb600a 100644 --- a/code/__DEFINES/fonts.html +++ b/code/__DEFINES/fonts.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/fonts.dm - +

EMOJI_SETEmoji icon set

Define Details

EMOJI_SET - +

Emoji icon set

diff --git a/code/__DEFINES/guns.html b/code/__DEFINES/guns.html index 9e404f790942..f70e126c11ca 100644 --- a/code/__DEFINES/guns.html +++ b/code/__DEFINES/guns.html @@ -14,24 +14,24 @@ — Define Details

code/__DEFINES/guns.dm - +

CO_GUNSBase CO special weapons options
COUNCIL_CO_GUNSCouncil CO special weapons options

Define Details

COUNCIL_CO_GUNS - +

Council CO special weapons options

CO_GUNS - +

Base CO special weapons options

diff --git a/code/__DEFINES/hud.html b/code/__DEFINES/hud.html index b737f2fcdc88..8854132ccd60 100644 --- a/code/__DEFINES/hud.html +++ b/code/__DEFINES/hud.html @@ -14,24 +14,24 @@ — Define Details

code/__DEFINES/hud.dm - +

APPEARANCE_UI_IGNORE_ALPHAUsed for progress bars and chat messages
APPEARANCE_UIUsed for HUD objects

Define Details

APPEARANCE_UI - +

Used for HUD objects

APPEARANCE_UI_IGNORE_ALPHA - +

Used for progress bars and chat messages

diff --git a/code/__DEFINES/human.html b/code/__DEFINES/human.html index 4f6298281b73..f80d408e6080 100644 --- a/code/__DEFINES/human.html +++ b/code/__DEFINES/human.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/human.dm - +

@@ -44,109 +44,109 @@

code/__DEFINES/human.dm

FIRE_LAYERIf you're on fire
EFFECTS_LAYERIf you're hit by an acid DoT

Define Details

BACK_FRONT_LAYER - +

For backpacks when mob is facing north

BURST_LAYER - +

Chestburst overlay

EFFECTS_LAYER - +

If you're hit by an acid DoT

FIRE_LAYER - +

If you're on fire

FLAY_LAYER - +

For use by Hunter Flay

HEADSHOT_LAYER - +

Unrevivable headshot overlays, suicide/execution.

HEMOSTAT_MIN_DURATION - +

OLD SURGERY DEFINES, USED BY AUTODOC

HUMAN_BLOODTYPES - +

HUMAN BLOODTYPES

HUMAN_CRIT_MAX_OXYLOSS - +

The amount of damage you'll get when in critical condition. We want this to be a 5 minute deal = 300s. There are 50HP to get through, so (1/6)*last_tick_duration per second. Breaths however only happen every 3 ticks.

HUMAN_MAX_OXYLOSS - +

Defines how much oxyloss humans can get per tick. A tile with no air at all (such as space) applies this value, otherwise it's a percentage of it.

HUMAN_MAX_PALENESS - +

this is added to human skin tone to get value of pale_max variable

HUMAN_STRIP_DELAY - +

takes 40ds = 4s to strip someone.

LIMB_AMPUTATED - +

limb was amputated cleanly or destroyed limb was cleaned up, thus causing no pain

LIMB_DESTROYED - +

limb is missing

LIMB_MUTATED - +

limb is deformed by mutations

LIMB_ORGANIC - +

LIMB FLAGS

LIMB_SPLINTED_INDESTRUCTIBLE - +

Splint is indestructible

LIMB_SYNTHSKIN - +

not completely robot, but pseudohuman

LIMB_UNCALIBRATED_PROSTHETIC - +

A prosthetic that's been attached to the body but not connected to the brain.

MEDICAL_LAYER - +

For splint and gauze overlays

TAIL_LAYER - +

bs12 specific. this hack is probably gonna come back to haunt me

TARGETED_LAYER - +

for target sprites when held at gun point, and holo cards.

WOUNDS_ALREADY_TREATED - +

Relevant wounds exist, but they're already bandaged.

WOUNDS_BANDAGED - +

Relevant wounds exist, bandaged them.

WOUND_BANDAGED - +

WOUND DEFINES

diff --git a/code/__DEFINES/job.html b/code/__DEFINES/job.html index 91c0fee2e76b..c6139c218b89 100644 --- a/code/__DEFINES/job.html +++ b/code/__DEFINES/job.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/job.dm - +

@@ -22,18 +22,18 @@

code/__DEFINES/job.dm

JOB_ERT_GRUNT_LISTFor denying certain traits being applied to people. ie. bad leg 'Grunt' lists are for people who wouldn't logically get the bad leg trait, ie. UPP marine counterparts.

Define Details

JOB_ERT_GRUNT_LIST - +

For denying certain traits being applied to people. ie. bad leg 'Grunt' lists are for people who wouldn't logically get the bad leg trait, ie. UPP marine counterparts.

JOB_OBSERVER - +

For monthly time tracking

diff --git a/code/__DEFINES/layers.html b/code/__DEFINES/layers.html index 2650371714b0..04613e8703d2 100644 --- a/code/__DEFINES/layers.html +++ b/code/__DEFINES/layers.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/layers.dm - +

@@ -71,217 +71,217 @@

code/__DEFINES/layers.dm

HUD_PLANEHUD layer defines
PLANE_MASTERS_GAMEPlane master controller keys

Define Details

ABOVE_GAME_PLANE - +

Above Game Plane. For things which are above game objects, but below screen effects.

ABOVE_LYING_MOB_LAYER - +

drone (not the xeno)

ABOVE_OBJ_LAYER - +

just above all items

ABOVE_WEED_LAYER - +

Over weeds, such as blood

ABOVE_XENO_LAYER - +

for xenos to hide behind bushes and tall grass

AREAS_LAYER - +

for areas, so they appear above everything else on map file.

ATMOS_DEVICE_LAYER - +

vents, connector ports, atmos devices that should be above pipe layer.

BALLOON_CHAT_PLANE - +

Plane for balloon text (text that fades up)

BELOW_FULLSCREEN_LAYER - +

blip from motion detector

BELOW_OBJ_LAYER - +

just below all items

BETWEEN_OBJECT_ITEM_LAYER - +

A layer above objects (like structures) but below items

BIG_XENO_LAYER - +

above ABOVE_MOB_LAYER because it's used for shallow river overlays which clips with the top of large xeno sprites.

BLACKNESS_PLANE - +

To keep from conflicts with SEE_BLACKNESS internals

CATWALK_LAYER - +

catwalk overlay of /turf/open/floor/plating/plating_catwalk

CONVEYOR_LAYER - +

conveyor belt

DOOR_CLOSED_LAYER - +

Above most items if closed

DOOR_OPEN_LAYER - +

Under all objects if opened. 2.85 due to tables being at 2.8

EMISSIVE_LAYER_UNBLOCKABLE - +

The layer you should use if you really don't want an emissive overlay to be blocked.

EMISSIVE_PLANE - +

This plane masks out lighting to create an "emissive" effect, ie for glowing lights in otherwise dark areas.

EMISSIVE_RENDER_TARGET - +

The render target used by the emissive layer.

FACEHUGGER_LAYER - +

For facehuggers

FIREDOOR_CLOSED_LAYER - +

Right under poddoors

FIREDOOR_OPEN_LAYER - +

Right under poddoors

FLOOR_PLANE - +

Floor plane, self explanatory. Used for Ambient Occlusion filter

FULLSCREEN_BLIND_LAYER - +

unconscious

FULLSCREEN_CRIT_LAYER - +

in critical

FULLSCREEN_DAMAGE_LAYER - +

red circles when hurt

FULLSCREEN_FLASH_LAYER - +

flashed

FULLSCREEN_IMPAIRED_LAYER - +

visual impairment from wearing welding helmet, etc.

FULLSCREEN_PAIN_LAYER - +

pain flashes

FULLSCREEN_VULTURE_SCOPE_LAYER - +

Vulture sniper/spotter scope

FULLSCREEN_WEATHER_LAYER - +

Weather

GAME_PLANE - +

Game Plane, where most of the game objects reside

HATCH_LAYER - +

For hatches on the floor.

HUD_PLANE - +

HUD layer defines

ITEM_LAYER - +

The layer on which items lay

LIGHTING_PLANE - +

--------------- FULLSCREEN RUNECHAT BUBBLES ------------

LOWER_ITEM_LAYER - +

for items that should be at the bottom of the pile of items

LOWEST_EVER_PLANE - +

NEVER HAVE ANYTHING BELOW THIS PLANE ADJUST IF YOU NEED MORE SPACE

PLANE_MASTERS_GAME - +

Plane master controller keys

PODDOOR_CLOSED_LAYER - +

Above doors which are at 3.1

PODDOOR_OPEN_LAYER - +

Under doors and virtually everything that's "above the floor"

POWERLOADER_LAYER - +

above windows and wall mounts so the top of the loader doesn't clip.

ROOF_PLANE - +

Roof plane, disappearing when entering buildings

RUNECHAT_PLANE - +

Popup Chat Messages

TYPING_LAYER - +

Bubble for typing indicators

UNDERFLOOR_OBJ_LAYER - +

bluespace beacon, navigation beacon, etc

UPPER_ITEM_LAYER - +

for items that should be at the top of the pile of items

WALL_OBJ_LAYER - +

posters on walls

WEATHER_LAYER - +

For WEATHER

WEED_LAYER - +

Alien weeds and node layer

WINDOW_LAYER - +

above closed doors

diff --git a/code/__DEFINES/lighting.html b/code/__DEFINES/lighting.html index abdfee90aeaa..bfa9aef7f4a2 100644 --- a/code/__DEFINES/lighting.html +++ b/code/__DEFINES/lighting.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/lighting.dm - +

@@ -37,85 +37,85 @@

code/__DEFINES/lighting.dm

PARSE_LIGHT_COLORParse the hexadecimal color into lumcounts of each perspective.
LIGHTING_SOFT_THRESHOLDIf the max of the lighting lumcounts of each spectrum drops below this, disable luminosity on the lighting objects. Set to zero to disable soft lighting. Luminosity changes then work if it's lit at all.

Define Details

DIRECTIONAL_LIGHT - +

Pointy light

EMISSIVE_APPEARANCE_FLAGS - +

A set of appearance flags applied to all emissive and emissive blocker overlays.

EMISSIVE_BLOCK_GENERIC - +

Uses vis_overlays to leverage caching so that very few new items need to be made for the overlay. For anything that doesn't change outline or opaque area much or at all.

EMISSIVE_BLOCK_UNIQUE - +

Uses a dedicated render_target object to copy the entire appearance in real time to the blocking layer. For things that can change in appearance a lot from the base state, like humans.

EMISSIVE_COLOR - +

The color matrix applied to all emissive overlays. Should be solely dependent on alpha and not have RGB overlap with EM_BLOCK_COLOR.

EM_BLOCK_COLOR - +

The color matrix applied to all emissive blockers. Should be solely dependent on alpha and not have RGB overlap with EMISSIVE_COLOR.

EM_MASK_MATRIX - +

The color matrix used to mask out emissive blockers on the emissive plane. Alpha should default to zero, be solely dependent on the RGB value of EMISSIVE_COLOR, and be independent of the RGB value of EM_BLOCK_COLOR.

GETBLUEPART - +

Returns the blue part of a #RRGGBB hex sequence as number

GETGREENPART - +

Returns the green part of a #RRGGBB hex sequence as number

GETREDPART - +

Returns the red part of a #RRGGBB hex sequence as number

HYBRID_LIGHT - +

A mix of the above, cheaper on moving items than dynamic, but heavier on rendering than movable

LIGHTING_ICON_BIG - +

icon used for lighting shading effects

LIGHTING_PLANE_ALPHA_YAUTJA - +

The dim natural vision of Yautja

LIGHTING_SOFT_THRESHOLD - +

If the max of the lighting lumcounts of each spectrum drops below this, disable luminosity on the lighting objects. Set to zero to disable soft lighting. Luminosity changes then work if it's lit at all.

MOVABLE_LIGHT - +

Light made by masking the lighting darkness plane.

NO_LIGHT_SUPPORT - +

Object doesn't use any of the light systems. Should be changed to add a light source to the object.

PARSE_LIGHT_COLOR - +

Parse the hexadecimal color into lumcounts of each perspective.

STATIC_LIGHT - +

Light made with the lighting datums, applying a matrix.

diff --git a/code/__DEFINES/maps.html b/code/__DEFINES/maps.html index c6f86c0ec76d..41a3566a5941 100644 --- a/code/__DEFINES/maps.html +++ b/code/__DEFINES/maps.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/maps.dm - +

@@ -28,42 +28,42 @@

code/__DEFINES/maps.dm

PLACEMENT_TRIESHow many times we try to fit the ruin somewhere until giving up (really should just swap to some packing algo)
SPACE_KEYA map key that corresponds to being one exclusively for Space.

Define Details

CROSSLINKED - +

CROSSLINKED - mixed in with the cross-linked space pool

PLACEMENT_TRIES - +

How many times we try to fit the ruin somewhere until giving up (really should just swap to some packing algo)

RESERVED_TURF_TYPE - +

Reserved/Transit turf type What the turf is when not being used

SELFLOOPING - +

SELFLOOPING - space transitions always self-loop

SPACE_KEY - +

A map key that corresponds to being one exclusively for Space.

UNAFFECTED - +

UNAFFECTED if absent - no space transitions

ZTRAIT_BOMBCAP_MULTIPLIER - +

number - bombcap is multiplied by this before being applied to bombs

ZTRAIT_GRAVITY - +

number - default gravity if there's no gravity generators or area overrides present

diff --git a/code/__DEFINES/math_physics.html b/code/__DEFINES/math_physics.html index b89e3fbc0720..7da1135b55f9 100644 --- a/code/__DEFINES/math_physics.html +++ b/code/__DEFINES/math_physics.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/math_physics.dm - +

GAS_CRITICAL_TEMPERATUREK. The critical point temperature for air.

Define Details

GAS_CRITICAL_TEMPERATURE - +

K. The critical point temperature for air.

diff --git a/code/__DEFINES/minimap.html b/code/__DEFINES/minimap.html index 07ffd9de2b11..4205f6e93ff8 100644 --- a/code/__DEFINES/minimap.html +++ b/code/__DEFINES/minimap.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/minimap.dm - +

MINIMAP_SCALEConverts the overworld x and y to minimap x and y values

Define Details

MINIMAP_SCALE - +

Converts the overworld x and y to minimap x and y values

diff --git a/code/__DEFINES/misc.html b/code/__DEFINES/misc.html index 1f5e6e269eb3..2f2d8882042c 100644 --- a/code/__DEFINES/misc.html +++ b/code/__DEFINES/misc.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/misc.dm - +

@@ -42,103 +42,103 @@

code/__DEFINES/misc.dm

get_areaGet the ultimate area of A, similarly to get_turf.
COOLDOWN_BRACER_CHARGECooldown for pred recharge

Define Details

AREA_ALLOW_XENO_JOIN - +

xenos can join whilst in this area (for admin zlevel)

AREA_AVOID_BIOSCAN - +

used to make mobs skip bioscans

AREA_CONTAINMENT - +

Flags the area as a containment area

AREA_NOTUNNEL - +

makes it so the area can not be tunneled to

AREA_UNWEEDABLE - +

Flags the area as permanently unweedable. Still requires is_resin_allowed = FALSE

BEHAVIOR_IMMOBILE - +

You cannot move the person while this action is being performed

CELLS - +

Amount of cells per row/column in grid

CELLSIZE - +

Size of a cell in pixel

COOLDOWN_BRACER_CHARGE - +

Cooldown for pred recharge

DA_DEFAULT_NUM_TICKS - +

Default number of ticks for do_after

INTERRUPT_DIFF_INTENT - +

By default not in INTERRUPT_ALL (too niche) (Doesn't actually exist.)

INTERRUPT_DIFF_SELECT_ZONE - +

By default not in INTERRUPT_ALL (too niche)

INTERRUPT_DIFF_TURF - +

Might want to consider adding a separate flag for DIFF_COORDS

INTERRUPT_LCLICK - +

Mainly for boiler globs

INTERRUPT_OUT_OF_RANGE - +

By default not in INTERRUPT_ALL, should not be used in conjunction with INTERRUPT_DIFF_TURF

INTERRUPT_RESIST - +

Allows timed actions to be cancelled upon hitting resist, on by default

INTERRUPT_UNCONSCIOUS - +

Relevant to stat var for mobs

SIZE_HUGE - +

Using Large does the same job

SIZE_LARGE - +

Size of rifles, SMGs

SIZE_MEDIUM - +

Backpacks, belts. Size of pistols, general magazines

SIZE_SMALL - +

Armor, pouch slots/pockets

SIZE_TINY - +

Helmets

get_area - +

Get the ultimate area of A, similarly to get_turf.

Use instead of A.loc.loc.

diff --git a/code/__DEFINES/mobs.html b/code/__DEFINES/mobs.html index 9b4c775d8daf..cb8de6aaf885 100644 --- a/code/__DEFINES/mobs.html +++ b/code/__DEFINES/mobs.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/mobs.dm - +

@@ -27,41 +27,41 @@

code/__DEFINES/mobs.dm

MOBILITY_RESTcan rest
MOBILITY_LIEDOWNcan lie down

Define Details

GLOBAL_STATUS_MULTIPLIER - +

Multiplier for Stun/KD/KO/etc durations in new backend, due to old system being based on life ticks

LYING_DOWN - +

Mob is lying down, usually associated with lying_angle values of 90 or 270.

MOBILITY_LIEDOWN - +

can lie down

MOBILITY_MOVE - +

can move

MOBILITY_REST - +

can rest

MOBILITY_STAND - +

can, and is, standing up

NO_BUCKLE_LYING - +

Possible value of /atom/movable/buckle_lying. If set to a different (positive-or-zero) value than this, the buckling thing will force a lying angle on the buckled.

STANDING_UP - +

Mob is standing up, usually associated with lying_angle value of 0.

diff --git a/code/__DEFINES/mode.html b/code/__DEFINES/mode.html index 46514b60ced4..792f4726a938 100644 --- a/code/__DEFINES/mode.html +++ b/code/__DEFINES/mode.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/mode.dm - +

@@ -37,81 +37,81 @@

code/__DEFINES/mode.dm

WHITELIST_MENTORSenior Enlisted Advisor, auto granted by R_MENTOR
APC_SCORE_INTERVALMisc. defines for objectives

Define Details

APC_SCORE_INTERVAL - +

Misc. defines for objectives

MARINE_GEAR_SCALING_NORMAL - +

Number of weighted marine players for 1 gear_scale. gear_scale is clamped to 1 minimum

MODE_BLOOD_OPTIMIZATION - +

Blood spawns without a dry timer, and do not cause footprints

MODE_HARDCORE_PERMA - +

Toggles Hardcore for all marines, meaning they instantly perma upon death

MODE_LZ_PROTECTION - +

Prevents the LZ from being mortared

MODE_NO_ATTACK_DEAD - +

People will not be able to shoot at corpses

MODE_NO_COMBAT_CAS - +

Prevents POs and DCCs from creating combat CAS equipment

MODE_NO_SNIPER_SENTRY - +

Upgrade kits will no longer allow you to select long-range upgrades

MODE_NO_STRIPDRAG_ENEMY - +

Can't strip or drag dead enemies

MODE_SHIPSIDE_SD - +

Toggles whether Predators can big SD when not on the groundmap

MODE_STRIP_NONUNIFORM_ENEMY - +

Can strip enemy, but not their boots, uniform, armor, helmet, or ID

MODE_STRONG_DEFIBS - +

Defibs Ignore Armor

WHITELIST_COMMANDER_COLONEL - +

Former CO senator/whitelist overseer award

WHITELIST_COMMANDER_COUNCIL_LEGACY - +

Old holders of COMMANDER_COUNCIL for 3 months

WHITELIST_MENTOR - +

Senior Enlisted Advisor, auto granted by R_MENTOR

WHITELIST_SYNTHETIC_COUNCIL_LEGACY - +

Old holders of SYNTHETIC_COUNCIL for 3 months

WHITELIST_YAUTJA_COUNCIL_LEGACY - +

Old holders of YAUTJA_COUNCIL for 3 months

WHITELIST_YAUTJA_LEGACY - +

Old holders of YAUTJA_ELDER

diff --git a/code/__DEFINES/nightmare.html b/code/__DEFINES/nightmare.html index f967a9f94d8c..c2e4c83d3c34 100644 --- a/code/__DEFINES/nightmare.html +++ b/code/__DEFINES/nightmare.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/nightmare.dm - +

@@ -24,29 +24,29 @@

code/__DEFINES/nightmare.dm

NIGHTMARE_TASKFLAG_DISABLEDThis task can not be executed
NIGHTMARE_TASKFLAG_ONESHOTThis task can only be executed once

Define Details

NIGHTMARE_CTX_GLOBAL - +

Global Nightmare context: Performs any global game setup

NIGHTMARE_CTX_GROUND - +

Ground Map Context: Performs actions relevant to the ground map

NIGHTMARE_CTX_SHIP - +

Ship Map Context: Performs actions relevant to the ship map

NIGHTMARE_TASKFLAG_DISABLED - +

This task can not be executed

NIGHTMARE_TASKFLAG_ONESHOT - +

This task can only be executed once

diff --git a/code/__DEFINES/objects.html b/code/__DEFINES/objects.html index 9a05be3f1d40..aba0a13649cd 100644 --- a/code/__DEFINES/objects.html +++ b/code/__DEFINES/objects.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/objects.dm - +

@@ -25,33 +25,33 @@

code/__DEFINES/objects.dm

OBJ_IS_HELMET_GARBMarks the object as helmet garb
OBJ_UNIQUE_RENAMEcan you customize the description/name of the thing?

Define Details

INGEST - +

Reaction type from eating it

OBJ_IS_HELMET_GARB - +

Marks the object as helmet garb

OBJ_NO_HELMET_BAND - +

Makes the item not spawn a band around the helmet if it's used as a helmet garb

OBJ_ORGANIC - +

Marks an object as organic. Used for alien structures and any other organic material

OBJ_UNIQUE_RENAME - +

can you customize the description/name of the thing?

TOUCH - +

Reaction type from touching it

diff --git a/code/__DEFINES/paygrade_defs/civilian.html b/code/__DEFINES/paygrade_defs/civilian.html index a0adaa304d4d..9e1b11f15e34 100644 --- a/code/__DEFINES/paygrade_defs/civilian.html +++ b/code/__DEFINES/paygrade_defs/civilian.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/civilian.dm - +

@@ -31,57 +31,57 @@

code/__DEFINES/paygrade_defs/civilian.dm

PAY_SHORT_REBREB, Rebel
PAY_SHORT_REBCREBC, Rebel Commander "REBC"

Define Details

PAY_SHORT_CCMO - +

CCMO, Professor

PAY_SHORT_CDNM - +

CDNM, Operative (intended for codenamed people IE Operative Theta)

PAY_SHORT_CDOC - +

CDOC, Doctor

PAY_SHORT_CIV - +

CIV, Civilian

PAY_SHORT_CNUR - +

CNUR, Nurse

PAY_SHORT_CPO - +

CPO, Officer

PAY_SHORT_CREP - +

CREP, Representative

PAY_SHORT_CSPO - +

CSPO, Senior Officer

PAY_SHORT_OPR - +

OPR, Operator

PAY_SHORT_REB - +

REB, Rebel

PAY_SHORT_REBC - +

REBC, Rebel Commander "REBC"

PAY_SHORT_SYN - +

SYN, Synthetic

diff --git a/code/__DEFINES/paygrade_defs/cmb.html b/code/__DEFINES/paygrade_defs/cmb.html index a33ea717a30e..23bfa850601a 100644 --- a/code/__DEFINES/paygrade_defs/cmb.html +++ b/code/__DEFINES/paygrade_defs/cmb.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/cmb.dm - +

@@ -25,33 +25,33 @@

code/__DEFINES/paygrade_defs/cmb.dm

PAY_SHORT_CMBDCMBD, CMB Deputy
PAY_SHORT_CMBSCMBS, CMB Synthetic

Define Details

PAY_SHORT_CMBD - +

CMBD, CMB Deputy

PAY_SHORT_CMBM - +

CMBM, CMB Marshal

PAY_SHORT_CMBS - +

CMBS, CMB Synthetic

PAY_SHORT_ICCA - +

ICCA, Interstellar Commerce Commission Agent

PAY_SHORT_ICCL - +

ICCL, Interstellar Commerce Commission Corporate Liaison

PAY_SHORT_IHRO - +

IHRO, Interstellar Human Rights Observer

diff --git a/code/__DEFINES/paygrade_defs/dutch.html b/code/__DEFINES/paygrade_defs/dutch.html index d0f4fc6963ab..a278a8150b91 100644 --- a/code/__DEFINES/paygrade_defs/dutch.html +++ b/code/__DEFINES/paygrade_defs/dutch.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/dutch.dm - +

@@ -24,29 +24,29 @@

code/__DEFINES/paygrade_defs/dutch.dm

PAY_SHORT_DTCMGDTCMG, Dutch's Dozen Machinegunner
PAY_SHORT_DTCADTCA, Arnold

Define Details

PAY_SHORT_DTC - +

DTC, Dutch's Dozen Standard Mercenary

PAY_SHORT_DTCA - +

DTCA, Arnold

PAY_SHORT_DTCF - +

DTCF, Dutch's Dozen Flamethrower Specialist

PAY_SHORT_DTCM - +

DTCM, Dutch's Dozen Medic

PAY_SHORT_DTCMG - +

DTCMG, Dutch's Dozen Machinegunner

diff --git a/code/__DEFINES/paygrade_defs/marines.html b/code/__DEFINES/paygrade_defs/marines.html index fc4153229e23..0f4e8dbc558e 100644 --- a/code/__DEFINES/paygrade_defs/marines.html +++ b/code/__DEFINES/paygrade_defs/marines.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/marines.dm - +

@@ -45,113 +45,113 @@

code/__DEFINES/paygrade_defs/marines.dm

PAY_SHORT_MO10CMO10C, Assistant Commandant of the Marine Corps
PAY_SHORT_MO10SMO10S, Commandant of the Marine Corps

Define Details

PAY_SHORT_ME1 - +

ME1, Private

PAY_SHORT_ME2 - +

ME2, Private First Class

PAY_SHORT_ME3 - +

ME3, Lance Corporal

PAY_SHORT_ME4 - +

ME4, Corporal

PAY_SHORT_ME5 - +

ME5, Sergeant

PAY_SHORT_ME6 - +

ME6, Staff Sergeant

PAY_SHORT_ME7 - +

ME7, Gunnery Sergeant

PAY_SHORT_ME8 - +

ME8, Master Sergeant

PAY_SHORT_ME8E - +

ME8E, First Sergeant

PAY_SHORT_ME9 - +

ME9, Master Gunnery Sergeant

PAY_SHORT_ME9C - +

ME9C, Sergeant Major of the Colonial Marine Corps

PAY_SHORT_ME9E - +

ME9E, Sergeant Major

PAY_SHORT_MO1 - +

MO1, Second Lieutenant

PAY_SHORT_MO10 - +

MO10, General

PAY_SHORT_MO10C - +

MO10C, Assistant Commandant of the Marine Corps

PAY_SHORT_MO10S - +

MO10S, Commandant of the Marine Corps

PAY_SHORT_MO2 - +

MO2, First Lieutenant

PAY_SHORT_MO3 - +

MO3, Captain

PAY_SHORT_MO4 - +

MO4, Major

PAY_SHORT_MO5 - +

MO5, Lieutenant Colonel

PAY_SHORT_MO6 - +

MO6, Colonel

PAY_SHORT_MO6C - +

MO6C, Division Colonel

PAY_SHORT_MO6E - +

MO6E, Senior Colonel

PAY_SHORT_MO7 - +

MO7, Brigadier General

PAY_SHORT_MO8 - +

MO8, Major General

PAY_SHORT_MO9 - +

MO9, Lieutenant General

diff --git a/code/__DEFINES/paygrade_defs/mercs.html b/code/__DEFINES/paygrade_defs/mercs.html index 8b09be21f42b..3f362d37b3fc 100644 --- a/code/__DEFINES/paygrade_defs/mercs.html +++ b/code/__DEFINES/paygrade_defs/mercs.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/mercs.dm - +

@@ -33,65 +33,65 @@

code/__DEFINES/paygrade_defs/mercs.dm

PAY_SHORT_VAI_SNVAI-SN, Synthetic
PAY_SHORT_VAI_LVAI-L, Team Leader

Define Details

PAY_SHORT_EFL_E - +

EFL-E, Elite Engineer

PAY_SHORT_EFL_H - +

EFL-H, Elite Heavy

PAY_SHORT_EFL_M - +

EFL-M, Elite Medic

PAY_SHORT_EFL_S - +

EFL-S, Elite Standard

PAY_SHORT_EFL_TL - +

EFL-WL, Elite Warlord

PAY_SHORT_FL_M - +

FL-M, Medic

PAY_SHORT_FL_S - +

FL-S, Standard

PAY_SHORT_FL_WL - +

FL-WL, Warlord

PAY_SHORT_VAI_E - +

VAI-E, Engineer

PAY_SHORT_VAI_G - +

VAI-G, Machinegunner

PAY_SHORT_VAI_L - +

VAI-L, Team Leader

PAY_SHORT_VAI_M - +

VAI-M, Medic

PAY_SHORT_VAI_S - +

VAI-S, Standard

PAY_SHORT_VAI_SN - +

VAI-SN, Synthetic

diff --git a/code/__DEFINES/paygrade_defs/navy.html b/code/__DEFINES/paygrade_defs/navy.html index 48c98aef6a8a..8fcd4e12c18f 100644 --- a/code/__DEFINES/paygrade_defs/navy.html +++ b/code/__DEFINES/paygrade_defs/navy.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/navy.dm - +

@@ -43,105 +43,105 @@

code/__DEFINES/paygrade_defs/navy.dm

PAY_SHORT_NO10NO10, Admiral
PAY_SHORT_NO10CNO10C, Chief of Naval Operations

Define Details

PAY_SHORT_NE1 - +

NE1, Seaman Recruit

PAY_SHORT_NE2 - +

NE2M, Seaman Apprentice

PAY_SHORT_NE3 - +

NE3, Seaman

PAY_SHORT_NE4 - +

NE4, Petty Officer 3rd Class

PAY_SHORT_NE5 - +

NE5, Petty Officer 2nd Class

PAY_SHORT_NE6 - +

NE6, Petty Officer 1st Class

PAY_SHORT_NE7 - +

NE7, Chief Petty Officer

PAY_SHORT_NE8 - +

NE8, Senior Chief Petty Officer

PAY_SHORT_NE8C - +

NE8C, Command Senior Chief Petty Officer

PAY_SHORT_NE9 - +

NE9, Master Chief Petty Officer

PAY_SHORT_NE9C - +

NE9C, Command Master Chief Petty Officer

PAY_SHORT_NO1 - +

NO1, Ensign

PAY_SHORT_NO10 - +

NO10, Admiral

PAY_SHORT_NO10C - +

NO10C, Chief of Naval Operations

PAY_SHORT_NO2 - +

NO2, Lieutenant Junior Grade

PAY_SHORT_NO3 - +

NO3, Lieutenant

PAY_SHORT_NO4 - +

NO4, Lieutenant Commander

PAY_SHORT_NO5 - +

NO5, Commander

PAY_SHORT_NO6 - +

NO6, Captain

PAY_SHORT_NO6C - +

NO6C, Senior Commodore

PAY_SHORT_NO6E - +

NO6E, Commodore

PAY_SHORT_NO7 - +

NO7, Rear Admiral (Lower Half)

PAY_SHORT_NO8 - +

NO8, Rear Admiral (Upper Half)

PAY_SHORT_NO9 - +

NO9, Vice Admiral

diff --git a/code/__DEFINES/paygrade_defs/paygrade.html b/code/__DEFINES/paygrade_defs/paygrade.html index 194373a85d73..acaaee1871a4 100644 --- a/code/__DEFINES/paygrade_defs/paygrade.html +++ b/code/__DEFINES/paygrade_defs/paygrade.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/paygrade.dm - +

@@ -22,21 +22,21 @@

code/__DEFINES/paygrade_defs/paygrade.dm

GRADE_OFFICERPaygrade is equivalent to or is an officer.
GRADE_FLAGPaygrade is for high command or senior leadership. Military flag officers.

Define Details

GRADE_ENLISTED - +

Paygrade is equivalent to or is an enlisted position.

GRADE_FLAG - +

Paygrade is for high command or senior leadership. Military flag officers.

GRADE_OFFICER - +

Paygrade is equivalent to or is an officer.

diff --git a/code/__DEFINES/paygrade_defs/provost.html b/code/__DEFINES/paygrade_defs/provost.html index e99ff7a2d2f7..363daebed0b9 100644 --- a/code/__DEFINES/paygrade_defs/provost.html +++ b/code/__DEFINES/paygrade_defs/provost.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/provost.dm - +

@@ -26,37 +26,37 @@

code/__DEFINES/paygrade_defs/provost.dm

PAY_SHORT_PVSMPvSM, Provost Sector Marshal
PAY_SHORT_PVCMPvCM, Provost Chief Marshal

Define Details

PAY_SHORT_PVA - +

PvI, Provost Advisor

PAY_SHORT_PVCI - +

PvCI, Provost Chief Inspector

PAY_SHORT_PVCM - +

PvCM, Provost Chief Marshal

PAY_SHORT_PVDM - +

PvDM, Provost Deputy Marshal

PAY_SHORT_PVI - +

PvI, Provost Inspector

PAY_SHORT_PVM - +

PvM, Provost Marshal

PAY_SHORT_PVSM - +

PvSM, Provost Sector Marshal

diff --git a/code/__DEFINES/paygrade_defs/twe.html b/code/__DEFINES/paygrade_defs/twe.html index bde546ebcb7d..d7f299434236 100644 --- a/code/__DEFINES/paygrade_defs/twe.html +++ b/code/__DEFINES/paygrade_defs/twe.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/twe.dm - +

@@ -31,57 +31,57 @@

code/__DEFINES/paygrade_defs/twe.dm

PAY_SHORT_RNO6RNO6, Grand Admiral
PAY_SHORT_EMPEMP, Emperor

Define Details

PAY_SHORT_EMP - +

EMP, Emperor

PAY_SHORT_RMC1 - +

RMC1, Heitai-Marine

PAY_SHORT_RMC2 - +

RMC2, Santo-Lance Corporal

PAY_SHORT_RMC3 - +

RMC3, Nito-Corporal

PAY_SHORT_RMC4 - +

RMC4, Itto-Sergeant

PAY_SHORT_RNO1 - +

RNO1, Second Lieutenant

PAY_SHORT_RNO2 - +

RNO2, First Lieutenant

PAY_SHORT_RNO3 - +

RNO3, Standing Officer

PAY_SHORT_RNO4 - +

RNO4, Captain

PAY_SHORT_RNO5 - +

RNO5, Admiral

PAY_SHORT_RNO6 - +

RNO6, Grand Admiral

PAY_SHORT_RNOW - +

RNOW, Warrant Officer

diff --git a/code/__DEFINES/paygrade_defs/upp.html b/code/__DEFINES/paygrade_defs/upp.html index 9ea1afc002f3..a110d40f8929 100644 --- a/code/__DEFINES/paygrade_defs/upp.html +++ b/code/__DEFINES/paygrade_defs/upp.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/upp.dm - +

@@ -39,89 +39,89 @@

code/__DEFINES/paygrade_defs/upp.dm

PAY_SHORT_UO8UO8, Leytenant General
PAY_SHORT_UO9UO9, Army General

Define Details

PAY_SHORT_UC1 - +

UC1, Junior Kommando

PAY_SHORT_UC2 - +

UC2, 2nd Kommando

PAY_SHORT_UC3 - +

UC3, 1st Kommando

PAY_SHORT_UE1 - +

UE1, Private

PAY_SHORT_UE2 - +

UE2, Private First Class

PAY_SHORT_UE3 - +

UE3, Korporal

PAY_SHORT_UE4 - +

UE4, unior Serzhant

PAY_SHORT_UE5 - +

UE5, Serzhant

PAY_SHORT_UE6 - +

UE6, Master Serzhant

PAY_SHORT_UEC - +

UE,

PAY_SHORT_UO1 - +

UO1, Leytenant

PAY_SHORT_UO2 - +

UO2, Senior Leytenant

PAY_SHORT_UO3 - +

UO3, Kapitan

PAY_SHORT_UO4 - +

UO4, Mayjor

PAY_SHORT_UO4P - +

UO4P, Political Commissar

PAY_SHORT_UO5 - +

UO5, Leytenant Kolonel

PAY_SHORT_UO6 - +

UO6, Kolonel

PAY_SHORT_UO7 - +

UO7, Mayjor General

PAY_SHORT_UO8 - +

UO8, Leytenant General

PAY_SHORT_UO9 - +

UO9, Army General

diff --git a/code/__DEFINES/paygrade_defs/weyland.html b/code/__DEFINES/paygrade_defs/weyland.html index c6d4adce0d67..18cf763fc855 100644 --- a/code/__DEFINES/paygrade_defs/weyland.html +++ b/code/__DEFINES/paygrade_defs/weyland.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/paygrade_defs/weyland.dm - +

@@ -44,109 +44,109 @@

code/__DEFINES/paygrade_defs/weyland.dm

PAY_SHORT_PMC_ETLPMC-ETL, Elite Team Leader
PAY_SHORT_PMC_DIRPMC-DIR, PMC Director

Define Details

PAY_SHORT_PMC_DIR - +

PMC-DIR, PMC Director

PAY_SHORT_PMC_DOC - +

PMC-DOC, Trauma Surgeon

PAY_SHORT_PMC_ELG - +

PMC-ELG, Elite Gunner

PAY_SHORT_PMC_ELM - +

PMC-ELM, Elite Medic

PAY_SHORT_PMC_ELR - +

PMC-ELR, Elite Responder

PAY_SHORT_PMC_EN - +

PMC-EN, Enforcer

PAY_SHORT_PMC_ETL - +

PMC-ETL, Elite Team Leader

PAY_SHORT_PMC_MS - +

PMC-MS, Medical Specialist

PAY_SHORT_PMC_OP - +

PMC-OP, Operator, standard PMC.

PAY_SHORT_PMC_SS - +

PMC-SS, Support Specialist

PAY_SHORT_PMC_TEC - +

PMC-ENG, Technician

PAY_SHORT_PMC_TL - +

PMC-TL, Team Leader

PAY_SHORT_PMC_VS - +

PMC-VS, Vehicle Specialist

PAY_SHORT_PMC_WS - +

PMC-WS, Weapons Specialist

PAY_SHORT_PMC_XS - +

PMC-XS, Xeno Specialist (Handler)

PAY_SHORT_WYC1 - +

WYC1, Trainee

PAY_SHORT_WYC10 - +

WYC10, Director

PAY_SHORT_WYC2 - +

WYC2, Junior Executive

PAY_SHORT_WYC3 - +

WYC3, Executive

PAY_SHORT_WYC4 - +

WYC4, Senior Executive

PAY_SHORT_WYC5 - +

WYC5, Executive Specialist

PAY_SHORT_WYC6 - +

WYC6, Executive Supervisor

PAY_SHORT_WYC7 - +

WYC7, Assistant Manager

PAY_SHORT_WYC8 - +

WYC8, Division Manager

PAY_SHORT_WYC9 - +

WYC9, Chief Executive

diff --git a/code/__DEFINES/procpath.html b/code/__DEFINES/procpath.html index b74e69e50fb8..386f4feffe51 100644 --- a/code/__DEFINES/procpath.html +++ b/code/__DEFINES/procpath.html @@ -14,14 +14,14 @@

code/__DEFINES/procpath.dm - +

/procpathRepresents a proc or verb path.
diff --git a/code/__DEFINES/qdel.html b/code/__DEFINES/qdel.html index a2f19b8a7ee1..309bab1b9828 100644 --- a/code/__DEFINES/qdel.html +++ b/code/__DEFINES/qdel.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/qdel.dm - +

@@ -35,65 +35,65 @@

code/__DEFINES/qdel.dm

QDEL_ITEM_ADMINS_WARNEDSet when admins are told about lag causing qdels in this type.
QDEL_ITEM_SUSPENDED_FOR_LAGSet when a type can no longer be hard deleted on failure because of lag it causes while this happens.

Define Details

GC_QUEUE_CHECK - +

main queue that waits 5 minutes because thats the longest byond can hold a reference to our shit.

GC_QUEUE_COUNT - +

Number of queues, used for allocating the nested lists. Don't forget to increase this if you add a new queue stage

GC_QUEUE_FILTER - +

short queue to filter out quick gc successes so they don't hang around in the main queue for 5 minutes

GC_QUEUE_HARDDELETE - +

short queue for things that hard delete instead of going thru the gc subsystem, this is purely so if they can softdelete, they will soft delete rather then wasting time with a hard delete.

GC_QUEUE_ITEM_GCD_DESTROYED - +

Item's gc_destroyed var value. Used to detect ref reuse.

GC_QUEUE_ITEM_INDEX_COUNT - +

Number of item indexes, used for allocating the nested lists. Don't forget to increase this if you add a new queue item index

GC_QUEUE_ITEM_QUEUE_TIME - +

Time this item entered the queue

GC_QUEUE_ITEM_REF - +

Ref to the item

QDEL_HINT_HARDDEL - +

Qdel should assume this object won't GC, and queue a hard delete using a hard reference.

QDEL_HINT_IWILLGC - +

Functionally the same as the above. qdel should assume the object will gc on its own, and not check it.

QDEL_HINT_LETMELIVE - +

qdel should let the object live after calling [/atom/proc/Destroy].

QDEL_HINT_QUEUE - +

qdel should queue the object for deletion.

QDEL_ITEM_ADMINS_WARNED - +

Set when admins are told about lag causing qdels in this type.

QDEL_ITEM_SUSPENDED_FOR_LAG - +

Set when a type can no longer be hard deleted on failure because of lag it causes while this happens.

diff --git a/code/__DEFINES/shuttles.html b/code/__DEFINES/shuttles.html index 8e286c0e42d9..fcbf4b0700bc 100644 --- a/code/__DEFINES/shuttles.html +++ b/code/__DEFINES/shuttles.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/shuttles.dm - +

GAMEMODE_IMMUNEshuttle is immune to gamemode timer restrictions

Define Details

GAMEMODE_IMMUNE - +

shuttle is immune to gamemode timer restrictions

diff --git a/code/__DEFINES/skills.html b/code/__DEFINES/skills.html index fe51aa46c07a..ebd8639ae45c 100644 --- a/code/__DEFINES/skills.html +++ b/code/__DEFINES/skills.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/skills.dm - +

@@ -29,49 +29,49 @@

code/__DEFINES/skills.dm

SKILL_SPEC_UPPUPP special training
SKILL_SPEC_ALLCan use ALL specialist weapons

Define Details

SKILL_SPEC_ALL - +

Can use ALL specialist weapons

SKILL_SPEC_GRENADIER - +

Can use the rotary grenade launcher and heavy armor

SKILL_SPEC_KITTED - +

Is trained to use specialist gear & HAS picked a kit. (Functionally same as SPEC_ROCKET)

SKILL_SPEC_PYRO - +

Can use heavy flamers

SKILL_SPEC_ROCKET - +

Can use RPG

SKILL_SPEC_SCOUT - +

Can use thermal cloaks and custom M4RA rifle

SKILL_SPEC_SMARTGUN - +

Can use smartguns

SKILL_SPEC_SNIPER - +

Can use sniper rifles and camo suits

SKILL_SPEC_TRAINED - +

Is trained to use specialist gear, but hasn't picked a kit.

SKILL_SPEC_UPP - +

UPP special training

diff --git a/code/__DEFINES/status_effects.html b/code/__DEFINES/status_effects.html index 754baa047c3f..8a2618957126 100644 --- a/code/__DEFINES/status_effects.html +++ b/code/__DEFINES/status_effects.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/status_effects.dm - +

@@ -30,50 +30,50 @@

code/__DEFINES/status_effects.dm

IGNORE_GRABIf the incapacitated status effect will ignore a mob being agressively grabbed
STATUS_EFFECT_TIME_THRESHOLDTime threshold after which we launch ending timer - this should be higher than the slowest processing rate

Define Details

IGNORE_GRAB - +

If the incapacitated status effect will ignore a mob being agressively grabbed

IGNORE_RESTRAINTS - +

If the incapacitated status effect will ignore a mob in restraints (handcuffs)

IGNORE_STASIS - +

If the incapacitated status effect will ignore a mob in stasis (stasis beds)

STATUS_EFFECT_FAST_PROCESS - +

Processing flags - used to define the speed at which the status will work This is fast - 0.2s between ticks (I believe!)

STATUS_EFFECT_MULTIPLE - +

if it allows multiple instances of the effect

STATUS_EFFECT_NORMAL_PROCESS - +

This is slower and better for more intensive status effects - 1s between ticks

STATUS_EFFECT_REFRESH - +

if it only allows one, and new instances just instead refresh the timer

STATUS_EFFECT_REPLACE - +

if it allows only one, but new instances replace

STATUS_EFFECT_TIME_THRESHOLD - +

Time threshold after which we launch ending timer - this should be higher than the slowest processing rate

STATUS_EFFECT_UNIQUE - +

if it allows only one, preventing new instances

diff --git a/code/__DEFINES/strippable.html b/code/__DEFINES/strippable.html index 415352437d4e..d72b9ff98954 100644 --- a/code/__DEFINES/strippable.html +++ b/code/__DEFINES/strippable.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/strippable.dm - +

@@ -22,21 +22,21 @@

code/__DEFINES/strippable.dm

STRIPPABLE_OBSCURING_COMPLETELYThis slot is completely obscured, and cannot be accessed.
STRIPPABLE_OBSCURING_HIDDENThis slot can't be seen, but can be accessed.

Define Details

STRIPPABLE_OBSCURING_COMPLETELY - +

This slot is completely obscured, and cannot be accessed.

STRIPPABLE_OBSCURING_HIDDEN - +

This slot can't be seen, but can be accessed.

STRIPPABLE_OBSCURING_NONE - +

This slot is not obscured.

diff --git a/code/__DEFINES/subsystems.html b/code/__DEFINES/subsystems.html index 44f77c264690..b37d2ace9857 100644 --- a/code/__DEFINES/subsystems.html +++ b/code/__DEFINES/subsystems.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/subsystems.dm - +

@@ -57,129 +57,129 @@

code/__DEFINES/subsystems.dm

addtimerCreate a new timer and add it to the queue.
SS_INIT_TIMER_KEYThe timer key used to know how long subsystem initialization takes

Define Details

GAME_STATE_FINISHED - +

Game has round finished

GAME_STATE_PLAYING - +

Game has round in progress

GAME_STATE_PREGAME - +

Game is loaded and in pregame lobby

GAME_STATE_SETTING_UP - +

Game is attempting to start the round

GAME_STATE_STARTUP - +

Game is loading

INITIALIZATION_INNEW_MAPLOAD - +

New should call Initialize(TRUE)

INITIALIZATION_INNEW_REGULAR - +

New should call Initialize(FALSE)

INITIALIZATION_INSSATOMS - +

New should not call Initialize

INITIALIZE_HINT_LATELOAD - +

call LateInitialize at the end of all atom Initalization

The item will be added to the late_loaders list, this is iterated over after initalization of subsystems is complete and calls LateInitalize on the atom see this file for the LateIntialize proc

INITIALIZE_HINT_NORMAL - +

Nothing happens

INITIALIZE_HINT_QDEL - +

Call qdel on the atom after intialization

INITIALIZE_HINT_ROUNDSTART - +

Call LateInitialize on roundstart

INITIALIZE_IMMEDIATE - +

type and all subtypes should always immediately call Initialize in New()

PROCESS_KILL - +

Used to trigger object removal from a processing list

SS_INIT_FAILURE - +

Negative values incidate a failure or warning of some kind, positive are good. 0 and 1 are unused so that TRUE and FALSE are guaranteed to be invalid values. Subsystem failed to initialize entirely. Print a warning, log, and disable firing.

SS_INIT_NONE - +

The default return value which must be overridden. Will succeed with a warning.

SS_INIT_NO_NEED - +

Successful, but don't print anything. Useful if subsystem was disabled.

SS_INIT_SUCCESS - +

Subsystem initialized sucessfully.

SS_INIT_TIMER_KEY - +

The timer key used to know how long subsystem initialization takes

TIMER_CLIENT_TIME - +

Timing should be based on how timing progresses on clients, not the server.

Tracking this is more expensive, should only be used in conjuction with things that have to progress client side, such as animate() or sound()

TIMER_DELETE_ME - +

Delete the timer on parent datum Destroy() and when deltimer'd

TIMER_ID_NULL - +

Empty ID define

TIMER_LOOP - +

Loops the timer repeatedly until qdeleted

In most cases you want a subsystem instead, so don't use this unless you have a good reason

TIMER_NO_HASH_WAIT - +

prevents distinguishing identical timers with the wait variable

To be used with TIMER_UNIQUE

TIMER_OVERRIDE - +

For unique timers: Replace the old timer rather then not start this one

TIMER_STOPPABLE - +

Timer can be stopped using deltimer()

TIMER_UNIQUE - +

Don't run if there is an identical unique timer active

if the arguments to addtimer are the same as an existing timer, it doesn't create a new timer, and returns the id of the existing timer

addtimer - +

Create a new timer and add it to the queue.

@@ -208,7 +208,7 @@

G

diff --git a/code/__DEFINES/supply.html b/code/__DEFINES/supply.html index 932102e65269..249d503619df 100644 --- a/code/__DEFINES/supply.html +++ b/code/__DEFINES/supply.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/supply.dm - +

@@ -22,21 +22,21 @@

code/__DEFINES/supply.dm

ASRS_POOL_FOODSecondary ASRS pool dispening food related items for MessTech
ASRS_XENO_CRATES_DIVIDERDivider to the amount of xeno forces on the planet to ASRS provided crates. It is used as such sqrt(xenos/ASRS_XENO_CRATES_DIVIDER))

Define Details

ASRS_POOL_FOOD - +

Secondary ASRS pool dispening food related items for MessTech

ASRS_POOL_MAIN - +

Main pool of ASRS supplies, dispensing military supplies such as ammo

ASRS_XENO_CRATES_DIVIDER - +

Divider to the amount of xeno forces on the planet to ASRS provided crates. It is used as such sqrt(xenos/ASRS_XENO_CRATES_DIVIDER))

diff --git a/code/__DEFINES/surgery.html b/code/__DEFINES/surgery.html index 8aab321ee1a6..1aa7920514af 100644 --- a/code/__DEFINES/surgery.html +++ b/code/__DEFINES/surgery.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/surgery.dm - +

@@ -56,150 +56,150 @@

code/__DEFINES/surgery.dm

SURGERY_TOOLS_PRY_ENCASEDTools used to open and close ribs/skull. Heavy-duty prying, haemostat/wirecutter won't cut it.
SURGERY_TOOLS_BONE_MENDTools used to patch lightly damaged bones or before setting. May need surgical line in future.

Define Details

SELF_SURGERY_SLOWDOWN - +

Multiplier to surgery times when working on yourself.

SURGERY_DEPTH_DEEP - +

Deep incision - opened ribcage/skull.

SURGERY_DEPTH_SHALLOW - +

An incision has been opened.

SURGERY_DEPTH_SURFACE - +

No incision.

SURGERY_FAILURE_IMPOSSIBLE - +

The (no) chance of failure for surgery because the correct tools/conditions are used or skill compensates

SURGERY_FAILURE_LIKELY - +

The chance of failure for surgery because the the tool and ground is some combination worse than awful and skill can't compensate enough

SURGERY_FAILURE_POSSIBLE - +

The chance of failure for surgery because the the tool/ground is SURGERY_TOOL_MULT_AWFUL/SURGERY_SURFACE_MULT_AWFUL and skill can't compensate enough

SURGERY_FAILURE_UNLIKELY - +

The chance of failure for surgery because the the tool/ground is SURGERY_TOOL_MULT_BAD_SUBSTITUTE/SURGERY_SURFACE_MULT_UNSUITED and skill can't compensate enough

SURGERY_PRIORITY_HIGH - +

Appears second in lists. Ex. IB fix, bleeding surgeries. Life-threatening or liable to get worse.

SURGERY_PRIORITY_LOW - +

Appears fourth in lists. Ex. opening ribs, amputation. Things that shouldn't be at the top of a list.

SURGERY_PRIORITY_MAXIMUM - +

Appears first in lists. Ex. larva surgery, opening incision. Immediately life-threatening or initiation surgeries.

SURGERY_PRIORITY_MINIMUM - +

Appears last in lists. Ex. cauterizing incision, closing ribcage. Concluding steps.

SURGERY_PRIORITY_MODERATE - +

Appears third in lists. Ex. bone fix, tending wounds. Worth doing but not immediately threatening. Most surgeries will be here.

SURGERY_SURFACE_MULT_ADEQUATE - +

A surface that's adequate for surgery, if not ideal.

SURGERY_SURFACE_MULT_AWFUL - +

A surface that's utterly unsuitable for complex surgery. Worst possible case.

SURGERY_SURFACE_MULT_IDEAL - +

A surface that's ideal for performing surgeries.

SURGERY_SURFACE_MULT_UNSUITED - +

A surface unsuited for surgery, but better than nothing.

SURGERY_TOOLS_BONE_MEND - +

Tools used to patch lightly damaged bones or before setting. May need surgical line in future.

SURGERY_TOOLS_CAUTERIZE - +

Tools used to close incisions. May need surgical line in future. Check /datum/surgery_step/cauterize var/tools_lit if adding activatable tools.

SURGERY_TOOLS_INCISION - +

Tools used to open incisions or cut flesh. IMS listed separately as the generic incision surgery uses it to skip steps. PICT isn't as fast as standard to disincentivise using it instead of a normal scalpel. See also /datum/surgery_step/cut_larval_pseudoroots, /datum/surgery_step/retract_skin.

SURGERY_TOOLS_MEND_BLOODVESSEL - +

Tools used to patch damaged bloodvessels. Same tools as SUTURE, but fixovein exists specifically for this work and is best at it.

SURGERY_TOOLS_NO_INIT_MSG - +

Tools routinely used to hit people, which wouldn't make sense to give 'you can't open an incision with xyz' messages.

SURGERY_TOOLS_PINCH - +

Tools used to grab and remove things delicately. See also /datum/surgery_step/remove_larva.

SURGERY_TOOLS_PRY_DELICATE - +

Tools used to pry things very finely. No crowbar, fork works decently; it can't pinch, but it's easier to maneuver precisely than wirecutters.

SURGERY_TOOLS_PRY_ENCASED - +

Tools used to open and close ribs/skull. Heavy-duty prying, haemostat/wirecutter won't cut it.

SURGERY_TOOLS_SEVER_BONE - +

Tools used to sever limb bones. Same tools as /datum/surgery_step/saw_encased, but with hacking/chopping tools being better than sawing. See also /datum/surgery_step/saw_off_limb/failure var/list/cannot_hack, listing the tools that can't instantly chop a limb.

SURGERY_TOOLS_SUTURE - +

Tools used to suture damaged flesh. Same tools as BLOODVESSEL, but surgical line is ideal for this.

SURGERY_TOOL_MULT_AWFUL - +

A tool that's badly unsuitable for the surgery. Worst usable case. Using a glass shard instead of a scalpel, using a bayonet to saw off a limb's bone.

SURGERY_TOOL_MULT_BAD_SUBSTITUTE - +

An improvised substitute for an ill-fitting tool. Using wirecutters instead of a retractor.

SURGERY_TOOL_MULT_IDEAL - +

A tool that's perfect for the surgery.

SURGERY_TOOL_MULT_SUBOPTIMAL - +

A tool that's a good, if not ideal, fit for the surgery -- generally a real surgical tool used slightly out of its role. Haemostat instead of retractor, fixovein instead of sutures.

SURGERY_TOOL_MULT_SUBSTITUTE - +

A tool that's functional, but hardly good. Generally an improvised substitute for a well-matching tool - wirecutters instead of haemostat.

is_surgery_init_tool - +

checks if the item has a path that can be specifically used in a surgery step and is not flagged to not message on failed init - ex. cable coil, trauma kits etc.

is_surgery_tool - +

checks if the item has a path that can be specifically used in a surgery step.

diff --git a/code/__DEFINES/techtree.html b/code/__DEFINES/techtree.html index eb6885b4a657..09fa1bad0614 100644 --- a/code/__DEFINES/techtree.html +++ b/code/__DEFINES/techtree.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/techtree.dm - +

@@ -23,25 +23,25 @@

code/__DEFINES/techtree.dm

TECH_FLAG_NO_ANNOUNCEDon't announce when this tech is bought.
PASSIVE_INCREASE_AMOUNTControls the passive increase amount.

Define Details

PASSIVE_INCREASE_AMOUNT - +

Controls the passive increase amount.

TECH_FLAG_DISABLED - +

Prevents a tech from being added to the tech trees

TECH_FLAG_MULTIUSE - +

The tech can be purchased multiple times

TECH_FLAG_NO_ANNOUNCE - +

Don't announce when this tech is bought.

diff --git a/code/__DEFINES/text.html b/code/__DEFINES/text.html index aaa56a9c611d..8b24ca415ec6 100644 --- a/code/__DEFINES/text.html +++ b/code/__DEFINES/text.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/text.dm - +

@@ -26,37 +26,37 @@

code/__DEFINES/text.dm

SHOW_MESSAGE_VISIBLEdefines related to text related procs

Define Details

MAPTEXT - +

Prepares a text to be used for maptext. Use this so it doesn't look hideous.

MAPTEXT_VCR_OSD_MONO - +

Prepares a text to be used for maptext, using a font that can handle larger text better.

SANITIZE_FILENAME - +

Removes characters incompatible with file names.

SHOW_MESSAGE_VISIBLE - +

defines related to text related procs

STRIP_HTML_SIMPLE - +

Simply removes the < and > characters, and limits the length of the message.

WXH_TO_HEIGHT - +

Macro from Lummox used to get height from a MeasureText proc

diff --git a/code/__DEFINES/tgs.html b/code/__DEFINES/tgs.html index 13a946b7d617..62a2631ddeeb 100644 --- a/code/__DEFINES/tgs.html +++ b/code/__DEFINES/tgs.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/tgs.dm - +

@@ -73,165 +73,165 @@

code/__DEFINES/tgs.dm

/datum/tgs_chat_embed/provider/authorSee https://discord.com/developers/docs/resources/message#embed-object-embed-author-structure for details. Must have name set in New().
/datum/tgs_chat_embed/fieldSee https://discord.com/developers/docs/resources/message#embed-object-embed-field-structure for details.

Define Details

TGS_ENGINE_TYPE_BYOND - +

The Build Your Own Net Dream engine.

TGS_ENGINE_TYPE_OPENDREAM - +

The OpenDream engine.

TGS_EVENT_COMPILE_CANCELLED - +

When a compile is cancelled. No parameters.

TGS_EVENT_COMPILE_COMPLETE - +

When a compile operation completes. Note, this event fires before the new .dmb is loaded into the watchdog. Consider using the TGS_EVENT_DEPLOYMENT_COMPLETE instead. Parameters: Game directory path.

TGS_EVENT_COMPILE_FAILURE - +

When a compile fails. Parameters: Game directory path, [TRUE]/[FALSE] based on if the cause for failure was DMAPI validation.

TGS_EVENT_COMPILE_START - +

When the compiler starts running. Parameters: Game directory path, origin commit SHA.

TGS_EVENT_DEPLOYMENT_CLEANUP - +

Whenever a deployment folder is deleted from disk. Parameters: Game directory path.

TGS_EVENT_DEPLOYMENT_COMPLETE - +

When a deployment completes. No Parameters.

TGS_EVENT_ENGINE_ACTIVE_VERSION_CHANGE - +

When the active engine version changes. Parameters: (Nullable) Version string of the current engine, version string of the new engine.

TGS_EVENT_ENGINE_INSTALL_FAIL - +

When a engine install operation fails. Parameters: Error message

TGS_EVENT_ENGINE_INSTALL_START - +

Before a engine install operation begins. Parameters: Version string of the installing engine.

TGS_EVENT_HEALTH_CHECK - +

When the watchdog sends a health check to DD. No parameters.

TGS_EVENT_INSTANCE_AUTO_UPDATE_START - +

When an automatic update for the current instance begins. No parameters.

TGS_EVENT_INSTANCE_RENAMED - +

Before the instance is renamed, extra parameter is the new name.

TGS_EVENT_PORT_SWAP - +

Before a port change is about to happen, extra parameters is new port.

TGS_EVENT_PRE_DREAM_MAKER - +

After CodeModifications are applied, before DreamMaker is run. Parameters: Game directory path, origin commit sha, version string of the used engine.

TGS_EVENT_REBOOT_MODE_CHANGE - +

Before a reboot mode change, extras parameters are the current and new reboot mode enums.

TGS_EVENT_REPO_CHECKOUT - +

When the repository performs a checkout. Parameters: Checkout git object.

TGS_EVENT_REPO_FETCH - +

When the repository performs a fetch operation. No parameters.

TGS_EVENT_REPO_MERGE_CONFLICT - +

When the repository encounters a merge conflict: Parameters: Base SHA, target SHA, base reference, target reference.

TGS_EVENT_REPO_MERGE_PULL_REQUEST - +

When the repository test merges. Parameters: PR Number, PR Sha, (Nullable) Comment made by TGS user.

TGS_EVENT_REPO_PRE_SYNCHRONIZE - +

Before the repository makes a sychronize operation. Parameters: Absolute repostiory path.

TGS_EVENT_REPO_RESET_ORIGIN - +

When the repository is reset to its origin reference. Parameters: Reference name, Commit SHA.

TGS_EVENT_REPO_SUBMODULE_UPDATE - +

After a single submodule update is performed. Parameters: Updated submodule name.

TGS_EVENT_WATCHDOG_DETACH - +

Before the watchdog detaches for a TGS update/restart. No parameters.

TGS_EVENT_WATCHDOG_REATTACH - +

After the watchdog reattaches to DD, extra parameter is the new /datum/tgs_version of the server.

TGS_EVENT_WATCHDOG_SHUTDOWN - +

Before the watchdog shuts down. Not sent for graceful shutdowns. No parameters.

TGS_EVENT_WORLD_PRIME - +

Watchdog event when TgsInitializationComplete() is called. No parameters.

TGS_FILE2TEXT_NATIVE - +

Consumers SHOULD create this define if you want to do TGS configuration outside of this file.

TGS_REBOOT_MODE_NORMAL - +

The server will reboot normally.

TGS_REBOOT_MODE_RESTART - +

The watchdog will restart on reboot.

TGS_REBOOT_MODE_SHUTDOWN - +

The server will stop running on reboot.

TGS_SECURITY_SAFE - +

DreamDaemon Safe security level.

TGS_SECURITY_TRUSTED - +

DreamDaemon Trusted security level.

TGS_SECURITY_ULTRASAFE - +

DreamDaemon Ultrasafe security level.

TGS_TOPIC - +

Consumers MUST run this macro at the start of [/world/proc/Topic].

TGS_VISIBILITY_INVISIBLE - +

DreamDaemon invisible visibility level.

TGS_VISIBILITY_PRIVATE - +

DreamDaemon private visibility level.

TGS_VISIBILITY_PUBLIC - +

DreamDaemon public visibility level.

diff --git a/code/__DEFINES/tgui.html b/code/__DEFINES/tgui.html index 5eb5e8a114aa..aed16b01a1d1 100644 --- a/code/__DEFINES/tgui.html +++ b/code/__DEFINES/tgui.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/tgui.dm - +

@@ -35,72 +35,72 @@

code/__DEFINES/tgui.dm

TGUI_CREATE_OPEN_MESSAGECreates a message packet for sending via output() specifically for opening tgsay using an embedded winget

Define Details

TGUI_CREATE_MESSAGE - +

Creates a message packet for sending via output()

TGUI_CREATE_OPEN_MESSAGE - +

Creates a message packet for sending via output() specifically for opening tgsay using an embedded winget

TGUI_PING_TIMEOUT - +

Maximum ping timeout allowed to detect zombie windows

TGUI_REFRESH_FULL_UPDATE_COOLDOWN - +

Used for rate-limiting to prevent DoS by excessively refreshing a TGUI window

TGUI_WINDOW_CLOSED - +

Window does not exist

TGUI_WINDOW_HARD_LIMIT - +

Maximum number of open windows

TGUI_WINDOW_ID - +

Get a window id based on the provided pool index

TGUI_WINDOW_INDEX - +

Get a pool index of the provided window id

TGUI_WINDOW_LOADING - +

Window was just opened, but is still not ready to be sent data

TGUI_WINDOW_READY - +

Window is free and ready to receive data

TGUI_WINDOW_SOFT_LIMIT - +

Maximum number of windows that can be suspended/reused

UI_CLOSE - +

UI Should close

UI_DISABLED - +

Red eye; disabled, does not update

UI_INTERACTIVE - +

Green eye; fully interactive

UI_UPDATE - +

Orange eye; updates but is not interactive

diff --git a/code/__DEFINES/traits.html b/code/__DEFINES/traits.html index 3ea9f80af712..ea03ae83f01a 100644 --- a/code/__DEFINES/traits.html +++ b/code/__DEFINES/traits.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/traits.dm - +

@@ -119,411 +119,411 @@

code/__DEFINES/traits.dm

HACKED_TRAITtraits from hacked machine interactions
CHLOROFORM_TRAITtraits from chloroform usage

Define Details

BODY_TRAIT - +

trait source where a condition comes from body state

BUCKLED_TRAIT - +

trait associated to being buckled

CHLOROFORM_TRAIT - +

traits from chloroform usage

CHOKEHOLD_TRAIT - +

trait associated to being held in a chokehold

COUNT_TRAIT_SOURCES - +

Returns the amount of sources for a trait. useful if you don't want to have a "thing counter" stuck around all the time

DOUBLE_SEATS_TRAIT - +

traits associated with usage of snowflake dropship double seats

FAKEDEATH_TRAIT - +

trait source when an effect is coming from a fakedeath effect (refactor this)

GET_TRAIT_SOURCES - +

Returns a list of trait sources for this trait. Only useful for wacko cases and internal futzing You should not be using this

HACKED_TRAIT - +

traits from hacked machine interactions

HAS_MIND_TRAIT - +

A simple helper for checking traits in a mob's mind

INTERACTION_TRAIT - +

traits associated with actively interacted machinery

KNOCKEDDOWN_TRAIT - +

traits bound by knocked_down status effect

KNOCKEDOUT_TRAIT - +

traits bound by knocked_out status effect

LYING_DOWN_TRAIT - +

Trait associated to lying down (having a [lying_angle] of a different value than zero).

LYING_TRAIT - +

Status trait coming from lying down through update_canmove()

OVIPOSITOR_TRAIT - +

trait effect related to the queen ovipositor

POUNCED_TRAIT - +

traits from being pounced

ROUNDSTART_TRAIT - +

cannot be removed without admin intervention

SPECIALIST_GEAR_TRAIT - +

trait effect related to active specialist gear

STAT_TRAIT - +

trait associated to a stat value or range of

STEP_TRIGGER_TRAIT - +

traits from step_triggers on the map

STUNNED_TRAIT - +

traits bound by stunned status effects

TRAIT_ABILITY_BURROWED - +

Used for burrowed mobs, prevent's SG/sentrys/claymores from autofiring

TRAIT_ABILITY_NO_PLASMA_TRANSFER - +

Xenos with this trait cannot have plasma transfered to them

TRAIT_ABILITY_OVIPOSITOR - +

Shows that the xeno queen is on ovi

TRAIT_BIMEX - +

If the mob is wearing bimex glasses. Used for badass laser deflection flavor text.

TRAIT_CANNOT_EAT - +

If the mob cannot eat/be fed

TRAIT_CHARGING - +

If the mob is currently charging (xeno only)

TRAIT_CLOAKED - +

If the mob is cloaked in any form

TRAIT_CRAWLER - +

If the mob can crawl through pipes equipped

TRAIT_DAZED - +

Disoriented. Unable to talk properly, and unable to use some skills as Xeno

TRAIT_DEXTROUS - +

If the mob is affected by drag delay.

TRAIT_EAR_PROTECTION - +

If the mob has ear protection. Protects from external ear damage effects. Includes explosions, firing the RPG, screeching DEAFNESS only, and flashbangs.

TRAIT_EMOTE_CD_EXEMPT - +

Stops emote cooldown

TRAIT_ERT_ID - +

If this ID belongs to an ERT member

TRAIT_FLOORED - +

Prevents voluntary standing or staying up on its own.

TRAIT_FORCED_STANDING - +

Forces user to stay standing

TRAIT_FOREIGN_BIO - +

Foreign biology. Basic medHUDs won't show the mob. (Yautja, Zombies)

TRAIT_HARDCORE - +

If the mob will instantly go permadead upon death

TRAIT_HIVEMIND_INTERFERENCE - +

if the xeno's connection to the hivemind is cut

TRAIT_HOLDS_CANE - +

If the mob is holding a cane.

TRAIT_IMMOBILIZED - +

Prevents voluntary movement.

TRAIT_INCAPACITATED - +

Stuns preventing movement and using objects but without further impairement

TRAIT_INFILTRATOR_SYNTH - +

Masked synthetic biology. Basic medHUDs will perceive the mob as human. (Infiltrator Synths)

TRAIT_INTENT_EYES - +

Eye color changes on intent. (G1 Synths and WJs)

TRAIT_IN_TUTORIAL - +

If the mob is currently loading a tutorial

TRAIT_IRON_TEETH - +

If the mob won't drop items held in face slot when downed

TRAIT_KNOCKEDOUT - +

Forces the user to stay unconscious.

TRAIT_LEADERSHIP - +

If the mob has leadership abilities (giving orders).

TRAIT_LISPING - +

Replace s with th in talking

TRAIT_MERGED_WITH_WEEDS - +

Apply this to identify a mob as merged with weeds

TRAIT_NEARSIGHTED_EQUIPMENT - +

If the mob has equipment that alleviates nearsightedness

TRAIT_NESTED - +

If the mob is nested.

TRAIT_NO_COLOR - +

If the Hive uses it's colors on the mobs. Does not occur naturally, excepting the Mutated hive.

TRAIT_NO_HIVE_DELAY - +

If the Hive delays round end (this is overridden for some hives). Does not occur naturally. Must be applied in events.

TRAIT_NO_STRAY - +

Mob wont get hit by stray projectiles

TRAIT_OPPOSABLE_THUMBS - +

If the hive or xeno can use objects.

TRAIT_REAGENT_SCANNER - +

If the mob can see the reagents contents of stuff

TRAIT_SANTA - +

If the mob is Santa. Enough said.

TRAIT_SIMPLE_DESC - +

If the mob is hidden from examination

TRAIT_SOURCE_ABILITY - +

Status trait coming from ability

TRAIT_SOURCE_ADMIN - +

Status trait forced by staff

TRAIT_SOURCE_ATTACHMENT - +

Status trait coming from attachment

TRAIT_SOURCE_BUCKLE - +

Status trait coming from being buckled.

TRAIT_SOURCE_DROPSHIP_INTERACTION - +

traits associated with interacting with a dropship

TRAIT_SOURCE_EQUIPMENT - +

Status trait coming from equipment

TRAIT_SOURCE_FLIP_TABLE - +

Status trait coming from being flipped or unflipped.

TRAIT_SOURCE_HIVE - +

Status trait coming from the hive.

TRAIT_SOURCE_HIVEMIND_INTERFERENCE - +

Status trait coming from hivemind interference

TRAIT_SOURCE_INHERENT - +

Example trait source

TRAIT_SOURCE_ITEM - +

Status trait coming from generic items

TRAIT_SOURCE_JOB - +

Status trait coming from their job

TRAIT_SOURCE_SKILL - +

Status trait coming from skill

TRAIT_SOURCE_SPECIES - +

Status trait coming from species. .human/species_gain()

TRAIT_SOURCE_SQUAD_LEADER - +

Status trait coming from being assigned as [acting] squad leader.

TRAIT_SOURCE_TEMPORARY_MUTE - +

Status trait coming from temporary_mute

TRAIT_SOURCE_TUTORIAL - +

Status trait coming from a tutorial

TRAIT_SOURCE_WEAPON - +

Status trait from weapons?? buh

TRAIT_SOURCE_XENO_ACTION_CHARGE - +

Status trait forced by the xeno action charge

TRAIT_SPEC - +

What spec set the mob has claimed, if any

TRAIT_SPEC_KIT - +

If the mob claimed a specialist set from a kit

TRAIT_SPEC_VENDOR - +

If the mob claimed a specialist set from a vendor

TRAIT_SPOTTER_LAZED - +

If the mob is being lazed by a sniper spotter

TRAIT_SUPER_STRONG - +

Absolutely RIPPED. Can do misc. heavyweight stuff others can't. (Yautja, Synths)

TRAIT_TABLE_FLIPPING - +

If the table is being flipped, prevent any changes that will mess with adjacency handling

TRAIT_TEMPORARILY_MUTED - +

Apply this to identify a mob as temporarily muted

TRAIT_TOOL_BLACKMARKET_HACKER - +

Can hack ASRS consoles to access the black market

TRAIT_TOOL_TRADEBAND - +

Can lockout blackmarket from ASRS console circuits.

TRAIT_TWOBORE_TRAINING - +

If the mob can handle the superheavy two-bore rifle and speaks its fluff lines when landing hits with it.

TRAIT_UNDENSE - +

Example trait Apply this to make a mob not dense, and remove it when you want it to no longer make them undense, other sorces of undesity will still apply. Always define a unique source when adding a new instance of this!

TRAIT_UNSTRIPPABLE - +

Makes it impossible to strip the inventory of this mob.

TRAIT_USING_WHEELCHAIR - +

If the mob is buckled to a wheelchair.

TRAIT_VULTURE_USER - +

If the mob is able to use the vulture rifle or spotting scope

TRAIT_XENONID - +

If the Hive is a Xenonid Hive

TRAIT_YAUTJA_TECH - +

Knowledge of Yautja technology

XENO_NEST_TRAIT - +

Status trait coming from a xeno nest

XENO_THROW_TRAIT - +

Status trait from a generic throw by xeno abilities

XENO_WEED_TRAIT - +

traits associated with xeno on-ground weeds

diff --git a/code/__DEFINES/turf_flags.html b/code/__DEFINES/turf_flags.html index 2d619af20fdd..c2a2107caead 100644 --- a/code/__DEFINES/turf_flags.html +++ b/code/__DEFINES/turf_flags.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/turf_flags.dm - +

@@ -24,29 +24,29 @@

code/__DEFINES/turf_flags.dm

CHANGETURF_IGNORE_AIRThis flag prevents changeturf from gathering air from nearby turfs to fill the new turf with an approximation of local air
CHANGETURF_SKIPA flag for PlaceOnTop to just instance the new turf instead of calling ChangeTurf. Used for uninitialized turfs NOTHING ELSE

Define Details

CHANGETURF_IGNORE_AIR - +

This flag prevents changeturf from gathering air from nearby turfs to fill the new turf with an approximation of local air

CHANGETURF_SKIP - +

A flag for PlaceOnTop to just instance the new turf instead of calling ChangeTurf. Used for uninitialized turfs NOTHING ELSE

RESERVATION_TURF - +

If a turf is a reserved turf

TURF_ORGANIC - +

Marks a turf as organic. Used for alien wall and membranes.

UNUSED_RESERVATION_TURF - +

If a turf is an usused reservation turf awaiting assignment

diff --git a/code/__DEFINES/turfs.html b/code/__DEFINES/turfs.html index 2bb140abeeff..a10b2125bf64 100644 --- a/code/__DEFINES/turfs.html +++ b/code/__DEFINES/turfs.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/turfs.dm - +

@@ -27,43 +27,43 @@

code/__DEFINES/turfs.dm

CORNER_OUTLINEReturns an outline (neighboring turfs) of the given block

Define Details

CORNER_BLOCK - +

Returns a list of turfs in the rectangle specified by BOTTOM LEFT corner and height/width

CORNER_BLOCK_OFFSET - +

Returns a list of turfs similar to CORNER_BLOCK but with offsets

CORNER_OUTLINE - +

Returns an outline (neighboring turfs) of the given block

ORANGE_TURFS - +

Returns a list of turfs within Dist tiles of Center, excluding Center. When Dist >= 5 faster than an orange() filtered to /turfs.

RANGE_TURFS - +

Returns a list of turfs within Dist tiles of Center. When Dist >= 5 faster than a range() filtered to /turfs.

RECT_TURFS - +

Returns a list of turfs within H_RADIUS tiles horizontally and V_RADIUS tiles vertically of CENTER.

Z_TURFS - +

Returns all turfs in a zlevel

diff --git a/code/__DEFINES/unit_tests.html b/code/__DEFINES/unit_tests.html index 4f7c99dc28c9..d93fe08175ee 100644 --- a/code/__DEFINES/unit_tests.html +++ b/code/__DEFINES/unit_tests.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/unit_tests.dm - +

@@ -27,7 +27,7 @@

code/__DEFINES/unit_tests.dm

TEST_ONLY_ASSERTASSERT(), but it only actually does anything during unit tests

Define Details

PERFORM_ALL_TESTS - +

Are tests enabled with no focus? @@ -37,13 +37,13 @@

PER For example, PERFORM_ALL_TESTS(log_mapping) will only run if either no test is focused, or the focus is log_mapping.

TEST_ONLY_ASSERT - +

ASSERT(), but it only actually does anything during unit tests

diff --git a/code/__DEFINES/vehicle.html b/code/__DEFINES/vehicle.html index 47ce2f560811..18b15e1c2771 100644 --- a/code/__DEFINES/vehicle.html +++ b/code/__DEFINES/vehicle.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/vehicle.dm - +

@@ -22,21 +22,21 @@

code/__DEFINES/vehicle.dm

VEHICLE_CLASS_WEAKVehicle Classes (for future)
VEHICLE_BYPASS_BLOCKERSVehicle can bypass vehicle blockers, typically going further into maps than intended

Define Details

VEHICLE_BYPASS_BLOCKERS - +

Vehicle can bypass vehicle blockers, typically going further into maps than intended

VEHICLE_CLASS_WEAK - +

Vehicle Classes (for future)

VEHICLE_TOGGLE_SHIFT_CLICK_GUNNER - +

Toggle between Shift click and MMB click for gunner

diff --git a/code/__DEFINES/vendors.html b/code/__DEFINES/vendors.html index acacf370f81e..d837ccfacaf9 100644 --- a/code/__DEFINES/vendors.html +++ b/code/__DEFINES/vendors.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/vendors.dm - +

@@ -23,22 +23,22 @@

code/__DEFINES/vendors.dm

VEND_PROPSVends props looking like the items instead of the actual items. Basically for tutorials.
VEND_TOKEN_VOIDToken invalid/unrecognised.

Define Details

VEND_PROPS - +

Vends props looking like the items instead of the actual items. Basically for tutorials.

VEND_STOCK_DYNAMIC - +

Vendors with this flag will fill retroactively based on latejoining players, and expect a scale multiplier instead of amount of items

VEND_TOKEN_VOID - +

Token invalid/unrecognised.

diff --git a/code/__DEFINES/weapon_stats.html b/code/__DEFINES/weapon_stats.html index 885fbd9afdd8..68ad9cdf2e92 100644 --- a/code/__DEFINES/weapon_stats.html +++ b/code/__DEFINES/weapon_stats.html @@ -14,24 +14,24 @@ — Define Details

code/__DEFINES/weapon_stats.dm - +

FIRE_VARIANT_DEFAULTDefault fire behavior: No associated values.
FIRE_VARIANT_TYPE_B"Type B" Armor Shredding Greenfire: Burn Time T5, Burn Level T2, Slows on Tile, Increased Tile Damage, Easier Extinguishing.

Define Details

FIRE_VARIANT_DEFAULT - +

Default fire behavior: No associated values.

FIRE_VARIANT_TYPE_B - +

"Type B" Armor Shredding Greenfire: Burn Time T5, Burn Level T2, Slows on Tile, Increased Tile Damage, Easier Extinguishing.

diff --git a/code/__DEFINES/xeno.html b/code/__DEFINES/xeno.html index a7b090b266ca..a1b47afc5c9e 100644 --- a/code/__DEFINES/xeno.html +++ b/code/__DEFINES/xeno.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/xeno.dm - +

@@ -47,124 +47,124 @@

code/__DEFINES/xeno.dm

XENO_AVAILABLE_TIMERThe time against away_timer when an AFK xeno gets listed in the available list so ghosts can get ready
WEED_EXPLOSION_DAMAGEMULTBetween 2% to 10% of explosion severity

Define Details

BUILD_TIME_MULT_LESSER_DRONE - +

Multiplier for time taken for a xeno to place down a resin structure

ENDGAME_LARVA_CAP_MULTIPLIER - +

Xenos need to have their number to marines ratio lower than this to get larvae from pylons

FACEHUGGER_WINDUP_DURATION - +

The duration it takes a player controlled facehugger to leap or hug adjacently

HIJACK_RATIO_FOR_TACMAP - +

If this is marine to xeno ratio during hijack, xenos see marines on tacmap

LARVA_ADDITION_MULTIPLIER - +

What percent of their numbers xeno get from pylons

SINGLETARGETGUT - +

Defines for Abomination ability /datum/action/xeno_action/activable/feralfrenzy

WEED_EXPLOSION_DAMAGEMULT - +

Between 2% to 10% of explosion severity

WEED_XENO_DAMAGEMULT - +

Multiplicative. The amount of damage xenos do to weeds.

XENO_ATTACK_ACTION - +

Full attack delay.

XENO_AVAILABLE_TIMER - +

The time against away_timer when an AFK xeno gets listed in the available list so ghosts can get ready

XENO_BURIED_LARVA_TIME_LIMIT - +

The amount of time after round start before buried larva spawns are disallowed

XENO_COMM_ACQUISITION_TIME - +

The time when xenos can start taking over comm towers

XENO_FACEHUGGER_LEAVE_TIMER - +

The time against away_timer when an AFK facehugger converts to a npc

XENO_HIJACK_EVILUTION_BUFF - +

Evolution boost during hijack

XENO_HIJACK_EVILUTION_TIME - +

For how long the buff lasts

XENO_JOIN_AFK_TIME_LIMIT - +

The time of inactivity you cannot exceed to join as a xeno

XENO_JOIN_DEAD_LARVA_TIME - +

The time you must be dead to join as a xeno larva

XENO_JOIN_DEAD_TIME - +

The time you must be dead to join as xeno (not larva)

XENO_LEAVE_TIMER - +

The time against away_timer when an AFK xeno (not larva) can be replaced

XENO_LEAVE_TIMER_LARVA - +

The time against away_timer when an AFK xeno larva can be replaced

XENO_NOBODY - +

Nobody can create constructions. (Feral)

XENO_NONCOMBAT_ACTION - +

Noticeable but shorter than full delay.

XENO_NO_DELAY_ACTION - +

No delay at all.

XENO_PYLON_ACTIVATION_COOLDOWN - +

The time it takes for a pylon to give one larva while activated

XENO_PYLON_DESTRUCTION_DELAY - +

The time until you can re-corrupt a comms relay after the last pylon was destroyed

xeno_attack_delay - +

Usually 1 second delay.

xeno_miss_delay - +

Usually half a second's delay.

xeno_noncombat_delay - +

0.4 seconds, legacy 'open hand clicked something adjacent' delay.

diff --git a/code/__HELPERS/#maths.html b/code/__HELPERS/#maths.html index bfccc4f91b6d..78ef574124ce 100644 --- a/code/__HELPERS/#maths.html +++ b/code/__HELPERS/#maths.html @@ -14,7 +14,7 @@

code/__HELPERS/#maths.dm - +

@@ -31,7 +31,7 @@

code/__HELPERS/#maths.dm returns the correctly signed value max'd to the threshold

diff --git a/code/__HELPERS/_lists.html b/code/__HELPERS/_lists.html index f25897890a37..77a90d0d2c2d 100644 --- a/code/__HELPERS/_lists.html +++ b/code/__HELPERS/_lists.html @@ -14,7 +14,7 @@ — Define Details

code/__HELPERS/_lists.dm - +

@@ -51,7 +51,7 @@

code/__HELPERS/_lists.dm

same as shuffle, but returns nothing and acts on list in place

Define Details

BINARY_INSERT - +

Binary search sorted insert @@ -61,17 +61,17 @@

BINARY_ COMPARE: The object to compare against, usualy the same as INPUT COMPARISON: The variable on the objects to compare COMPTYPE: How should the values be compared? Either COMPARE_KEY or COMPARE_VALUE.

COMPARE_KEY - +

Passed into BINARY_INSERT to compare keys

COMPARE_VALUE - +

Passed into BINARY_INSERT to compare values

diff --git a/code/__HELPERS/_time.html b/code/__HELPERS/_time.html index 42283fd07734..c4cb688cd2e5 100644 --- a/code/__HELPERS/_time.html +++ b/code/__HELPERS/_time.html @@ -14,7 +14,7 @@

code/__HELPERS/_time.dm - +

@@ -22,7 +22,7 @@

code/__HELPERS/_time.dm

Returns the world time in english. Do not use to get date information - starts at 0 + a random time offset from 10 minutes to 24 hours.
diff --git a/code/__HELPERS/animations.html b/code/__HELPERS/animations.html index 63760016c83c..2fdb53b15519 100644 --- a/code/__HELPERS/animations.html +++ b/code/__HELPERS/animations.html @@ -14,19 +14,19 @@ — Define Details

code/__HELPERS/animations.dm - +

UPDATE_TRANSFORM_ANIMATION_TIMEThe duration of the animate call in mob/living/update_transform

Define Details

UPDATE_TRANSFORM_ANIMATION_TIME - +

The duration of the animate call in mob/living/update_transform

diff --git a/code/__HELPERS/chat.html b/code/__HELPERS/chat.html index 1e219f1b4ef9..d59109e46d2f 100644 --- a/code/__HELPERS/chat.html +++ b/code/__HELPERS/chat.html @@ -14,7 +14,7 @@

code/__HELPERS/chat.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/chat.dm

Sends a message to TGS admin chat channels.
diff --git a/code/__HELPERS/cmp.html b/code/__HELPERS/cmp.html index 08b5b85461ea..80dd43fddd4a 100644 --- a/code/__HELPERS/cmp.html +++ b/code/__HELPERS/cmp.html @@ -14,7 +14,7 @@

code/__HELPERS/cmp.dm - +

@@ -25,7 +25,7 @@

code/__HELPERS/cmp.dm Assumes the client on the observer is not null

diff --git a/code/__HELPERS/datums.html b/code/__HELPERS/datums.html index f790486e7d3a..051e32866eec 100644 --- a/code/__HELPERS/datums.html +++ b/code/__HELPERS/datums.html @@ -14,7 +14,7 @@

code/__HELPERS/datums.dm - +

@@ -22,7 +22,7 @@

code/__HELPERS/datums.dm

Check if a datum has not been deleted and is a valid source
diff --git a/code/__HELPERS/files.html b/code/__HELPERS/files.html index e5228a7d3279..7cd622a27904 100644 --- a/code/__HELPERS/files.html +++ b/code/__HELPERS/files.html @@ -14,7 +14,7 @@

code/__HELPERS/files.dm - +

@@ -23,7 +23,7 @@

code/__HELPERS/files.dm Used because md5ing files stored in the rsc sometimes gives incorrect md5 results.

diff --git a/code/__HELPERS/game.html b/code/__HELPERS/game.html index 849d962b645d..56a552096c99 100644 --- a/code/__HELPERS/game.html +++ b/code/__HELPERS/game.html @@ -14,7 +14,7 @@

code/__HELPERS/game.dm - +

@@ -38,7 +38,7 @@

code/__HELPERS/game.dm

Get active players who are playing in the round
diff --git a/code/__HELPERS/generators.html b/code/__HELPERS/generators.html index 39ce0effe182..bf036443b2d8 100644 --- a/code/__HELPERS/generators.html +++ b/code/__HELPERS/generators.html @@ -14,7 +14,7 @@

code/__HELPERS/generators.dm - +

@@ -23,7 +23,7 @@

code/__HELPERS/generators.dm returns:

diff --git a/code/__HELPERS/guid.html b/code/__HELPERS/guid.html index c3d6edcc1275..3714206de4da 100644 --- a/code/__HELPERS/guid.html +++ b/code/__HELPERS/guid.html @@ -14,7 +14,7 @@

code/__HELPERS/guid.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/guid.dm (But may make a nice salt to one)

diff --git a/code/__HELPERS/icons.html b/code/__HELPERS/icons.html index 780d5aa0977a..f818b027b38f 100644 --- a/code/__HELPERS/icons.html +++ b/code/__HELPERS/icons.html @@ -14,7 +14,7 @@

code/__HELPERS/icons.dm - +

@@ -54,7 +54,7 @@

code/__HELPERS/icons.dm eg2: center_image(image_to_center, 96,96)

diff --git a/code/__HELPERS/lazy_templates.html b/code/__HELPERS/lazy_templates.html index d0a42fd03136..6e3c9614123a 100644 --- a/code/__HELPERS/lazy_templates.html +++ b/code/__HELPERS/lazy_templates.html @@ -14,7 +14,7 @@

code/__HELPERS/lazy_templates.dm - +

@@ -22,7 +22,7 @@

code/__HELPERS/lazy_templates.dm

Iterates through all lazy template datums that exist and returns a list of them as an associative list of type -> instance.
diff --git a/code/__HELPERS/lighting.html b/code/__HELPERS/lighting.html index 36d22a4d9e77..eafc3b4f42b0 100644 --- a/code/__HELPERS/lighting.html +++ b/code/__HELPERS/lighting.html @@ -14,7 +14,7 @@

code/__HELPERS/lighting.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/lighting.dm

Produces a mutable appearance glued to the EMISSIVE_PLANE dyed to be the EM_BLOCK_COLOR.
diff --git a/code/__HELPERS/lists.html b/code/__HELPERS/lists.html index 3738fe7633bd..80a80c7e1f3f 100644 --- a/code/__HELPERS/lists.html +++ b/code/__HELPERS/lists.html @@ -14,7 +14,7 @@

code/__HELPERS/lists.dm - +

@@ -28,7 +28,7 @@

code/__HELPERS/lists.dm

replaces reverseList ~Carnie
diff --git a/code/__HELPERS/logging.html b/code/__HELPERS/logging.html index d98609eff5a5..f0111b9f9bb4 100644 --- a/code/__HELPERS/logging.html +++ b/code/__HELPERS/logging.html @@ -14,7 +14,7 @@

code/__HELPERS/logging.dm - +

@@ -26,7 +26,7 @@

code/__HELPERS/logging.dm

Logging for mapping errors
diff --git a/code/__HELPERS/matrices.html b/code/__HELPERS/matrices.html index a88c8e3a1406..8cd40a476e00 100644 --- a/code/__HELPERS/matrices.html +++ b/code/__HELPERS/matrices.html @@ -14,7 +14,7 @@

code/__HELPERS/matrices.dm - +

@@ -31,7 +31,7 @@

code/__HELPERS/matrices.dm color_matrix_recolor_rgb is more complex, but gives more precise control over the palette, at least if using 3 or fewer colours.

diff --git a/code/__HELPERS/nameof.html b/code/__HELPERS/nameof.html index ea0d032e77a3..5ae4509730c0 100644 --- a/code/__HELPERS/nameof.html +++ b/code/__HELPERS/nameof.html @@ -14,7 +14,7 @@ — Define Details

code/__HELPERS/nameof.dm - +

@@ -24,20 +24,20 @@

code/__HELPERS/nameof.dm

NAMEOF_STATICNAMEOF that actually works in static definitions because src::type requires src to be defined

Define Details

NAMEOF - +

NAMEOF: Compile time checked variable name to string conversion evaluates to a string equal to "X", but compile errors if X isn't a var on datum. datum may be null, but it does need to be a typed var.

NAMEOF_STATIC - +

NAMEOF that actually works in static definitions because src::type requires src to be defined

diff --git a/code/__HELPERS/qdel.html b/code/__HELPERS/qdel.html index a94974006d04..92ffae97a777 100644 --- a/code/__HELPERS/qdel.html +++ b/code/__HELPERS/qdel.html @@ -14,7 +14,7 @@

code/__HELPERS/qdel.dm - +

@@ -22,7 +22,7 @@

code/__HELPERS/qdel.dm

the underscores are to encourage people not to use this directly.
diff --git a/code/__HELPERS/string_lists.html b/code/__HELPERS/string_lists.html index 65c2a01ed607..0fdc159f3452 100644 --- a/code/__HELPERS/string_lists.html +++ b/code/__HELPERS/string_lists.html @@ -14,7 +14,7 @@

code/__HELPERS/string_lists.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/string_lists.dm

A wrapper for baseturf string lists, to offer support of non list values, and a stack_trace if we have major issues
diff --git a/code/__HELPERS/text.html b/code/__HELPERS/text.html index 69fc9ce6fc45..fe50a4523ce7 100644 --- a/code/__HELPERS/text.html +++ b/code/__HELPERS/text.html @@ -14,7 +14,7 @@

code/__HELPERS/text.dm - +

@@ -26,7 +26,7 @@

code/__HELPERS/text.dm

Check if the string haystack begins with the string needle.
diff --git a/code/__HELPERS/traits.html b/code/__HELPERS/traits.html index 952a74c10fb4..36a320dfe272 100644 --- a/code/__HELPERS/traits.html +++ b/code/__HELPERS/traits.html @@ -14,7 +14,7 @@

code/__HELPERS/traits.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/traits.dm

DO NOT USE ___TraitAdd OR ___TraitRemove as a replacement for ADD_TRAIT / REMOVE_TRAIT defines. To be used explicitly for callback.
diff --git a/code/__HELPERS/type2type.html b/code/__HELPERS/type2type.html index e9568fd0ce40..839396fdbb32 100644 --- a/code/__HELPERS/type2type.html +++ b/code/__HELPERS/type2type.html @@ -14,7 +14,7 @@

code/__HELPERS/type2type.dm - +

@@ -25,7 +25,7 @@

code/__HELPERS/type2type.dm

Formats a larger number to correct textual representation without losing data
diff --git a/code/__HELPERS/unsorted.html b/code/__HELPERS/unsorted.html index 49c2c743b28e..3866edc3a107 100644 --- a/code/__HELPERS/unsorted.html +++ b/code/__HELPERS/unsorted.html @@ -14,7 +14,7 @@ — Define Details

code/__HELPERS/unsorted.dm - +

@@ -49,19 +49,19 @@

code/__HELPERS/unsorted.dm In this case, admin Zs and tutorial areas

Define Details

UNTIL_OR_TIMEOUT - +

Macro for cases where an UNTIL() may go on forever (such as for an http request)

VARSET_WEAK_CALLBACK - +

Same as VARSET_CALLBACK, but uses a weakref to the datum. Use this if the timer is exceptionally long.

diff --git a/code/__HELPERS/verb_helpers.html b/code/__HELPERS/verb_helpers.html index be1a184a6ca6..c8fef5bdea42 100644 --- a/code/__HELPERS/verb_helpers.html +++ b/code/__HELPERS/verb_helpers.html @@ -14,7 +14,7 @@

code/__HELPERS/verb_helpers.dm - +

@@ -24,7 +24,7 @@

code/__HELPERS/verb_helpers.dm

handles removing verb and sending it to browser to update, use this for removing verbs
diff --git a/code/_byond_version_compat.html b/code/_byond_version_compat.html index 5ca2e352c51d..690bf36ec059 100644 --- a/code/_byond_version_compat.html +++ b/code/_byond_version_compat.html @@ -14,7 +14,7 @@ — Define Details

code/_byond_version_compat.dm - +

@@ -25,33 +25,33 @@

code/_byond_version_compat.dm

GLOBAL_PROC_REFCall by name proc reference, checks if the proc is an existing global proc

Define Details

GLOBAL_PROC_REF - +

Call by name proc reference, checks if the proc is an existing global proc

PROC_REF - +

Call by name proc references, checks if the proc exists on either this type or as a global proc.

TYPE_PROC_REF - +

Call by name proc reference, checks if the proc exists on either the given type or as a global proc

TYPE_VERB_REF - +

Call by name verb reference, checks if the verb exists on either the given type or as a global verb

VERB_REF - +

Call by name verb references, checks if the verb exists on either this type or as a global verb.

diff --git a/code/_globalvars/bitfields.html b/code/_globalvars/bitfields.html index 467634603921..d829d9cbda8b 100644 --- a/code/_globalvars/bitfields.html +++ b/code/_globalvars/bitfields.html @@ -14,7 +14,7 @@

code/_globalvars/bitfields.dm - +

@@ -23,7 +23,7 @@

code/_globalvars/bitfields.dm

Turns /datum/bitfield subtypes into a list for use in debugging
diff --git a/code/_globalvars/global_lists.html b/code/_globalvars/global_lists.html index a4cf9df7db3f..8419da6b2698 100644 --- a/code/_globalvars/global_lists.html +++ b/code/_globalvars/global_lists.html @@ -14,7 +14,7 @@

code/_globalvars/global_lists.dm - +

@@ -24,7 +24,7 @@

code/_globalvars/global_lists.dm

Setup for Hazard joe emotes and category list, returns data for hj_emotes
diff --git a/code/_globalvars/lists/keybindings.html b/code/_globalvars/lists/keybindings.html index 25623844a349..0f82b23b74df 100644 --- a/code/_globalvars/lists/keybindings.html +++ b/code/_globalvars/lists/keybindings.html @@ -14,7 +14,7 @@

code/_globalvars/lists/keybindings.dm - +

@@ -24,7 +24,7 @@

code/_globalvars/lists/keybindings.dm

Adds an instanced keybinding to the global tracker
diff --git a/code/_globalvars/misc.html b/code/_globalvars/misc.html index 0ac17a6dd153..ce4c66096285 100644 --- a/code/_globalvars/misc.html +++ b/code/_globalvars/misc.html @@ -14,7 +14,7 @@ — Define Details

code/_globalvars/misc.dm - +

@@ -23,17 +23,17 @@

code/_globalvars/misc.dm

/proc/setup_offset Sets the offset 2 lines above.

Define Details

shuttle_time_in_station - +

3 minutes in the station.

shuttle_time_to_arrive - +

10 minutes to arrive.

diff --git a/code/_macros.html b/code/_macros.html index eabbd8452c7a..877754bf9611 100644 --- a/code/_macros.html +++ b/code/_macros.html @@ -14,7 +14,7 @@ — Define Details

code/_macros.dm - +

@@ -27,43 +27,43 @@

code/_macros.dm

LAZYORASSOCLISTPerforms an insertion on the given lazy list with the given key and value. If the value already exists, a new one will not be made.

Define Details

LAZYACCESSASSOC - +

Accesses an associative list, returns null if nothing is found

LAZYADDASSOC - +

Adds to the item K the value V, if the list is null it will initialize it

LAZYADDASSOCLIST - +

This is used to add onto lazy assoc list when the value you're adding is a /list/. This one has extra safety over lazyaddassoc because the value could be null (and thus cant be used to += objects)

LAZYFIND - +

Returns the key of the submitted item in the list

LAZYORASSOCLIST - +

Performs an insertion on the given lazy list with the given key and value. If the value already exists, a new one will not be made.

LAZYREMOVEASSOC - +

Removes the value V from the item K, if the item K is empty will remove it from the list, if the list is empty will set the list to null

debug_msg - +

A message define designed to be easily found and deleted

diff --git a/code/_onclick/hud/map_popups.html b/code/_onclick/hud/map_popups.html index 4fecff2968ab..ba8e1f83469a 100644 --- a/code/_onclick/hud/map_popups.html +++ b/code/_onclick/hud/map_popups.html @@ -14,7 +14,7 @@

code/_onclick/hud/map_popups.dm - +

@@ -27,7 +27,7 @@

code/_onclick/hud/map_popups.dm be used for auto-scaling the map.

diff --git a/code/_onclick/hud/rendering/_render_readme.html b/code/_onclick/hud/rendering/_render_readme.html index 54c705d43c1c..4c79b46aa8a1 100644 --- a/code/_onclick/hud/rendering/_render_readme.html +++ b/code/_onclick/hud/rendering/_render_readme.html @@ -14,7 +14,7 @@

The Render Readme - +

@@ -61,7 +61,7 @@

The Render Readme

diff --git a/code/_onclick/hud/rendering/plane_master.html b/code/_onclick/hud/rendering/plane_master.html index 5f1f83ea0bbd..eaae422e8689 100644 --- a/code/_onclick/hud/rendering/plane_master.html +++ b/code/_onclick/hud/rendering/plane_master.html @@ -14,7 +14,7 @@

code/_onclick/hud/rendering/plane_master.dm - +

@@ -34,7 +34,7 @@

code/_onclick/hud/rendering/plane_master.dm

/atom/movable/screen/plane_master/emissiveHandles emissive overlays and emissive blockers.
diff --git a/code/_onclick/hud/rendering/plane_master_controller.html b/code/_onclick/hud/rendering/plane_master_controller.html index 3c61f2f67227..1653d97c31be 100644 --- a/code/_onclick/hud/rendering/plane_master_controller.html +++ b/code/_onclick/hud/rendering/plane_master_controller.html @@ -14,7 +14,7 @@

code/_onclick/hud/rendering/plane_master_controller.dm - +

@@ -23,7 +23,7 @@

code/_onclick/hud/rendering/plane_master_controller.dm This is the whole game and the UI, but not the escape menu.

diff --git a/code/_onclick/hud/rendering/render_plate.html b/code/_onclick/hud/rendering/render_plate.html index fdbb8b129a91..34244c8a929a 100644 --- a/code/_onclick/hud/rendering/render_plate.html +++ b/code/_onclick/hud/rendering/render_plate.html @@ -14,7 +14,7 @@

code/_onclick/hud/rendering/render_plate.dm - +

@@ -28,7 +28,7 @@

code/_onclick/hud/rendering/render_plate.dm

/atom/movable/screen/plane_master/rendering_plate/non_gamerender plate for OOC stuff like ghosts, hud-screen effects, etc
diff --git a/code/_onclick/hud/screen_object_holder.html b/code/_onclick/hud/screen_object_holder.html index 77447f8338b2..9c2c31c75ce7 100644 --- a/code/_onclick/hud/screen_object_holder.html +++ b/code/_onclick/hud/screen_object_holder.html @@ -14,7 +14,7 @@

code/_onclick/hud/screen_object_holder.dm - +

@@ -22,7 +22,7 @@

code/_onclick/hud/screen_object_holder.dm to easily remove from later.

diff --git a/code/controllers/configuration/config_entry.html b/code/controllers/configuration/config_entry.html index f9bb038c57fe..35dd197da440 100644 --- a/code/controllers/configuration/config_entry.html +++ b/code/controllers/configuration/config_entry.html @@ -14,14 +14,14 @@

code/controllers/configuration/config_entry.dm - +

/datum/config_entry/str_listList config entry, used for configuring a list of strings
diff --git a/code/controllers/configuration/entries/game_options.html b/code/controllers/configuration/entries/game_options.html index 2e81191cd132..c676f8e74e1a 100644 --- a/code/controllers/configuration/entries/game_options.html +++ b/code/controllers/configuration/entries/game_options.html @@ -14,7 +14,7 @@

code/controllers/configuration/entries/game_options.dm - +

@@ -22,7 +22,7 @@

code/controllers/configuration/entries/game_options.dm

/datum/config_entry/number/extra_larva_per_burstUsed to determine how many extra larva you want per burst. Supports fractions. See /datum/hive_status/proc/increase_larva_after_burst()
diff --git a/code/controllers/configuration/entries/general.html b/code/controllers/configuration/entries/general.html index 40a78b24e126..aa596a9e5a96 100644 --- a/code/controllers/configuration/entries/general.html +++ b/code/controllers/configuration/entries/general.html @@ -14,7 +14,7 @@

code/controllers/configuration/entries/general.dm - +

@@ -35,7 +35,7 @@

code/controllers/configuration/entries/general.dm

/datum/config_entry/keyed_list/connection_relay_pingRelay Ping Browser configuration
diff --git a/code/controllers/mc/failsafe.html b/code/controllers/mc/failsafe.html index b29de8b14d32..ef1f22b791c2 100644 --- a/code/controllers/mc/failsafe.html +++ b/code/controllers/mc/failsafe.html @@ -14,7 +14,7 @@

code/controllers/mc/failsafe.dm - +

@@ -26,7 +26,7 @@

code/controllers/mc/failsafe.dm

Delete all existing SS to basically start over
diff --git a/code/controllers/mc/master.html b/code/controllers/mc/master.html index 8c21baacd69e..76a0c7be3111 100644 --- a/code/controllers/mc/master.html +++ b/code/controllers/mc/master.html @@ -14,7 +14,7 @@

code/controllers/mc/master.dm - +

@@ -26,7 +26,7 @@

code/controllers/mc/master.dm for scheduling different subsystems for different stages of the round

diff --git a/code/controllers/mc/subsystem.html b/code/controllers/mc/subsystem.html index 3e5ffa31defa..8e3683517e36 100644 --- a/code/controllers/mc/subsystem.html +++ b/code/controllers/mc/subsystem.html @@ -14,14 +14,14 @@

code/controllers/mc/subsystem.dm - +

/datum/controller/subsystemDefines a subsystem to be managed by the Master Controller
diff --git a/code/controllers/subsystem/autofire.html b/code/controllers/subsystem/autofire.html index 5a4e9dda9ea0..d385a905e2fb 100644 --- a/code/controllers/subsystem/autofire.html +++ b/code/controllers/subsystem/autofire.html @@ -14,7 +14,7 @@

code/controllers/subsystem/autofire.dm - +

@@ -22,7 +22,7 @@

code/controllers/subsystem/autofire.dm

diff --git a/code/controllers/subsystem/chat.html b/code/controllers/subsystem/chat.html index f5454a9b3453..2f251d0148aa 100644 --- a/code/controllers/subsystem/chat.html +++ b/code/controllers/subsystem/chat.html @@ -14,7 +14,7 @@

code/controllers/subsystem/chat.dm - +

@@ -22,7 +22,7 @@

code/controllers/subsystem/chat.dm SPDX-License-Identifier: MIT

diff --git a/code/controllers/subsystem/game_decorator.html b/code/controllers/subsystem/game_decorator.html index 0735f5b13961..e058a49fd046 100644 --- a/code/controllers/subsystem/game_decorator.html +++ b/code/controllers/subsystem/game_decorator.html @@ -14,14 +14,14 @@

code/controllers/subsystem/game_decorator.dm - +

So map decoration is done post-setup after nightmare and spawners

diff --git a/code/controllers/subsystem/garbage.html b/code/controllers/subsystem/garbage.html index a3fd0c7b2dd4..2404dc4ad004 100644 --- a/code/controllers/subsystem/garbage.html +++ b/code/controllers/subsystem/garbage.html @@ -14,7 +14,7 @@

code/controllers/subsystem/garbage.dm - +

@@ -50,7 +50,7 @@

code/controllers/subsystem/garbage.dm

Should be treated as a replacement for the 'del' keyword.
diff --git a/code/controllers/subsystem/influxdriver.html b/code/controllers/subsystem/influxdriver.html index 90d2c7f9f6ad..05c38615d47d 100644 --- a/code/controllers/subsystem/influxdriver.html +++ b/code/controllers/subsystem/influxdriver.html @@ -14,7 +14,7 @@

code/controllers/subsystem/influxdriver.dm - +

@@ -22,7 +22,7 @@

code/controllers/subsystem/influxdriver.dm

Sends collected statistics to an influxdb v2 backend periodically
diff --git a/code/controllers/subsystem/influxstats.html b/code/controllers/subsystem/influxstats.html index 93d86bcbe116..e602995dcf47 100644 --- a/code/controllers/subsystem/influxstats.html +++ b/code/controllers/subsystem/influxstats.html @@ -14,7 +14,7 @@

code/controllers/subsystem/influxstats.dm - +

@@ -24,7 +24,7 @@

code/controllers/subsystem/influxstats.dm

Current task in progress, for pausing/resuming

diff --git a/code/controllers/subsystem/lighting.html b/code/controllers/subsystem/lighting.html index da7cc7d35faa..14e1350ac1fa 100644 --- a/code/controllers/subsystem/lighting.html +++ b/code/controllers/subsystem/lighting.html @@ -14,7 +14,7 @@

code/controllers/subsystem/lighting.dm - +

@@ -24,7 +24,7 @@

code/controllers/subsystem/lighting.dm

List of hybrid lighting sources queued for update.

diff --git a/code/controllers/subsystem/minimap.html b/code/controllers/subsystem/minimap.html index 97e53cd4132c..f11f97530962 100644 --- a/code/controllers/subsystem/minimap.html +++ b/code/controllers/subsystem/minimap.html @@ -14,7 +14,7 @@

code/controllers/subsystem/minimap.dm - +

@@ -43,7 +43,7 @@

code/controllers/subsystem/minimap.dm

Gets the MINIMAP_FLAG for the provided faction or hivenumber if one exists
diff --git a/code/controllers/subsystem/pager_status.html b/code/controllers/subsystem/pager_status.html index 635258b040a6..c117c7eeb5d6 100644 --- a/code/controllers/subsystem/pager_status.html +++ b/code/controllers/subsystem/pager_status.html @@ -14,7 +14,7 @@

code/controllers/subsystem/pager_status.dm - +

@@ -22,7 +22,7 @@

code/controllers/subsystem/pager_status.dm

Updates BYOND pager status periodically
diff --git a/code/controllers/subsystem/ping.html b/code/controllers/subsystem/ping.html index 013a8debd4a4..14bb4869664b 100644 --- a/code/controllers/subsystem/ping.html +++ b/code/controllers/subsystem/ping.html @@ -14,7 +14,7 @@

code/controllers/subsystem/ping.dm - +

@@ -22,7 +22,7 @@

code/controllers/subsystem/ping.dm SPDX-License-Identifier: MIT

diff --git a/code/controllers/subsystem/shuttles.html b/code/controllers/subsystem/shuttles.html index ddeb6609cfc9..b72d4782878b 100644 --- a/code/controllers/subsystem/shuttles.html +++ b/code/controllers/subsystem/shuttles.html @@ -14,7 +14,7 @@ — Define Details

code/controllers/subsystem/shuttles.dm - +

@@ -23,22 +23,22 @@

code/controllers/subsystem/shuttles.dm If we're under load we want to allow for cycling, but if not we want to preserve already generated docks for use

SHUTTLE_SPAWN_BUFFERGive a shuttle 10 "fires" (~10 seconds) to spawn before it can be cleaned up.

Define Details

MAX_TRANSIT_TILE_COUNT - +

How many turfs to allow before we stop blocking transit requests

SHUTTLE_SPAWN_BUFFER - +

Give a shuttle 10 "fires" (~10 seconds) to spawn before it can be cleaned up.

SOFT_TRANSIT_RESERVATION_THRESHOLD - +

How many turfs to allow before we start freeing up existing "soft reserved" transit docks If we're under load we want to allow for cycling, but if not we want to preserve already generated docks for use

diff --git a/code/controllers/subsystem/statpanel.html b/code/controllers/subsystem/statpanel.html index 49217cccd5f7..335d15b23035 100644 --- a/code/controllers/subsystem/statpanel.html +++ b/code/controllers/subsystem/statpanel.html @@ -14,7 +14,7 @@

code/controllers/subsystem/statpanel.dm - +

@@ -23,7 +23,7 @@

code/controllers/subsystem/statpanel.dm And need a safe place to do the registration

diff --git a/code/controllers/subsystem/tgui.html b/code/controllers/subsystem/tgui.html index d04cacef297b..fee2328c744e 100644 --- a/code/controllers/subsystem/tgui.html +++ b/code/controllers/subsystem/tgui.html @@ -14,7 +14,7 @@

code/controllers/subsystem/tgui.dm - +

@@ -24,7 +24,7 @@

code/controllers/subsystem/tgui.dm

tgui subsystem
diff --git a/code/controllers/subsystem/timer.html b/code/controllers/subsystem/timer.html index 420a5041b9eb..112fd1308682 100644 --- a/code/controllers/subsystem/timer.html +++ b/code/controllers/subsystem/timer.html @@ -14,7 +14,7 @@ — Define Details

code/controllers/subsystem/timer.dm - +

@@ -37,27 +37,27 @@

code/controllers/subsystem/timer.dm

Update the delay on an existing LOOPING timer Will come into effect on the next process

Define Details

BUCKET_LEN - +

Controls how many buckets should be kept, each representing a tick. (1 minutes worth)

BUCKET_POS - +

Helper for getting the correct bucket for a given timer

TIMER_ID_MAX - +

Max float with integer precision

TIMER_MAX - +

Gets the maximum time at which timers will be invoked from buckets, used for deferring to secondary queue

diff --git a/code/datums/action.html b/code/datums/action.html index d30b2b94b8e5..8a262d13ee27 100644 --- a/code/datums/action.html +++ b/code/datums/action.html @@ -14,7 +14,7 @@

code/datums/action.dm - +

@@ -22,7 +22,7 @@

code/datums/action.dm

Gives an action to a mob and returns it
diff --git a/code/datums/balloon_alerts/balloon_alerts.html b/code/datums/balloon_alerts/balloon_alerts.html index b2268db2b6ed..c7bb5f2265a2 100644 --- a/code/datums/balloon_alerts/balloon_alerts.html +++ b/code/datums/balloon_alerts/balloon_alerts.html @@ -14,24 +14,24 @@ — Define Details

code/datums/balloon_alerts/balloon_alerts.dm - +

BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULTThe increase in duration per character in seconds
BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MINThe amount of characters needed before this increase takes into effect

Define Details

BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN - +

The amount of characters needed before this increase takes into effect

BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT - +

The increase in duration per character in seconds

diff --git a/code/datums/beam.html b/code/datums/beam.html index d719f54c71ae..66d728742c58 100644 --- a/code/datums/beam.html +++ b/code/datums/beam.html @@ -14,14 +14,14 @@

code/datums/beam.dm - +

/datum/beam
diff --git a/code/datums/components/_component.html b/code/datums/components/_component.html index c5dd99824db5..28f5c5dc5239 100644 --- a/code/datums/components/_component.html +++ b/code/datums/components/_component.html @@ -14,14 +14,14 @@

code/datums/components/_component.dm - +

/datum/componentThe component datum
diff --git a/code/datums/components/armor_link.html b/code/datums/components/armor_link.html index 3a2ffd6337fe..28bdd2316ccd 100644 --- a/code/datums/components/armor_link.html +++ b/code/datums/components/armor_link.html @@ -14,7 +14,7 @@

code/datums/components/armor_link.dm - +

@@ -24,7 +24,7 @@

code/datums/components/armor_link.dm Ex: Marine boots have their armor values change based on what type of armor you're wearing on your chest

diff --git a/code/datums/components/bad_leg.html b/code/datums/components/bad_leg.html index 56a2a6b9602d..c48d10835229 100644 --- a/code/datums/components/bad_leg.html +++ b/code/datums/components/bad_leg.html @@ -14,19 +14,19 @@ — Define Details

code/datums/components/bad_leg.dm - +

MAX_STEPSMaximum amount of steps you can take until you get stunned from pain.

Define Details

MAX_STEPS - +

Maximum amount of steps you can take until you get stunned from pain.

diff --git a/code/datums/components/bonus_damage_stack.html b/code/datums/components/bonus_damage_stack.html index e5dd838aa67c..6a6a99a416c2 100644 --- a/code/datums/components/bonus_damage_stack.html +++ b/code/datums/components/bonus_damage_stack.html @@ -14,24 +14,24 @@ — Define Details

code/datums/components/bonus_damage_stack.dm - +

BONUS_DAMAGE_MAX_ALPHAMax alpha for the filter outline.
BONUS_DAMAGE_STACK_LOSS_PER_SECONDLoss of stack every second once it's been more than 5 seconds since last_stack.

Define Details

BONUS_DAMAGE_MAX_ALPHA - +

Max alpha for the filter outline.

BONUS_DAMAGE_STACK_LOSS_PER_SECOND - +

Loss of stack every second once it's been more than 5 seconds since last_stack.

diff --git a/code/datums/components/cluster_stack.html b/code/datums/components/cluster_stack.html index abd8064ea624..e45f30c9c89e 100644 --- a/code/datums/components/cluster_stack.html +++ b/code/datums/components/cluster_stack.html @@ -14,7 +14,7 @@ — Define Details

code/datums/components/cluster_stack.dm - +

@@ -22,21 +22,21 @@

code/datums/components/cluster_stack.dm

MAX_CLUSTER_STACKSOnce cluster_stacks reaches this number, it triggers apply_cluster_stacks() and resets to zero.
CLUSTER_STACK_LOSS_PER_SECONDLoss of stack every second once it's been more than 5 seconds since last_stack.

Define Details

CLUSTER_MAX_ALPHA - +

Max alpha for the filter outline.

CLUSTER_STACK_LOSS_PER_SECOND - +

Loss of stack every second once it's been more than 5 seconds since last_stack.

MAX_CLUSTER_STACKS - +

Once cluster_stacks reaches this number, it triggers apply_cluster_stacks() and resets to zero.

diff --git a/code/datums/components/connect_mob_behalf.html b/code/datums/components/connect_mob_behalf.html index 3756bff5e900..becb1462e264 100644 --- a/code/datums/components/connect_mob_behalf.html +++ b/code/datums/components/connect_mob_behalf.html @@ -14,7 +14,7 @@

code/datums/components/connect_mob_behalf.dm - +

@@ -23,7 +23,7 @@

code/datums/components/connect_mob_behalf.dm We retain the ability to react to that signal on a separate listener, which makes this quite powerful

diff --git a/code/datums/components/footstep.html b/code/datums/components/footstep.html index ad0f4e20b5ed..b0660d3bd05c 100644 --- a/code/datums/components/footstep.html +++ b/code/datums/components/footstep.html @@ -14,14 +14,14 @@

code/datums/components/footstep.dm - +

/datum/component/footstepFootstep component. Plays footsteps at parents location when it is appropriate.
diff --git a/code/datums/components/label.html b/code/datums/components/label.html index 2da08e62573e..d14954b1ba4b 100644 --- a/code/datums/components/label.html +++ b/code/datums/components/label.html @@ -14,14 +14,14 @@

code/datums/components/label.dm - +

/datum/component/labelThe label component.
diff --git a/code/datums/components/overlay_lighting.html b/code/datums/components/overlay_lighting.html index ba044a0a57ef..e1822d1e9378 100644 --- a/code/datums/components/overlay_lighting.html +++ b/code/datums/components/overlay_lighting.html @@ -14,7 +14,7 @@ — Define Details

code/datums/components/overlay_lighting.dm - +

@@ -22,17 +22,17 @@

code/datums/components/overlay_lighting.dm

LIGHTING_ATTACHEDIs the parent attached to something else, its loc? Then we need to keep an eye of this.
/datum/component/overlay_lightingMovable atom overlay-based lighting component.

Define Details

LIGHTING_ATTACHED - +

Is the parent attached to something else, its loc? Then we need to keep an eye of this.

LIGHTING_ON - +

For switchable lights, is it on and currently emitting light?

diff --git a/code/datums/components/rename.html b/code/datums/components/rename.html index ee2abc79f26f..cb3034977e4a 100644 --- a/code/datums/components/rename.html +++ b/code/datums/components/rename.html @@ -14,14 +14,14 @@

code/datums/components/rename.dm - +

/datum/component/renameThe rename component.
diff --git a/code/datums/components/weed_food.html b/code/datums/components/weed_food.html index 90107356cbc7..d8841227ddc5 100644 --- a/code/datums/components/weed_food.html +++ b/code/datums/components/weed_food.html @@ -14,7 +14,7 @@

code/datums/components/weed_food.dm - +

@@ -22,7 +22,7 @@

code/datums/components/weed_food.dm Attempting to attach a new weed_food even if one already exists is equivalent to calling start().

diff --git a/code/datums/datum.html b/code/datums/datum.html index eb9f3484cfb2..3c255854feec 100644 --- a/code/datums/datum.html +++ b/code/datums/datum.html @@ -14,7 +14,7 @@

code/datums/datum.dm - +

@@ -25,7 +25,7 @@

code/datums/datum.dm

Proc used by stoppable timers to end a cooldown before the time has ran out.
diff --git a/code/datums/decorators/gamemode_decorator.html b/code/datums/decorators/gamemode_decorator.html index 8bc3a875ddb9..511921da9ad3 100644 --- a/code/datums/decorators/gamemode_decorator.html +++ b/code/datums/decorators/gamemode_decorator.html @@ -14,7 +14,7 @@

code/datums/decorators/gamemode_decorator.dm - +

@@ -22,7 +22,7 @@

code/datums/decorators/gamemode_decorator.dm to assist in balancing varied gameplay in different modes

diff --git a/code/datums/elements/_element.html b/code/datums/elements/_element.html index fd9ea4b9296f..0f94265a2dd7 100644 --- a/code/datums/elements/_element.html +++ b/code/datums/elements/_element.html @@ -14,14 +14,14 @@

code/datums/elements/_element.dm - +

/datum/elementA holder for simple behaviour that can be attached to many different types
diff --git a/code/datums/elements/bullet_trait/bullet_trait.html b/code/datums/elements/bullet_trait/bullet_trait.html index 211f0585e034..e08ac046fa51 100644 --- a/code/datums/elements/bullet_trait/bullet_trait.html +++ b/code/datums/elements/bullet_trait/bullet_trait.html @@ -14,7 +14,7 @@

A PROTOTYPE FOR MAKING ANY BULLET TRAITS - +

@@ -40,7 +40,7 @@

A PROTOTYPE FOR MAKING ANY BULLET TRAITS

diff --git a/code/datums/elements/light_blocking.html b/code/datums/elements/light_blocking.html index d85a2f23ac29..e346e88d1c99 100644 --- a/code/datums/elements/light_blocking.html +++ b/code/datums/elements/light_blocking.html @@ -14,14 +14,14 @@

code/datums/elements/light_blocking.dm - +

/datum/element/light_blockingAttached to movable atoms with opacity. Listens to them move and updates their old and new turf loc's opacity accordingly.
diff --git a/code/datums/elements/strippable.html b/code/datums/elements/strippable.html index 8d3df3a74995..8e7f41143653 100644 --- a/code/datums/elements/strippable.html +++ b/code/datums/elements/strippable.html @@ -14,7 +14,7 @@

code/datums/elements/strippable.dm - +

@@ -26,7 +26,7 @@

code/datums/elements/strippable.dm

Creates an assoc list of keys to /datum/strippable_item
diff --git a/code/datums/elements/suturing.html b/code/datums/elements/suturing.html index 87b02cc574e2..1390d55ab754 100644 --- a/code/datums/elements/suturing.html +++ b/code/datums/elements/suturing.html @@ -14,14 +14,14 @@

code/datums/elements/suturing.dm - +

/datum/suture_handlerHandles sutures for this limb. Doesn't process, updates on limb damage and new suture attempts.
diff --git a/code/datums/emotes.html b/code/datums/emotes.html index 994d6dfb31d4..16173c16d5fc 100644 --- a/code/datums/emotes.html +++ b/code/datums/emotes.html @@ -14,14 +14,14 @@

code/datums/emotes.dm - +

/datum/emoteMost of the text that's not someone talking is based off of this.
diff --git a/code/datums/entities/player_note.html b/code/datums/entities/player_note.html index e2294e510aff..73a90ab9f90c 100644 --- a/code/datums/entities/player_note.html +++ b/code/datums/entities/player_note.html @@ -14,7 +14,7 @@

code/datums/entities/player_note.dm - +

@@ -22,7 +22,7 @@

code/datums/entities/player_note.dm

Returns all notes associated with a CKEY, structured as a list of strings.
diff --git a/code/datums/entities/player_times.html b/code/datums/entities/player_times.html index 62c2bbeac631..10ef1e548a89 100644 --- a/code/datums/entities/player_times.html +++ b/code/datums/entities/player_times.html @@ -14,7 +14,7 @@

code/datums/entities/player_times.dm - +

@@ -22,7 +22,7 @@

code/datums/entities/player_times.dm

Returns the total time in minutes a specific player ID has played for
diff --git a/code/datums/helper_datums/stack_end_detector.html b/code/datums/helper_datums/stack_end_detector.html index ca7cf2fd00d1..b443d7a50a68 100644 --- a/code/datums/helper_datums/stack_end_detector.html +++ b/code/datums/helper_datums/stack_end_detector.html @@ -14,7 +14,7 @@

code/datums/helper_datums/stack_end_detector.dm - +

@@ -23,7 +23,7 @@

code/datums/helper_datums/stack_end_detector.dm

/datum/stack_canaryStack canary. Will go away if the stack it was primed by is ended by byond for return or stack overflow reasons.
diff --git a/code/datums/lazy_template.html b/code/datums/lazy_template.html index 22b5095008ad..e77ab802470c 100644 --- a/code/datums/lazy_template.html +++ b/code/datums/lazy_template.html @@ -14,7 +14,7 @@

code/datums/lazy_template.dm - +

@@ -22,7 +22,7 @@

code/datums/lazy_template.dm but do want to be loaded under certain circumstances. Use this for stuff like the nukie base or wizden, aka stuff that only matters when their antag is rolled.

diff --git a/code/datums/looping_sounds/_looping_sound.html b/code/datums/looping_sounds/_looping_sound.html index a5da3a364bf4..a6a0d0b0981f 100644 --- a/code/datums/looping_sounds/_looping_sound.html +++ b/code/datums/looping_sounds/_looping_sound.html @@ -14,14 +14,14 @@

code/datums/looping_sounds/_looping_sound.dm - +

/datum/looping_soundA datum for sounds that need to loop, with a high amount of configurability.
diff --git a/code/datums/movement_detector.html b/code/datums/movement_detector.html index c932f82986de..c73215ba378b 100644 --- a/code/datums/movement_detector.html +++ b/code/datums/movement_detector.html @@ -14,14 +14,14 @@

code/datums/movement_detector.dm - +

/datum/movement_detectorA datum to handle the busywork of registering signals to handle in depth tracking of a movable
diff --git a/code/datums/mutable_appearance.html b/code/datums/mutable_appearance.html index 2db5133f172d..b78806d0f789 100644 --- a/code/datums/mutable_appearance.html +++ b/code/datums/mutable_appearance.html @@ -14,7 +14,7 @@

code/datums/mutable_appearance.dm - +

@@ -22,7 +22,7 @@

code/datums/mutable_appearance.dm

Helper similar to image()
diff --git a/code/datums/quadtree.html b/code/datums/quadtree.html index 278fe3bb3f11..a2a918f754cc 100644 --- a/code/datums/quadtree.html +++ b/code/datums/quadtree.html @@ -14,7 +14,7 @@

code/datums/quadtree.dm - +

@@ -25,7 +25,7 @@

code/datums/quadtree.dm

/datum/shape/ellipse/circleA simple geometric shape for testing collisions and intersections. This one is a circle.
diff --git a/code/datums/redis/callbacks/_redis_callback.html b/code/datums/redis/callbacks/_redis_callback.html index bfdf5b43ff6a..2d0e23b1b638 100644 --- a/code/datums/redis/callbacks/_redis_callback.html +++ b/code/datums/redis/callbacks/_redis_callback.html @@ -14,7 +14,7 @@

code/datums/redis/callbacks/_redis_callback.dm - +

@@ -23,7 +23,7 @@

code/datums/redis/callbacks/_redis_callback.dm are automatically registered in SSredis initialization

diff --git a/code/datums/redis/redis_message.html b/code/datums/redis/redis_message.html index 8cde291a399d..dddbeb712e47 100644 --- a/code/datums/redis/redis_message.html +++ b/code/datums/redis/redis_message.html @@ -14,14 +14,14 @@

code/datums/redis/redis_message.dm - +

/datum/redis_messageUsed to hold redis messages created prior to the initialization of SSredis
diff --git a/code/datums/skills/skills.html b/code/datums/skills/skills.html index 5e4cb1722f78..a0fb7b2ea48e 100644 --- a/code/datums/skills/skills.html +++ b/code/datums/skills/skills.html @@ -14,7 +14,7 @@

code/datums/skills/skills.dm - +

@@ -22,7 +22,7 @@

code/datums/skills/skills.dm This is to organize and provide a common interface to the huge heap of skills there are

diff --git a/code/datums/statistics/entities/human_stats.html b/code/datums/statistics/entities/human_stats.html index d267f9476567..c0032c2d6521 100644 --- a/code/datums/statistics/entities/human_stats.html +++ b/code/datums/statistics/entities/human_stats.html @@ -14,7 +14,7 @@

code/datums/statistics/entities/human_stats.dm - +

@@ -24,7 +24,7 @@

code/datums/statistics/entities/human_stats.dm

list of all medals earned

diff --git a/code/datums/statistics/entities/player_entity.html b/code/datums/statistics/entities/player_entity.html index 82fdde1a11e4..e24f6f75905c 100644 --- a/code/datums/statistics/entities/player_entity.html +++ b/code/datums/statistics/entities/player_entity.html @@ -14,7 +14,7 @@

code/datums/statistics/entities/player_entity.dm - +

@@ -22,7 +22,7 @@

code/datums/statistics/entities/player_entity.dm Indexed list of /datum/entity/statistic/death

diff --git a/code/datums/statistics/entities/weapon_stats.html b/code/datums/statistics/entities/weapon_stats.html index b144ceeb923e..bec9521d28be 100644 --- a/code/datums/statistics/entities/weapon_stats.html +++ b/code/datums/statistics/entities/weapon_stats.html @@ -14,7 +14,7 @@

code/datums/statistics/entities/weapon_stats.dm - +

@@ -23,7 +23,7 @@

code/datums/statistics/entities/weapon_stats.dm Indexed list of /datum/entity/statistic, "caste" = number

diff --git a/code/datums/status_effects/_status_effect.html b/code/datums/status_effects/_status_effect.html index 6a9fba4482b8..6fcc7a47b05a 100644 --- a/code/datums/status_effects/_status_effect.html +++ b/code/datums/status_effects/_status_effect.html @@ -14,7 +14,7 @@

code/datums/status_effects/_status_effect.dm - +

@@ -23,7 +23,7 @@

code/datums/status_effects/_status_effect.dm

/atom/movable/screen/alert/status_effectAlert base type for status effect alerts
diff --git a/code/datums/status_effects/debuffs/debuffs.html b/code/datums/status_effects/debuffs/debuffs.html index 5788c0352d3c..f3cef8a9c231 100644 --- a/code/datums/status_effects/debuffs/debuffs.html +++ b/code/datums/status_effects/debuffs/debuffs.html @@ -14,7 +14,7 @@

code/datums/status_effects/debuffs/debuffs.dm - +

@@ -22,7 +22,7 @@

code/datums/status_effects/debuffs/debuffs.dm This prevents talking as human or using abilities as Xenos, mainly

diff --git a/code/datums/status_effects/grouped_effect.html b/code/datums/status_effects/grouped_effect.html index 4d80a6a1266e..f2f2ade3cf80 100644 --- a/code/datums/status_effects/grouped_effect.html +++ b/code/datums/status_effects/grouped_effect.html @@ -14,14 +14,14 @@

code/datums/status_effects/grouped_effect.dm - +

/datum/status_effect/groupedStatus effect from multiple sources, when all sources are removed, so is the effect
diff --git a/code/datums/status_effects/limited_effect.html b/code/datums/status_effects/limited_effect.html index 4a85da1892b0..0278a06bac8e 100644 --- a/code/datums/status_effects/limited_effect.html +++ b/code/datums/status_effects/limited_effect.html @@ -14,14 +14,14 @@

code/datums/status_effects/limited_effect.dm - +

/datum/status_effect/limited_buffThese effects reapply their on_apply() effect when refreshed while stacks < max_stacks.
diff --git a/code/datums/status_effects/stacking_effect.html b/code/datums/status_effects/stacking_effect.html index 9746922fde09..61ad91682670 100644 --- a/code/datums/status_effects/stacking_effect.html +++ b/code/datums/status_effects/stacking_effect.html @@ -14,14 +14,14 @@

code/datums/status_effects/stacking_effect.dm - +

/datum/status_effect/stackingStatus effects that can stack.
diff --git a/code/datums/tutorial/_tutorial.html b/code/datums/tutorial/_tutorial.html index 25d21f460c6c..55ebe87ed298 100644 --- a/code/datums/tutorial/_tutorial.html +++ b/code/datums/tutorial/_tutorial.html @@ -14,14 +14,14 @@

code/datums/tutorial/_tutorial.dm - +

/datum/tutorialA tutorial datum contains a set of instructions for a player tutorial, such as what to spawn, what's scripted to occur, and so on.
diff --git a/code/datums/tutorial/creating_a_tutorial.html b/code/datums/tutorial/creating_a_tutorial.html index 0e85765a2148..cf3d826f46b0 100644 --- a/code/datums/tutorial/creating_a_tutorial.html +++ b/code/datums/tutorial/creating_a_tutorial.html @@ -14,7 +14,7 @@

Tutorial Creation - +

@@ -193,7 +193,7 @@

Tutorial Creation

diff --git a/code/datums/tutorial/marine/reqs_line.html b/code/datums/tutorial/marine/reqs_line.html index bc163542e80b..7df162a818c4 100644 --- a/code/datums/tutorial/marine/reqs_line.html +++ b/code/datums/tutorial/marine/reqs_line.html @@ -14,7 +14,7 @@ — Define Details

code/datums/tutorial/marine/reqs_line.dm - +

@@ -26,33 +26,33 @@

code/datums/tutorial/marine/reqs_line.dm

TUTORIAL_REQS_LINE_SURVIVAL_DIFFICULTYHow fast to increase difficulty in survival mode (amount of items/agents)
/datum/tutorial/marine/reqs_lineSimulates the Requisitions Line experience for newcomers

Define Details

TUTORIAL_REQS_LINE_STAGE_ATTACHIES - +

Reqs Tutorial Stage 1: Give me some attachies

TUTORIAL_REQS_LINE_STAGE_GEARBOX - +

Reqs Tutorial Stage 2: I would like an HPR

TUTORIAL_REQS_LINE_STAGE_MIXED - +

Reqs Tutorial Stage 3: Multiple items. Also toss something over..

TUTORIAL_REQS_LINE_STAGE_STARTING - +

Reqs Tutorial Stage 0: Get in position

TUTORIAL_REQS_LINE_STAGE_SURVIVAL - +

Reqs Tutorial Stage 4: SURVIVAL MODE, random requests in a loop

TUTORIAL_REQS_LINE_SURVIVAL_DIFFICULTY - +

How fast to increase difficulty in survival mode (amount of items/agents)

diff --git a/code/datums/weather/weather_map_holders/sorokyne.html b/code/datums/weather/weather_map_holders/sorokyne.html index b4a7f2324c38..af51e6e6dac9 100644 --- a/code/datums/weather/weather_map_holders/sorokyne.html +++ b/code/datums/weather/weather_map_holders/sorokyne.html @@ -14,14 +14,14 @@

code/datums/weather/weather_map_holders/sorokyne.dm - +

/datum/weather_ss_map_holder/sorokyneSorokyne's map holder
diff --git a/code/game/area/areas.html b/code/game/area/areas.html index 4080aedccbf2..a276fc6614a4 100644 --- a/code/game/area/areas.html +++ b/code/game/area/areas.html @@ -14,19 +14,19 @@ — Define Details

code/game/area/areas.dm - +

AREA_MUTEDdefine used to mute an area base_muffle = AREA_MUTED

Define Details

AREA_MUTED - +

define used to mute an area base_muffle = AREA_MUTED

diff --git a/code/game/area/strata.html b/code/game/area/strata.html index 111c0713b095..abe5d1bae0f4 100644 --- a/code/game/area/strata.html +++ b/code/game/area/strata.html @@ -14,7 +14,7 @@

code/game/area/strata.dm - +

@@ -34,7 +34,7 @@

code/game/area/strata.dm

/area/strata/ug/interior/outpost/jungJUNGLE STRUCTURES - UNDERGROUND
diff --git a/code/game/jobs/job/antag/antag.html b/code/game/jobs/job/antag/antag.html index 1c5555f9fac1..b8bca9f8d943 100644 --- a/code/game/jobs/job/antag/antag.html +++ b/code/game/jobs/job/antag/antag.html @@ -14,7 +14,7 @@

code/game/jobs/job/antag/antag.dm - +

@@ -22,7 +22,7 @@

code/game/jobs/job/antag/antag.dm

/datum/timelock/tier3t3 and queen time
diff --git a/code/game/jobs/whitelist.html b/code/game/jobs/whitelist.html index a90127c45234..2ad58ed93fce 100644 --- a/code/game/jobs/whitelist.html +++ b/code/game/jobs/whitelist.html @@ -14,7 +14,7 @@

code/game/jobs/whitelist.dm - +

@@ -22,7 +22,7 @@

code/game/jobs/whitelist.dm

returns a list of strings containing the whitelists held by a specific ckey
diff --git a/code/game/machinery/ARES/ARES.html b/code/game/machinery/ARES/ARES.html index 6a350cd0a73f..af8913f0fe5b 100644 --- a/code/game/machinery/ARES/ARES.html +++ b/code/game/machinery/ARES/ARES.html @@ -14,7 +14,7 @@

code/game/machinery/ARES/ARES.dm - +

@@ -23,7 +23,7 @@

code/game/machinery/ARES/ARES.dm

/obj/structure/machinery/ares/substrateMemory Substrate,
diff --git a/code/game/machinery/ARES/ARES_interface_apollo.html b/code/game/machinery/ARES/ARES_interface_apollo.html index 2c6dc531b6e8..1fe9690b0c3d 100644 --- a/code/game/machinery/ARES/ARES_interface_apollo.html +++ b/code/game/machinery/ARES/ARES_interface_apollo.html @@ -14,14 +14,14 @@

code/game/machinery/ARES/ARES_interface_apollo.dm - +

/obj/structure/machinery/computer/working_joeset ticket back to pending
diff --git a/code/game/machinery/ARES/ARES_step_triggers.html b/code/game/machinery/ARES/ARES_step_triggers.html index 8c8e8d1339d2..2a3261d3d7ec 100644 --- a/code/game/machinery/ARES/ARES_step_triggers.html +++ b/code/game/machinery/ARES/ARES_step_triggers.html @@ -14,14 +14,14 @@

code/game/machinery/ARES/ARES_step_triggers.dm - +

/obj/effect/step_trigger/ares_alert/access_controlTrigger will remove ACCESS_MARINE_AI_TEMP unless ACCESS_MARINE_AI is also present.
diff --git a/code/game/machinery/doors/multi_tile.html b/code/game/machinery/doors/multi_tile.html index 110fc2df05e8..c6a38d05fd09 100644 --- a/code/game/machinery/doors/multi_tile.html +++ b/code/game/machinery/doors/multi_tile.html @@ -14,14 +14,14 @@

code/game/machinery/doors/multi_tile.dm - +

/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoorExternal airlock that is part of the lifeboat dock
diff --git a/code/game/machinery/fax_machine.html b/code/game/machinery/fax_machine.html index c42f181d6801..69e5287d58be 100644 --- a/code/game/machinery/fax_machine.html +++ b/code/game/machinery/fax_machine.html @@ -14,7 +14,7 @@

code/game/machinery/fax_machine.dm - +

@@ -22,7 +22,7 @@

code/game/machinery/fax_machine.dm

/obj/item/device/fax_backpackThe wearable and deployable part of the fax machine backpack
diff --git a/code/game/machinery/kitchen/smartfridge.html b/code/game/machinery/kitchen/smartfridge.html index 93ce140ef5f8..7984ef375dea 100644 --- a/code/game/machinery/kitchen/smartfridge.html +++ b/code/game/machinery/kitchen/smartfridge.html @@ -14,14 +14,14 @@

code/game/machinery/kitchen/smartfridge.dm - +

/obj/structure/machinery/smartfridgeAssoc list of names -> list(items)
diff --git a/code/game/machinery/pipe/construction.html b/code/game/machinery/pipe/construction.html index d72757cdd8b3..8a1d55d772e1 100644 --- a/code/game/machinery/pipe/construction.html +++ b/code/game/machinery/pipe/construction.html @@ -14,19 +14,19 @@ — Define Details

code/game/machinery/pipe/construction.dm - +

PIPE_UNIVERSALSupply, scrubbers and universal pipes

Define Details

PIPE_UNIVERSAL - +

Supply, scrubbers and universal pipes

diff --git a/code/game/machinery/pipe/pipe_dispenser.html b/code/game/machinery/pipe/pipe_dispenser.html index e711b6c92a25..d4af0348b55b 100644 --- a/code/game/machinery/pipe/pipe_dispenser.html +++ b/code/game/machinery/pipe/pipe_dispenser.html @@ -14,7 +14,7 @@

code/game/machinery/pipe/pipe_dispenser.dm - +

@@ -22,7 +22,7 @@

code/game/machinery/pipe/pipe_dispenser.dm Z-Level stuff

diff --git a/code/game/objects/effects/aliens.html b/code/game/objects/effects/aliens.html index 3ea177f70714..4df8b5a503cd 100644 --- a/code/game/objects/effects/aliens.html +++ b/code/game/objects/effects/aliens.html @@ -14,7 +14,7 @@

code/game/objects/effects/aliens.dm - +

@@ -22,7 +22,7 @@

code/game/objects/effects/aliens.dm

/obj/effect/xenomorph/xeno_telegraph/lashThis has a brown icon state and does not have a color overlay by default.
diff --git a/code/game/objects/effects/decals/cleanable/misc.html b/code/game/objects/effects/decals/cleanable/misc.html index 2acdf609a0cc..20b1292207f7 100644 --- a/code/game/objects/effects/decals/cleanable/misc.html +++ b/code/game/objects/effects/decals/cleanable/misc.html @@ -14,14 +14,14 @@

code/game/objects/effects/decals/cleanable/misc.dm - +

/obj/effect/decal/cleanable/cobweb2/dynamicVariant used for halloween - need to pass info in constructor as its turned in an overlay
diff --git a/code/game/objects/effects/decals/strata_decals.html b/code/game/objects/effects/decals/strata_decals.html index 2f74e8166248..e16b66e0146b 100644 --- a/code/game/objects/effects/decals/strata_decals.html +++ b/code/game/objects/effects/decals/strata_decals.html @@ -14,7 +14,7 @@

code/game/objects/effects/decals/strata_decals.dm - +

@@ -22,7 +22,7 @@

code/game/objects/effects/decals/strata_decals.dm

/obj/effect/decal/strata_decals/grimeINDOORS STUFF
diff --git a/code/game/objects/effects/effect_system/effect_system.html b/code/game/objects/effects/effect_system/effect_system.html index b7cd68a175d9..78c0461abbb0 100644 --- a/code/game/objects/effects/effect_system/effect_system.html +++ b/code/game/objects/effects/effect_system/effect_system.html @@ -14,7 +14,7 @@

code/game/objects/effects/effect_system/effect_system.dm - +

@@ -25,7 +25,7 @@

code/game/objects/effects/effect_system/effect_system.dm

/datum/effect_system/steam_trail_followAttach a steam trail to an object (eg. a reacting beaker) that will follow it
diff --git a/code/game/objects/effects/effect_system/smoke.html b/code/game/objects/effects/effect_system/smoke.html index 05e7f69e0f6f..85fd061401b6 100644 --- a/code/game/objects/effects/effect_system/smoke.html +++ b/code/game/objects/effects/effect_system/smoke.html @@ -14,20 +14,20 @@ — Define Details

code/game/objects/effects/effect_system/smoke.dm - +

BOILER_GAS_CADE_BLOCK_CHANCE/ SMOKE SYSTEMS

Define Details

BOILER_GAS_CADE_BLOCK_CHANCE - +

/ SMOKE SYSTEMS

Chance that cades block the gas. Smoke spread ticks are calculated very quickly so this has to be high to have a noticeable effect.

diff --git a/code/game/objects/effects/landmarks/corpsespawner.html b/code/game/objects/effects/landmarks/corpsespawner.html index 01eda6b70ab2..042d17a2cb0c 100644 --- a/code/game/objects/effects/landmarks/corpsespawner.html +++ b/code/game/objects/effects/landmarks/corpsespawner.html @@ -14,7 +14,7 @@

code/game/objects/effects/landmarks/corpsespawner.dm - +

@@ -25,7 +25,7 @@

code/game/objects/effects/landmarks/corpsespawner.dm

/obj/effect/landmark/corpsespawner/clfFaction Specific Corpses
diff --git a/code/game/objects/effects/landmarks/landmarks.html b/code/game/objects/effects/landmarks/landmarks.html index 6ff382c989f9..88610769818f 100644 --- a/code/game/objects/effects/landmarks/landmarks.html +++ b/code/game/objects/effects/landmarks/landmarks.html @@ -14,7 +14,7 @@

code/game/objects/effects/landmarks/landmarks.dm - +

@@ -25,7 +25,7 @@

code/game/objects/effects/landmarks/landmarks.dm

/obj/effect/landmark/tutorial_bottom_leftMarks the bottom left of the tutorial zone.
diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.html b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.html index 475b6eb7e843..3ac4a74021ee 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.html +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.html @@ -14,14 +14,14 @@

code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm - +

/obj/effect/landmark/structure_spawner/setup/distressDistress Signal Global Setup Structure spawners
diff --git a/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.html b/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.html index ace546c85924..4afacbd8866e 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.html +++ b/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.html @@ -14,7 +14,7 @@

code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm - +

@@ -22,7 +22,7 @@

code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm

/obj/effect/landmark/structure_spawner/setupSetup spawners will all be evaluated by game mode on start, and deleted after
diff --git a/code/game/objects/effects/landmarks/structure_spawners/xvx_hive.html b/code/game/objects/effects/landmarks/structure_spawners/xvx_hive.html index 99f442222b4f..8767e7fbcf32 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/xvx_hive.html +++ b/code/game/objects/effects/landmarks/structure_spawners/xvx_hive.html @@ -14,14 +14,14 @@

code/game/objects/effects/landmarks/structure_spawners/xvx_hive.dm - +

/obj/effect/landmark/structure_spawner/xvx_hiveXvX Hive Spawn Structures, spawning alongside a queen in the same area
diff --git a/code/game/objects/effects/projector.html b/code/game/objects/effects/projector.html index 9e8c9c931ac9..3370a32c47ff 100644 --- a/code/game/objects/effects/projector.html +++ b/code/game/objects/effects/projector.html @@ -14,14 +14,14 @@

code/game/objects/effects/projector.dm - +

/obj/effect/projectorYou will appear adjacent to the beacon
diff --git a/code/game/objects/effects/spawners/prop_gun_spawner.html b/code/game/objects/effects/spawners/prop_gun_spawner.html index f4d081c17b2d..3df6caae4fb0 100644 --- a/code/game/objects/effects/spawners/prop_gun_spawner.html +++ b/code/game/objects/effects/spawners/prop_gun_spawner.html @@ -14,7 +14,7 @@

code/game/objects/effects/spawners/prop_gun_spawner.dm - +

@@ -22,7 +22,7 @@

code/game/objects/effects/spawners/prop_gun_spawner.dm The prop itself, which the skin will be copied to

diff --git a/code/game/objects/effects/spawners/random.html b/code/game/objects/effects/spawners/random.html index 0a14c40749a5..392a058da491 100644 --- a/code/game/objects/effects/spawners/random.html +++ b/code/game/objects/effects/spawners/random.html @@ -14,14 +14,14 @@

code/game/objects/effects/spawners/random.dm - +

/obj/effect/spawner/random/facepaintIf anyone wants to make custom sprites for this and the bala random spawner, be my guest.
diff --git a/code/game/objects/items/books/book.html b/code/game/objects/items/books/book.html index 69c79ac18cbe..7fa23ccde947 100644 --- a/code/game/objects/items/books/book.html +++ b/code/game/objects/items/books/book.html @@ -14,7 +14,7 @@

code/game/objects/items/books/book.dm - +

@@ -23,7 +23,7 @@

code/game/objects/items/books/book.dm Default, just in case

diff --git a/code/game/objects/items/devices/flashlight.html b/code/game/objects/items/devices/flashlight.html index 9e84b920fe84..ba5c4def838f 100644 --- a/code/game/objects/items/devices/flashlight.html +++ b/code/game/objects/items/devices/flashlight.html @@ -14,7 +14,7 @@

code/game/objects/items/devices/flashlight.dm - +

@@ -22,7 +22,7 @@

code/game/objects/items/devices/flashlight.dm

/obj/item/device/flashlight/flare/signal/gunSignal flares deployed by a flare gun
diff --git a/code/game/objects/items/devices/multitool.html b/code/game/objects/items/devices/multitool.html index e1fbe0b01a1b..d2c92871222a 100644 --- a/code/game/objects/items/devices/multitool.html +++ b/code/game/objects/items/devices/multitool.html @@ -14,14 +14,14 @@

code/game/objects/items/devices/multitool.dm - +

/obj/item/device/multitoolMultitool -- A multitool is used for hacking electronic devices.
diff --git a/code/game/objects/items/devices/personal_data_transmitter.html b/code/game/objects/items/devices/personal_data_transmitter.html index aec184867997..0ee64073115e 100644 --- a/code/game/objects/items/devices/personal_data_transmitter.html +++ b/code/game/objects/items/devices/personal_data_transmitter.html @@ -14,14 +14,14 @@

code/game/objects/items/devices/personal_data_transmitter.dm - +

/obj/item/storage/box/pdt_kit/advancedTHE ADVANCED VERSION... ADMIN SPAWN ONLY... USES TGUI RADAR...
diff --git a/code/game/objects/items/devices/radio/encryptionkey.html b/code/game/objects/items/devices/radio/encryptionkey.html index 17fb8fa1ec00..eb1984b73505 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.html +++ b/code/game/objects/items/devices/radio/encryptionkey.html @@ -14,7 +14,7 @@

code/game/objects/items/devices/radio/encryptionkey.dm - +

@@ -22,7 +22,7 @@

code/game/objects/items/devices/radio/encryptionkey.dm

/obj/item/device/encryptionkey/mortarUsed by the Mortar Crew in WO game mode - intently has no squad radio access
diff --git a/code/game/objects/items/explosives/grenades/marines.html b/code/game/objects/items/explosives/grenades/marines.html index 470cb48b5e8e..de5ee87e9b29 100644 --- a/code/game/objects/items/explosives/grenades/marines.html +++ b/code/game/objects/items/explosives/grenades/marines.html @@ -14,7 +14,7 @@

code/game/objects/items/explosives/grenades/marines.dm - +

@@ -24,7 +24,7 @@

code/game/objects/items/explosives/grenades/marines.dm

/obj/item/explosive/grenade/batonBaton slugs
diff --git a/code/game/objects/items/explosives/mine.html b/code/game/objects/items/explosives/mine.html index 03b02358e8a0..17745d163da2 100644 --- a/code/game/objects/items/explosives/mine.html +++ b/code/game/objects/items/explosives/mine.html @@ -14,14 +14,14 @@

code/game/objects/items/explosives/mine.dm - +

/obj/item/explosive/mineMINES
diff --git a/code/game/objects/items/handheld_distress_beacon.html b/code/game/objects/items/handheld_distress_beacon.html index 629c3bcfda30..e0d4a6ae88cf 100644 --- a/code/game/objects/items/handheld_distress_beacon.html +++ b/code/game/objects/items/handheld_distress_beacon.html @@ -14,7 +14,7 @@

code/game/objects/items/handheld_distress_beacon.dm - +

@@ -22,7 +22,7 @@

code/game/objects/items/handheld_distress_beacon.dm

/obj/item/handheld_distress_beacon/cmbCMB distress beacon held by CMB Marshal for signalling distress to Anchorpoint Station
diff --git a/code/game/objects/items/reagent_containers/dropper.html b/code/game/objects/items/reagent_containers/dropper.html index 12a53ccb0880..c3207cc0fd72 100644 --- a/code/game/objects/items/reagent_containers/dropper.html +++ b/code/game/objects/items/reagent_containers/dropper.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/dropper.dm - +

/obj/item/reagent_container/dropperDroppers.
diff --git a/code/game/objects/items/reagent_containers/food.html b/code/game/objects/items/reagent_containers/food.html index f479361e686a..feda6dab8c55 100644 --- a/code/game/objects/items/reagent_containers/food.html +++ b/code/game/objects/items/reagent_containers/food.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/food.dm - +

/obj/item/reagent_container/foodDroppers. END
diff --git a/code/game/objects/items/reagent_containers/food/condiment.html b/code/game/objects/items/reagent_containers/food/condiment.html index 725f20a0b58e..4512e28298d1 100644 --- a/code/game/objects/items/reagent_containers/food/condiment.html +++ b/code/game/objects/items/reagent_containers/food/condiment.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/food/condiment.dm - +

/obj/item/reagent_container/food/condimentCondiments
diff --git a/code/game/objects/items/reagent_containers/food/drinks.html b/code/game/objects/items/reagent_containers/food/drinks.html index 62a04e89bed9..a11360d21dfb 100644 --- a/code/game/objects/items/reagent_containers/food/drinks.html +++ b/code/game/objects/items/reagent_containers/food/drinks.html @@ -14,7 +14,7 @@

code/game/objects/items/reagent_containers/food/drinks.dm - +

@@ -24,7 +24,7 @@

code/game/objects/items/reagent_containers/food/drinks.dm

/obj/item/reagent_container/food/drinks/shakerdrinkingglass and shaker
diff --git a/code/game/objects/items/reagent_containers/food/drinks/bottle.html b/code/game/objects/items/reagent_containers/food/drinks/bottle.html index 02777ddb224e..12be184a44bf 100644 --- a/code/game/objects/items/reagent_containers/food/drinks/bottle.html +++ b/code/game/objects/items/reagent_containers/food/drinks/bottle.html @@ -14,7 +14,7 @@

code/game/objects/items/reagent_containers/food/drinks/bottle.dm - +

@@ -24,7 +24,7 @@

code/game/objects/items/reagent_containers/food/drinks/bottle.dm

/obj/item/reagent_container/food/drinks/bottle/orangejuiceJUICES AND STUFF
diff --git a/code/game/objects/items/reagent_containers/food/drinks/jar.html b/code/game/objects/items/reagent_containers/food/drinks/jar.html index 7c2fe2006665..14c93b8cb572 100644 --- a/code/game/objects/items/reagent_containers/food/drinks/jar.html +++ b/code/game/objects/items/reagent_containers/food/drinks/jar.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/food/drinks/jar.dm - +

/obj/item/reagent_container/food/drinks/jarjar
diff --git a/code/game/objects/items/reagent_containers/food/snacks.html b/code/game/objects/items/reagent_containers/food/snacks.html index 33e7f8ba5b72..22b53841568d 100644 --- a/code/game/objects/items/reagent_containers/food/snacks.html +++ b/code/game/objects/items/reagent_containers/food/snacks.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/food/snacks.dm - +

/obj/item/reagent_container/food/snacks/aesirsaladFOOD END
diff --git a/code/game/objects/items/reagent_containers/food/snacks/meat.html b/code/game/objects/items/reagent_containers/food/snacks/meat.html index 31de84eabd7f..96e9431ea1f5 100644 --- a/code/game/objects/items/reagent_containers/food/snacks/meat.html +++ b/code/game/objects/items/reagent_containers/food/snacks/meat.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/food/snacks/meat.dm - +

/obj/item/reagent_container/food/snacks/meat/synthmeat/synthfleshMeat made from synthetics. Slightly toxic
diff --git a/code/game/objects/items/reagent_containers/glass.html b/code/game/objects/items/reagent_containers/glass.html index 0aa5e75c432b..e7cb0c2c9dee 100644 --- a/code/game/objects/items/reagent_containers/glass.html +++ b/code/game/objects/items/reagent_containers/glass.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/glass.dm - +

/obj/item/reagent_container/glass(Mixing) Glass
diff --git a/code/game/objects/items/reagent_containers/hypospray.html b/code/game/objects/items/reagent_containers/hypospray.html index 8218b57be906..d8c1371ea5db 100644 --- a/code/game/objects/items/reagent_containers/hypospray.html +++ b/code/game/objects/items/reagent_containers/hypospray.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/hypospray.dm - +

/obj/item/reagent_container/hyposprayHYPOSPRAY
diff --git a/code/game/objects/items/reagent_containers/pill.html b/code/game/objects/items/reagent_containers/pill.html index 2ebdd50c2710..7dff5819a623 100644 --- a/code/game/objects/items/reagent_containers/pill.html +++ b/code/game/objects/items/reagent_containers/pill.html @@ -14,7 +14,7 @@

code/game/objects/items/reagent_containers/pill.dm - +

@@ -23,7 +23,7 @@

code/game/objects/items/reagent_containers/pill.dm

/obj/item/reagent_container/pill/antitoxPills. END
diff --git a/code/game/objects/items/reagent_containers/robot_parts.html b/code/game/objects/items/reagent_containers/robot_parts.html index dfaa2da7595b..993a7bda9155 100644 --- a/code/game/objects/items/reagent_containers/robot_parts.html +++ b/code/game/objects/items/reagent_containers/robot_parts.html @@ -14,14 +14,14 @@

code/game/objects/items/reagent_containers/robot_parts.dm - +

/obj/item/fake_robot_headA cameo of a real robotic head with limited gameplay functionality
diff --git a/code/game/objects/items/reagent_containers/syringes.html b/code/game/objects/items/reagent_containers/syringes.html index c7f3eaeb7b0a..d3452cd47cf3 100644 --- a/code/game/objects/items/reagent_containers/syringes.html +++ b/code/game/objects/items/reagent_containers/syringes.html @@ -14,20 +14,20 @@ — Define Details

code/game/objects/items/reagent_containers/syringes.dm - +

SYRINGE_DRAWSyringes.
/obj/item/reagent_container/syringe/inaprovalineSyringes. END

Define Details

SYRINGE_DRAW - +

Syringes.

diff --git a/code/game/objects/items/stacks/flags.html b/code/game/objects/items/stacks/flags.html index 7147a68b24aa..db44adaee182 100644 --- a/code/game/objects/items/stacks/flags.html +++ b/code/game/objects/items/stacks/flags.html @@ -14,14 +14,14 @@

code/game/objects/items/stacks/flags.dm - +

/obj/structure/flag/plantablePLANTABLE FLAG
diff --git a/code/game/objects/items/stock_parts.html b/code/game/objects/items/stock_parts.html index baf5745fc5ff..4a1d33f07d53 100644 --- a/code/game/objects/items/stock_parts.html +++ b/code/game/objects/items/stock_parts.html @@ -14,14 +14,14 @@

code/game/objects/items/stock_parts.dm - +

/obj/item/stock_partsStock Parts
diff --git a/code/game/objects/items/storage/backpack.html b/code/game/objects/items/storage/backpack.html index 4b771024ff6d..7d1d1c0f3500 100644 --- a/code/game/objects/items/storage/backpack.html +++ b/code/game/objects/items/storage/backpack.html @@ -14,14 +14,14 @@

code/game/objects/items/storage/backpack.dm - +

/obj/item/storage/backpack/general_beltG-8-a general pouch belt
diff --git a/code/game/objects/items/storage/belt.html b/code/game/objects/items/storage/belt.html index 0d96085481c7..db19e110342e 100644 --- a/code/game/objects/items/storage/belt.html +++ b/code/game/objects/items/storage/belt.html @@ -14,7 +14,7 @@

code/game/objects/items/storage/belt.dm - +

@@ -22,7 +22,7 @@

code/game/objects/items/storage/belt.dm

/obj/item/storage/belt/tankOTHER BELTS
diff --git a/code/game/objects/items/storage/boxes.html b/code/game/objects/items/storage/boxes.html index 275816c09a32..8ae2a5ff9d23 100644 --- a/code/game/objects/items/storage/boxes.html +++ b/code/game/objects/items/storage/boxes.html @@ -14,14 +14,14 @@

code/game/objects/items/storage/boxes.dm - +

/obj/item/storage/box/explosive_minesMARINES BOXES
diff --git a/code/game/objects/items/storage/pouch.html b/code/game/objects/items/storage/pouch.html index e3502393a1d8..9decff251523 100644 --- a/code/game/objects/items/storage/pouch.html +++ b/code/game/objects/items/storage/pouch.html @@ -14,7 +14,7 @@

code/game/objects/items/storage/pouch.dm - +

@@ -23,7 +23,7 @@

code/game/objects/items/storage/pouch.dm

/obj/item/storage/pouch/magazineMAGAZINE POUCHES
diff --git a/code/game/objects/items/storage/storage.html b/code/game/objects/items/storage/storage.html index d0966a83c946..56d88e9be8bd 100644 --- a/code/game/objects/items/storage/storage.html +++ b/code/game/objects/items/storage/storage.html @@ -14,14 +14,14 @@

code/game/objects/items/storage/storage.dm - +

/obj/item/storageThis contains what previously was known as stored_start, stored_continue, and stored_end
diff --git a/code/game/objects/items/trash.html b/code/game/objects/items/trash.html index e8068b91a296..e2738ccbe6f1 100644 --- a/code/game/objects/items/trash.html +++ b/code/game/objects/items/trash.html @@ -14,7 +14,7 @@

code/game/objects/items/trash.dm - +

@@ -25,7 +25,7 @@

code/game/objects/items/trash.dm

/obj/item/trash/candleMisc
diff --git a/code/game/objects/items/weapons/twohanded.html b/code/game/objects/items/weapons/twohanded.html index 74749e9f8038..3eb1c8126820 100644 --- a/code/game/objects/items/weapons/twohanded.html +++ b/code/game/objects/items/weapons/twohanded.html @@ -14,14 +14,14 @@

code/game/objects/items/weapons/twohanded.dm - +

/obj/item/weapon/twohanded/offhandOFFHAND
diff --git a/code/game/objects/prop.html b/code/game/objects/prop.html index d3e476bf852e..8d3b6e685ba9 100644 --- a/code/game/objects/prop.html +++ b/code/game/objects/prop.html @@ -14,7 +14,7 @@

code/game/objects/prop.dm - +

@@ -23,7 +23,7 @@

code/game/objects/prop.dm

/obj/item/prop/alien/huggerXeno-specific props
diff --git a/code/game/objects/structures/kitchen_spike.html b/code/game/objects/structures/kitchen_spike.html index d5b91cf4fb30..12c309ea2016 100644 --- a/code/game/objects/structures/kitchen_spike.html +++ b/code/game/objects/structures/kitchen_spike.html @@ -14,14 +14,14 @@

code/game/objects/structures/kitchen_spike.dm - +

/obj/structure/kitchenspikeKitchen Spike
diff --git a/code/game/objects/structures/pipes/vents/pump_scrubber.html b/code/game/objects/structures/pipes/vents/pump_scrubber.html index e9e46a56bdf4..34b1640209eb 100644 --- a/code/game/objects/structures/pipes/vents/pump_scrubber.html +++ b/code/game/objects/structures/pipes/vents/pump_scrubber.html @@ -14,14 +14,14 @@

code/game/objects/structures/pipes/vents/pump_scrubber.dm - +

/obj/structure/pipes/vents/pump/no_boom/gasVents that are linked to ARES Security Protocols, allowing the ARES Interface to trigger security measures.
diff --git a/code/game/objects/structures/props.html b/code/game/objects/structures/props.html index 68b0ab80ae06..c394c21b0834 100644 --- a/code/game/objects/structures/props.html +++ b/code/game/objects/structures/props.html @@ -14,14 +14,14 @@

code/game/objects/structures/props.dm - +

/obj/structure/prop/invuln/fireDecorative fire.
diff --git a/code/game/runtimes.html b/code/game/runtimes.html index c79b75d5ef0e..1b313437509d 100644 --- a/code/game/runtimes.html +++ b/code/game/runtimes.html @@ -14,7 +14,7 @@

code/game/runtimes.dm - +

@@ -23,7 +23,7 @@

code/game/runtimes.dm Truthy when init is done and we don't need these shenanigans anymore

diff --git a/code/game/sound.html b/code/game/sound.html index 28085d5ff806..5e2b51a68c75 100644 --- a/code/game/sound.html +++ b/code/game/sound.html @@ -14,7 +14,7 @@

code/game/sound.dm - +

@@ -24,7 +24,7 @@

code/game/sound.dm

Play sound for all on-map clients on a given Z-level. Good for ambient sounds.
diff --git a/code/game/turfs/closed.html b/code/game/turfs/closed.html index 7855c956f980..e4df200cc06c 100644 --- a/code/game/turfs/closed.html +++ b/code/game/turfs/closed.html @@ -14,7 +14,7 @@

code/game/turfs/closed.dm - +

@@ -22,7 +22,7 @@

code/game/turfs/closed.dm

/turf/closed/cordon/debugUsed as placeholder turf when something went really wrong, as per /tg/ string lists handler
diff --git a/code/game/turfs/floor_types.html b/code/game/turfs/floor_types.html index 0dae6094df56..9201d43aa03f 100644 --- a/code/game/turfs/floor_types.html +++ b/code/game/turfs/floor_types.html @@ -14,7 +14,7 @@

code/game/turfs/floor_types.dm - +

@@ -25,7 +25,7 @@

code/game/turfs/floor_types.dm

/turf/open/floor/almayer/empty/vehicle_bayVehicle bay pit.
diff --git a/code/game/turfs/walls/r_wall.html b/code/game/turfs/walls/r_wall.html index 61d99a5a82cf..fc6f2987323d 100644 --- a/code/game/turfs/walls/r_wall.html +++ b/code/game/turfs/walls/r_wall.html @@ -14,14 +14,14 @@

code/game/turfs/walls/r_wall.dm - +

/turf/closed/wall/r_wall/elevatorDestructible elevator walls, for when you want the elevator to act as a prop rather than an actual elevator
diff --git a/code/game/turfs/walls/wall_types.html b/code/game/turfs/walls/wall_types.html index 3cce9d0449d6..780d61f2b44b 100644 --- a/code/game/turfs/walls/wall_types.html +++ b/code/game/turfs/walls/wall_types.html @@ -14,14 +14,14 @@

code/game/turfs/walls/wall_types.dm - +

/turf/closed/wall/almayer/reinforced/temphullActs like /turf/closed/wall/almayer/outer until post-hijack where it reverts to /turf/closed/wall/almayer/reinforced.
diff --git a/code/global.html b/code/global.html index d2d91c84f7aa..89f53df00fa9 100644 --- a/code/global.html +++ b/code/global.html @@ -14,24 +14,24 @@ — Define Details

code/global.dm - +

RL_EVERYTHINGThe sum of all other rank permissions, other than host or profiler.
RL_HOSTTruely everything

Define Details

RL_EVERYTHING - +

The sum of all other rank permissions, other than host or profiler.

RL_HOST - +

Truely everything

diff --git a/code/modules/admin/NewBan.html b/code/modules/admin/NewBan.html index 84bfbc1b08a0..b91f03abe3dc 100644 --- a/code/modules/admin/NewBan.html +++ b/code/modules/admin/NewBan.html @@ -14,7 +14,7 @@

code/modules/admin/NewBan.dm - +

@@ -22,7 +22,7 @@

code/modules/admin/NewBan.dm

DEBUG
diff --git a/code/modules/admin/autoreply.html b/code/modules/admin/autoreply.html index ab3f185ab650..e4fbf7f6106d 100644 --- a/code/modules/admin/autoreply.html +++ b/code/modules/admin/autoreply.html @@ -14,14 +14,14 @@

code/modules/admin/autoreply.dm - +

/datum/autoreply/admin/handledAdmin Replies
diff --git a/code/modules/admin/callproc.html b/code/modules/admin/callproc.html index e13508e0a9cc..df570dad6415 100644 --- a/code/modules/admin/callproc.html +++ b/code/modules/admin/callproc.html @@ -14,7 +14,7 @@

code/modules/admin/callproc.dm - +

@@ -29,7 +29,7 @@

code/modules/admin/callproc.dm

Wrapper for proccalls where the datum is flagged as vareditted
diff --git a/code/modules/admin/tag.html b/code/modules/admin/tag.html index fbf36bfe42e6..40d5807660fc 100644 --- a/code/modules/admin/tag.html +++ b/code/modules/admin/tag.html @@ -14,20 +14,20 @@ — Define Details

code/modules/admin/tag.dm - +

TAG_DELQuick define for readability

Define Details

TAG_DEL - +

Quick define for readability

diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.html b/code/modules/admin/verbs/SDQL2/SDQL_2.html index 29764012d889..11970fb31208 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2.html +++ b/code/modules/admin/verbs/SDQL2/SDQL_2.html @@ -14,7 +14,7 @@ — Define Details

code/modules/admin/verbs/SDQL2/SDQL_2.dm - +

@@ -27,38 +27,38 @@

code/modules/admin/verbs/SDQL2/SDQL_2.dm This isn't default because SDQL2 is a technical tool that should be as failure-safe as possible (such as a mob not being added to GLOB.mob_list, for example)

SDQL2_OPTION_NO_OUTPUT_POPUPWhen using SELECT, don't print a popup. Makes SELECT vastly faster.

Define Details

SDQL2_OPTION_BLOCKING_CALLS - +

Require proccalls to finish before continuing the query

SDQL2_OPTION_DO_NOT_AUTOGC - +

Do not delete the query after its completion

SDQL2_OPTION_HIGH_PRIORITY - +

High priority SDQL query, allow using almost all of the tick.

SDQL2_OPTION_NO_OUTPUT_POPUP - +

When using SELECT, don't print a popup. Makes SELECT vastly faster.

SDQL2_OPTION_OPTIMIZED_SOURCE - +

Change to GLOB.mob_list for /mob or etc. automatically if we're iterating over world. This isn't default because SDQL2 is a technical tool that should be as failure-safe as possible (such as a mob not being added to GLOB.mob_list, for example)

SDQL2_OPTION_SELECT_OUTPUT_SKIP_NULLS - +

Don't print nulls that the select picked up. Enabled by default

SDQL2_OPTION_SEQUENTIAL - +

Queries chained together with ; will execute in series instead of in parallel

diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.html b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.html index 0a1921bf6769..44789055b9d7 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.html +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.html @@ -14,7 +14,7 @@

code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm - +

@@ -34,7 +34,7 @@

code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm achieved by calling _animate with no target.

diff --git a/code/modules/admin/verbs/adminhelp.html b/code/modules/admin/verbs/adminhelp.html index e3f0a9d22db9..4b147cd8624b 100644 --- a/code/modules/admin/verbs/adminhelp.html +++ b/code/modules/admin/verbs/adminhelp.html @@ -14,7 +14,7 @@

code/modules/admin/verbs/adminhelp.dm - +

@@ -30,7 +30,7 @@

code/modules/admin/verbs/adminhelp.dm

Checks a given message to see if any of the words are something we want to treat specially, as detailed below.
diff --git a/code/modules/admin/view_variables/debug_variables.html b/code/modules/admin/view_variables/debug_variables.html index 544943b430c6..cae58bc133b2 100644 --- a/code/modules/admin/view_variables/debug_variables.html +++ b/code/modules/admin/view_variables/debug_variables.html @@ -14,7 +14,7 @@

code/modules/admin/view_variables/debug_variables.dm - +

@@ -22,7 +22,7 @@

code/modules/admin/view_variables/debug_variables.dm

Get displayed variable in VV variable list
diff --git a/code/modules/almayer/shakeship.html b/code/modules/almayer/shakeship.html index 10c3eca0fbc8..6e1909a1f7a0 100644 --- a/code/modules/almayer/shakeship.html +++ b/code/modules/almayer/shakeship.html @@ -14,7 +14,7 @@

code/modules/almayer/shakeship.dm - +

@@ -22,7 +22,7 @@

code/modules/almayer/shakeship.dm

Shakes the ship around
diff --git a/code/modules/almayer/weaponhits.html b/code/modules/almayer/weaponhits.html index 26a13f036cbb..ab4cdca4fe22 100644 --- a/code/modules/almayer/weaponhits.html +++ b/code/modules/almayer/weaponhits.html @@ -14,7 +14,7 @@

code/modules/almayer/weaponhits.dm - +

@@ -22,7 +22,7 @@

code/modules/almayer/weaponhits.dm

/datum/space_weapon_ammoAmmo datum for space weapons
diff --git a/code/modules/asset_cache.html b/code/modules/asset_cache.html index 044e30fe252c..def18f8903fc 100644 --- a/code/modules/asset_cache.html +++ b/code/modules/asset_cache.html @@ -14,7 +14,7 @@

Asset cache system - +

@@ -37,7 +37,7 @@

Asset cache system

CSS files that use url() can be made to use the CDN without needing to rewrite all url() calls in code by using the namespaced helper datum. See the documentation for /datum/asset/simple/namespaced for details.

diff --git a/code/modules/asset_cache/asset_cache_item.html b/code/modules/asset_cache/asset_cache_item.html index 281c1cb33c48..2afabf1ab0b4 100644 --- a/code/modules/asset_cache/asset_cache_item.html +++ b/code/modules/asset_cache/asset_cache_item.html @@ -14,14 +14,14 @@

code/modules/asset_cache/asset_cache_item.dm - +

/datum/asset_cache_itemAn internal datum containing info on items in the asset cache. Mainly used to cache md5 info for speed.
diff --git a/code/modules/asset_cache/asset_list.html b/code/modules/asset_cache/asset_list.html index ec8d0c50a8f7..20b28784a030 100644 --- a/code/modules/asset_cache/asset_list.html +++ b/code/modules/asset_cache/asset_list.html @@ -14,7 +14,7 @@

code/modules/asset_cache/asset_list.dm - +

@@ -26,7 +26,7 @@

code/modules/asset_cache/asset_list.dm The namespace folder's name will change if any of the assets change. (excluding parent assets)

diff --git a/code/modules/asset_cache/transports/asset_transport.html b/code/modules/asset_cache/transports/asset_transport.html index 9bcd5a45dcbd..919fa4609ece 100644 --- a/code/modules/asset_cache/transports/asset_transport.html +++ b/code/modules/asset_cache/transports/asset_transport.html @@ -14,20 +14,20 @@ — Define Details

code/modules/asset_cache/transports/asset_transport.dm - +

ASSET_CACHE_TELL_CLIENT_AMOUNTWhen sending mutiple assets, how many before we give the client a quaint little sending resources message
/datum/asset_transportBase browse_rsc asset transport

Define Details

ASSET_CACHE_TELL_CLIENT_AMOUNT - +

When sending mutiple assets, how many before we give the client a quaint little sending resources message

diff --git a/code/modules/asset_cache/transports/webroot_transport.html b/code/modules/asset_cache/transports/webroot_transport.html index b75e42e4b7f0..762a83373a19 100644 --- a/code/modules/asset_cache/transports/webroot_transport.html +++ b/code/modules/asset_cache/transports/webroot_transport.html @@ -14,14 +14,14 @@

code/modules/asset_cache/transports/webroot_transport.dm - +

/datum/asset_transport/webrootCDN Webroot asset transport.
diff --git a/code/modules/autowiki/autowiki.html b/code/modules/autowiki/autowiki.html index 2fef9ce3cb99..04b88330268f 100644 --- a/code/modules/autowiki/autowiki.html +++ b/code/modules/autowiki/autowiki.html @@ -14,7 +14,7 @@

code/modules/autowiki/autowiki.dm - +

@@ -25,7 +25,7 @@

code/modules/autowiki/autowiki.dm Returns a string of the autowiki output file

diff --git a/code/modules/autowiki/pages/_page.html b/code/modules/autowiki/pages/_page.html index a19bd66a7327..d35f3d4e25d7 100644 --- a/code/modules/autowiki/pages/_page.html +++ b/code/modules/autowiki/pages/_page.html @@ -14,14 +14,14 @@

code/modules/autowiki/pages/_page.dm - +

/datum/autowikiA representation of an automated wiki page.
diff --git a/code/modules/buildmode.html b/code/modules/buildmode.html index 64e2c6b932b3..2c768b52ccf8 100644 --- a/code/modules/buildmode.html +++ b/code/modules/buildmode.html @@ -14,7 +14,7 @@

Buildmode - +

@@ -203,7 +203,7 @@

Buildmode

diff --git a/code/modules/buildmode/bm-mode.html b/code/modules/buildmode/bm-mode.html index d81e64bb42ce..2d22611a645b 100644 --- a/code/modules/buildmode/bm-mode.html +++ b/code/modules/buildmode/bm-mode.html @@ -14,24 +14,24 @@ — Define Details

code/modules/buildmode/bm-mode.dm - +

AREASELECT_CORNERACorner A area section for buildmode
AREASELECT_CORNERBCorner B area selection for buildmode

Define Details

AREASELECT_CORNERA - +

Corner A area section for buildmode

AREASELECT_CORNERB - +

Corner B area selection for buildmode

diff --git a/code/modules/character_traits/character_trait.html b/code/modules/character_traits/character_trait.html index 26c463771c5d..0aaf32869519 100644 --- a/code/modules/character_traits/character_trait.html +++ b/code/modules/character_traits/character_trait.html @@ -14,7 +14,7 @@

code/modules/character_traits/character_trait.dm - +

@@ -23,7 +23,7 @@

code/modules/character_traits/character_trait.dm

/datum/character_trait_groupCharacter trait groups for constraints (if any)
diff --git a/code/modules/client/statbrowser_options.html b/code/modules/client/statbrowser_options.html index ed31b059c183..dc2ddc631d89 100644 --- a/code/modules/client/statbrowser_options.html +++ b/code/modules/client/statbrowser_options.html @@ -14,14 +14,14 @@

code/modules/client/statbrowser_options.dm - +

/datum/statbrowser_optionsHandles the Statbrowser Options window for a given client
diff --git a/code/modules/clothing/under/marine_uniform.html b/code/modules/clothing/under/marine_uniform.html index d04af1850696..5ce9cd63975a 100644 --- a/code/modules/clothing/under/marine_uniform.html +++ b/code/modules/clothing/under/marine_uniform.html @@ -14,14 +14,14 @@

code/modules/clothing/under/marine_uniform.dm - +

/obj/item/clothing/under/marine/ua_riotCivilians
diff --git a/code/modules/cm_marines/dropship_ammo.html b/code/modules/cm_marines/dropship_ammo.html index 470a0058bfac..041a42739274 100644 --- a/code/modules/cm_marines/dropship_ammo.html +++ b/code/modules/cm_marines/dropship_ammo.html @@ -14,14 +14,14 @@

code/modules/cm_marines/dropship_ammo.dm - +

/obj/structure/ship_ammoDropship weaponry ammunition
diff --git a/code/modules/cm_marines/dropship_equipment.html b/code/modules/cm_marines/dropship_equipment.html index 2ddbcef87017..922a60059226 100644 --- a/code/modules/cm_marines/dropship_equipment.html +++ b/code/modules/cm_marines/dropship_equipment.html @@ -14,7 +14,7 @@

code/modules/cm_marines/dropship_equipment.dm - +

@@ -25,7 +25,7 @@

code/modules/cm_marines/dropship_equipment.dm

/obj/structure/dropship_equipment/weaponCAS Dropship weaponry, used for aerial bombardment
diff --git a/code/modules/cm_marines/marines_consoles.html b/code/modules/cm_marines/marines_consoles.html index 25842ae19e53..5a88377c37db 100644 --- a/code/modules/cm_marines/marines_consoles.html +++ b/code/modules/cm_marines/marines_consoles.html @@ -14,7 +14,7 @@ — Define Details

code/modules/cm_marines/marines_consoles.dm - +

@@ -22,21 +22,21 @@

code/modules/cm_marines/marines_consoles.dm

UNKNOWN_JOB_IDThe job sorting ID associated with otherwise unknown jobs
RAIDER_OFFICER_SQUADThis is a really hacky way to make SOF work, but the nice and easy alternative would screw with round spawning

Define Details

RAIDER_OFFICER_SQUAD - +

This is a really hacky way to make SOF work, but the nice and easy alternative would screw with round spawning

SENSORS_UPDATE_PERIOD - +

How often the sensor data is updated

UNKNOWN_JOB_ID - +

The job sorting ID associated with otherwise unknown jobs

diff --git a/code/modules/cm_marines/radar.html b/code/modules/cm_marines/radar.html index bc5fa38cf04a..452d22dc697c 100644 --- a/code/modules/cm_marines/radar.html +++ b/code/modules/cm_marines/radar.html @@ -14,7 +14,7 @@

code/modules/cm_marines/radar.dm - +

@@ -22,7 +22,7 @@

code/modules/cm_marines/radar.dm

/datum/radar/lifelineA program that tracks crew members via suit sensors
diff --git a/code/modules/cm_marines/specialist.html b/code/modules/cm_marines/specialist.html index ee0247e5f82d..e533f8429bef 100644 --- a/code/modules/cm_marines/specialist.html +++ b/code/modules/cm_marines/specialist.html @@ -14,7 +14,7 @@

code/modules/cm_marines/specialist.dm - +

@@ -22,7 +22,7 @@

code/modules/cm_marines/specialist.dm

Get a specialist set datum typepath given a mob, returns null if they aren't a spec or haven't chosen a kit.
diff --git a/code/modules/cm_marines/vehicle_part_fabricator.html b/code/modules/cm_marines/vehicle_part_fabricator.html index a9ce4150d7ab..61ee6b6369bf 100644 --- a/code/modules/cm_marines/vehicle_part_fabricator.html +++ b/code/modules/cm_marines/vehicle_part_fabricator.html @@ -14,14 +14,14 @@

code/modules/cm_marines/vehicle_part_fabricator.dm - +

/obj/structure/machinery/part_fabricator/tankFabricator for individual tank parts
diff --git a/code/modules/cm_preds/yaut_mask.html b/code/modules/cm_preds/yaut_mask.html index bb187ca0081b..c70115c6c4e4 100644 --- a/code/modules/cm_preds/yaut_mask.html +++ b/code/modules/cm_preds/yaut_mask.html @@ -14,14 +14,14 @@

code/modules/cm_preds/yaut_mask.dm - +

/obj/item/clothing/mask/gas/yautjaparent type
diff --git a/code/modules/cm_preds/yaut_weapons.html b/code/modules/cm_preds/yaut_weapons.html index ffb4a9d80523..1a174334cce5 100644 --- a/code/modules/cm_preds/yaut_weapons.html +++ b/code/modules/cm_preds/yaut_weapons.html @@ -14,14 +14,14 @@

code/modules/cm_preds/yaut_weapons.dm - +

/datum/flaying_datumRecords status of flaying attempts and handles progress.
diff --git a/code/modules/cm_tech/techs/abstract/repeatable.html b/code/modules/cm_tech/techs/abstract/repeatable.html index 37e60575250d..fe6489650181 100644 --- a/code/modules/cm_tech/techs/abstract/repeatable.html +++ b/code/modules/cm_tech/techs/abstract/repeatable.html @@ -14,14 +14,14 @@

code/modules/cm_tech/techs/abstract/repeatable.dm - +

/datum/tech/repeatableA tech that can be purchased multiple times
diff --git a/code/modules/decorators/christmas.html b/code/modules/decorators/christmas.html index 5177b83b6ad3..652c529f5633 100644 --- a/code/modules/decorators/christmas.html +++ b/code/modules/decorators/christmas.html @@ -14,14 +14,14 @@

code/modules/decorators/christmas.dm - +

/datum/decorator/christmas/foodReplaces marine food dispensers contents with more festive MREs
diff --git a/code/modules/defenses/sentry_computer.html b/code/modules/defenses/sentry_computer.html index 6811de7bccfa..6c289ee2132a 100644 --- a/code/modules/defenses/sentry_computer.html +++ b/code/modules/defenses/sentry_computer.html @@ -14,14 +14,14 @@

code/modules/defenses/sentry_computer.dm - +

/obj/item/device/sentry_computerSentry gun computer which links to defensive structures.
diff --git a/code/modules/discord/discord_embed.html b/code/modules/discord/discord_embed.html index 959119f80898..f8893c5626c9 100644 --- a/code/modules/discord/discord_embed.html +++ b/code/modules/discord/discord_embed.html @@ -14,7 +14,7 @@

code/modules/discord/discord_embed.dm - +

@@ -23,7 +23,7 @@

code/modules/discord/discord_embed.dm It is recommended to read the documentation on the discord website, as the information below could become outdated in the future.

diff --git a/code/modules/dropships/attach_points/attach_point.html b/code/modules/dropships/attach_points/attach_point.html index d820aab72aae..7f22a0dc5dd5 100644 --- a/code/modules/dropships/attach_points/attach_point.html +++ b/code/modules/dropships/attach_points/attach_point.html @@ -14,7 +14,7 @@

code/modules/dropships/attach_points/attach_point.dm - +

@@ -22,7 +22,7 @@

code/modules/dropships/attach_points/attach_point.dm

/obj/effect/attach_point/weaponWeapon specific attachment point
diff --git a/code/modules/dropships/cas/fire_mission_record.html b/code/modules/dropships/cas/fire_mission_record.html index 0fec5638614f..b3a3f8b3f592 100644 --- a/code/modules/dropships/cas/fire_mission_record.html +++ b/code/modules/dropships/cas/fire_mission_record.html @@ -14,14 +14,14 @@

code/modules/dropships/cas/fire_mission_record.dm - +

/datum/cas_fire_mission_recordDefines firing patterns in Fire Missions, transverse to its firing direction
diff --git a/code/modules/escape_menu/details.html b/code/modules/escape_menu/details.html index 0ad5beb2a52f..3e071b4968cb 100644 --- a/code/modules/escape_menu/details.html +++ b/code/modules/escape_menu/details.html @@ -14,7 +14,7 @@

code/modules/escape_menu/details.dm - +

@@ -22,7 +22,7 @@

code/modules/escape_menu/details.dm

Provides a singleton for the escape menu details screen.
diff --git a/code/modules/escape_menu/subsystem.html b/code/modules/escape_menu/subsystem.html index b372346cdb94..44fda89c22c7 100644 --- a/code/modules/escape_menu/subsystem.html +++ b/code/modules/escape_menu/subsystem.html @@ -14,7 +14,7 @@

code/modules/escape_menu/subsystem.dm - +

@@ -22,7 +22,7 @@

code/modules/escape_menu/subsystem.dm

Subsystem for controlling anything related to the escape menu
diff --git a/code/modules/escape_menu/title.html b/code/modules/escape_menu/title.html index f615e25b96cf..9cdd17828ab0 100644 --- a/code/modules/escape_menu/title.html +++ b/code/modules/escape_menu/title.html @@ -14,7 +14,7 @@

code/modules/escape_menu/title.dm - +

@@ -22,7 +22,7 @@

code/modules/escape_menu/title.dm

Provides a singleton for the escape menu details screen.
diff --git a/code/modules/events/_events.html b/code/modules/events/_events.html index c846a830a162..e0599cb25ebe 100644 --- a/code/modules/events/_events.html +++ b/code/modules/events/_events.html @@ -14,14 +14,14 @@

code/modules/events/_events.dm - +

/datum/round_event_controlthis datum is used by the events controller to dictate how it selects events
diff --git a/code/modules/flufftext/Chinese.html b/code/modules/flufftext/Chinese.html index fd52cf050c39..2175e086d7f8 100644 --- a/code/modules/flufftext/Chinese.html +++ b/code/modules/flufftext/Chinese.html @@ -14,19 +14,19 @@ — Define Details

code/modules/flufftext/Chinese.dm - +

CHINESE_SOUND_ZERO_INITIAL_CHANCEHow likely the syllable is not to have a consonant at the start, needs to be kinda high

Define Details

CHINESE_SOUND_ZERO_INITIAL_CHANCE - +

How likely the syllable is not to have a consonant at the start, needs to be kinda high

diff --git a/code/modules/flufftext/Japanese.html b/code/modules/flufftext/Japanese.html index 99d40e5a3ea7..60a071bf7598 100644 --- a/code/modules/flufftext/Japanese.html +++ b/code/modules/flufftext/Japanese.html @@ -14,7 +14,7 @@ — Define Details

code/modules/flufftext/Japanese.dm - +

@@ -31,37 +31,37 @@

code/modules/flufftext/Japanese.dm

/datum/japanese_sound/nucleusa nucleus, aka a vowel sound
/datum/japanese_sound/final_syllablea final_syllable sound, not used for much since the only one possible is N.

Define Details

JAPANESE_SOUND_APOSTROPHE_CHANCE - +

How likely it is to insert an apostrophe between two syllables (this can happen anywhere, mainly used for morpheme boundaries.)

JAPANESE_SOUND_GEMINATION_CHANCE_INITIAL - +

How likely the initial (consonant) is to geminate ie k -> kk

JAPANESE_SOUND_GEMINATION_CHANCE_NUCLEUS - +

How likely the nucleus (vowel) is to geminate ie a -> aa

JAPANESE_SOUND_GEMINATION_CHANCE_VOICED - +

how likely voiced sounds are to geminate, these mainly occur in foreign loans so quite unlikely

JAPANESE_SOUND_NULL_INITIAL_CHANCE - +

How likely the syllable is not to have a consonant at the start, needs to be kinda high for convincing diphthongs

JAPANESE_SOUND_N_FINAL_CHANCE - +

How likely the syllable is to end in an N

JAPANESE_SOUND_PALATALISATION_CHANCE - +

How likely the consonant is to palatalise ie r -> ry

diff --git a/code/modules/gear_presets/corpses.html b/code/modules/gear_presets/corpses.html index 343ed489c058..eb1dd8456ae1 100644 --- a/code/modules/gear_presets/corpses.html +++ b/code/modules/gear_presets/corpses.html @@ -14,14 +14,14 @@

code/modules/gear_presets/corpses.dm - +

/datum/equipment_preset/corpse/managerOfficers
diff --git a/code/modules/gear_presets/survivors/lv_522/forcon_survivors.html b/code/modules/gear_presets/survivors/lv_522/forcon_survivors.html index 02ebade8881e..8fabf384eb27 100644 --- a/code/modules/gear_presets/survivors/lv_522/forcon_survivors.html +++ b/code/modules/gear_presets/survivors/lv_522/forcon_survivors.html @@ -14,7 +14,7 @@

code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm - +

@@ -25,7 +25,7 @@

code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm

/datum/equipment_preset/survivor/forecon/sniper
diff --git a/code/modules/gear_presets/survivors/misc.html b/code/modules/gear_presets/survivors/misc.html index 31a1300ab05f..c24d3814c332 100644 --- a/code/modules/gear_presets/survivors/misc.html +++ b/code/modules/gear_presets/survivors/misc.html @@ -14,14 +14,14 @@

code/modules/gear_presets/survivors/misc.dm - +

/datum/equipment_preset/survivor/clf/coldused in Shivas Snowball
diff --git a/code/modules/holidays/halloween/decorators.html b/code/modules/holidays/halloween/decorators.html index 3a01abdaf815..30eebcd481ff 100644 --- a/code/modules/holidays/halloween/decorators.html +++ b/code/modules/holidays/halloween/decorators.html @@ -14,7 +14,7 @@

code/modules/holidays/halloween/decorators.dm - +

@@ -25,7 +25,7 @@

code/modules/holidays/halloween/decorators.dm

/datum/game_decorator/halloween/cobwebsCobweb decorator: adds more and more cobwebs as you go through the month
diff --git a/code/modules/holidays/halloween/pumpkins/patches.html b/code/modules/holidays/halloween/pumpkins/patches.html index 6cf5b1c5c9d7..543c1d527aa7 100644 --- a/code/modules/holidays/halloween/pumpkins/patches.html +++ b/code/modules/holidays/halloween/pumpkins/patches.html @@ -14,7 +14,7 @@

code/modules/holidays/halloween/pumpkins/patches.dm - +

@@ -24,7 +24,7 @@

code/modules/holidays/halloween/pumpkins/patches.dm Prefix to prepend to icon states, for corrupted pumpkins

diff --git a/code/modules/holidays/halloween/pumpkins/wearable.html b/code/modules/holidays/halloween/pumpkins/wearable.html index 6f45ed5bd4cf..6f598794172b 100644 --- a/code/modules/holidays/halloween/pumpkins/wearable.html +++ b/code/modules/holidays/halloween/pumpkins/wearable.html @@ -14,7 +14,7 @@

code/modules/holidays/halloween/pumpkins/wearable.dm - +

@@ -23,7 +23,7 @@

code/modules/holidays/halloween/pumpkins/wearable.dm Currently carved pumpkin overlay

diff --git a/code/modules/keybindings.html b/code/modules/keybindings.html index 1385a34b0337..5ab3a336ccb2 100644 --- a/code/modules/keybindings.html +++ b/code/modules/keybindings.html @@ -14,7 +14,7 @@

In-code keypress handling system - +

@@ -54,7 +54,7 @@

In-code keypress handling system

diff --git a/code/modules/lighting/emissive_blocker.html b/code/modules/lighting/emissive_blocker.html index 3a1593e54f06..30759790e877 100644 --- a/code/modules/lighting/emissive_blocker.html +++ b/code/modules/lighting/emissive_blocker.html @@ -14,14 +14,14 @@

code/modules/lighting/emissive_blocker.dm - +

/atom/movable/emissive_blockerInternal atom that copies an appearance on to the blocker plane
diff --git a/code/modules/lighting/lighting_mask/lighting_mask.html b/code/modules/lighting/lighting_mask/lighting_mask.html index b2c670fde55e..a8f700cec980 100644 --- a/code/modules/lighting/lighting_mask/lighting_mask.html +++ b/code/modules/lighting/lighting_mask/lighting_mask.html @@ -14,7 +14,7 @@ — Define Details

code/modules/lighting/lighting_mask/lighting_mask.dm - +

@@ -25,17 +25,17 @@

code/modules/lighting/lighting_mask/lighting_mask.dm

/atom/movable/lighting_mask/rotatingRotating Light mask
/atom/movable/lighting_mask/rotating_conicalrotating light mask, but only pointing in one direction

Define Details

LIGHTING_MASK_RADIUS - +

Lighting mask sprite radius in tiles

LIGHTING_MASK_SPRITE_SIZE - +

Lighting mask sprite diameter in pixels

diff --git a/code/modules/lighting/lighting_mask/lighting_mask_holder.html b/code/modules/lighting/lighting_mask/lighting_mask_holder.html index cafdb461cdaa..3bdee2dc1cad 100644 --- a/code/modules/lighting/lighting_mask/lighting_mask_holder.html +++ b/code/modules/lighting/lighting_mask/lighting_mask_holder.html @@ -14,14 +14,14 @@

code/modules/lighting/lighting_mask/lighting_mask_holder.dm - +

/obj/effect/lighting_mask_holderHolder for lighting mask, this is done for ensuing correct render as a viscontents
diff --git a/code/modules/lighting/lighting_mask/shadow_calculator.html b/code/modules/lighting/lighting_mask/shadow_calculator.html index bb965c1a2ef2..a3217043695c 100644 --- a/code/modules/lighting/lighting_mask/shadow_calculator.html +++ b/code/modules/lighting/lighting_mask/shadow_calculator.html @@ -14,7 +14,7 @@ — Define Details

code/modules/lighting/lighting_mask/shadow_calculator.dm - +

@@ -24,17 +24,17 @@

code/modules/lighting/lighting_mask/shadow_calculator.dm

gets a line from a x and y, to the offset x and y of length radius

Define Details

COORD_LIST_ADD - +

Inserts a coord list into a grouped list

RADIUS_BASED_OFFSET - +

Eyeball number for radius based offsets do not touch

diff --git a/code/modules/lighting/lighting_turf.html b/code/modules/lighting/lighting_turf.html index 59f3f395e305..ec60844e8278 100644 --- a/code/modules/lighting/lighting_turf.html +++ b/code/modules/lighting/lighting_turf.html @@ -14,7 +14,7 @@ — Define Details

code/modules/lighting/lighting_turf.dm - +

@@ -23,7 +23,7 @@

code/modules/lighting/lighting_turf.dm Used for lightig mask lumcount calculations

Define Details

LIGHT_POWER_ESTIMATION - +

Estimates the light power based on the alpha of the light and the range. @@ -31,7 +31,7 @@

diff --git a/code/modules/logging/log_category.html b/code/modules/logging/log_category.html index bdf97ee23ec4..0a4d622e8a99 100644 --- a/code/modules/logging/log_category.html +++ b/code/modules/logging/log_category.html @@ -14,7 +14,7 @@

code/modules/logging/log_category.dm - +

@@ -22,7 +22,7 @@

code/modules/logging/log_category.dm

/datum/log_category/backup_category_not_foundBackup log category to catch attempts to log to a category that doesn't exist
diff --git a/code/modules/logging/log_holder.html b/code/modules/logging/log_holder.html index 5aecab61d3e8..670c908c2dd6 100644 --- a/code/modules/logging/log_holder.html +++ b/code/modules/logging/log_holder.html @@ -14,14 +14,14 @@

code/modules/logging/log_holder.dm - +

/datum/log_holderMain datum to manage logging actions
diff --git a/code/modules/mapping.html b/code/modules/mapping.html index 1f487c6efa9a..050389c8bd0c 100644 --- a/code/modules/mapping.html +++ b/code/modules/mapping.html @@ -14,7 +14,7 @@

code/modules/mapping/README.txt - +

@@ -73,7 +73,7 @@

code/modules/mapping/README.txt

diff --git a/code/modules/mapping/preloader.html b/code/modules/mapping/preloader.html index 1ca3b126517a..a2e5d75a8ea0 100644 --- a/code/modules/mapping/preloader.html +++ b/code/modules/mapping/preloader.html @@ -14,7 +14,7 @@

code/modules/mapping/preloader.dm - +

@@ -25,7 +25,7 @@

code/modules/mapping/preloader.dm

/turf/template_noopSee above explanation
diff --git a/code/modules/mapping/reader.html b/code/modules/mapping/reader.html index af2b6231298a..5d3369bda8f0 100644 --- a/code/modules/mapping/reader.html +++ b/code/modules/mapping/reader.html @@ -14,7 +14,7 @@ — Define Details

code/modules/mapping/reader.dm - +

@@ -27,7 +27,7 @@

code/modules/mapping/reader.dm

/proc/load_map Helper and recommened way to load a map file

Define Details

MAP_DMM - +

DMM SPEC: @@ -44,7 +44,7 @@

MAP_DMM

/tg/ Restrictions: Paths have a specified order. First atoms in the order in which they should be loaded, then a single turf, then the area of the cell DMM technically supports turf stacking, but this is deprecated for all formats

MAP_TGM - +

TGM SPEC: @@ -76,7 +76,7 @@

MAP_DMM /area)

diff --git a/code/modules/mapping/space_management/space_reservation.html b/code/modules/mapping/space_management/space_reservation.html index ce2c95f7c137..bcf35abc1286 100644 --- a/code/modules/mapping/space_management/space_reservation.html +++ b/code/modules/mapping/space_management/space_reservation.html @@ -14,14 +14,14 @@

code/modules/mapping/space_management/space_reservation.dm - +

/area/misc/cordonCordon area surrounding turf reservations
diff --git a/code/modules/mapping/verify.html b/code/modules/mapping/verify.html index f8763e2cb7ef..a54f65fbe34e 100644 --- a/code/modules/mapping/verify.html +++ b/code/modules/mapping/verify.html @@ -14,14 +14,14 @@

code/modules/mapping/verify.dm - +

/datum/map_reportAn error report generated by [parsed_map/check_for_errors].
diff --git a/code/modules/maptext_alerts/text_blurbs.html b/code/modules/maptext_alerts/text_blurbs.html index 3bb53e5df546..0550a498a034 100644 --- a/code/modules/maptext_alerts/text_blurbs.html +++ b/code/modules/maptext_alerts/text_blurbs.html @@ -14,7 +14,7 @@

code/modules/maptext_alerts/text_blurbs.dm - +

@@ -31,7 +31,7 @@

code/modules/maptext_alerts/text_blurbs.dm targets = mob or list of mobs to show it to.

diff --git a/code/modules/mob/language/languages.html b/code/modules/mob/language/languages.html index a57421912488..ae69a5fc0798 100644 --- a/code/modules/mob/language/languages.html +++ b/code/modules/mob/language/languages.html @@ -14,14 +14,14 @@

code/modules/mob/language/languages.dm - +

/datum/language/event_hivemindFont size
diff --git a/code/modules/mob/living/carbon/human/species/human.html b/code/modules/mob/living/carbon/human/species/human.html index f557430b394e..6e1fcda0d0e0 100644 --- a/code/modules/mob/living/carbon/human/species/human.html +++ b/code/modules/mob/living/carbon/human/species/human.html @@ -14,7 +14,7 @@

code/modules/mob/living/carbon/human/species/human.dm - +

@@ -23,7 +23,7 @@

code/modules/mob/living/carbon/human/species/human.dm The limit of the oxyloss gained, ignoring oxyloss from the switch statement

diff --git a/code/modules/mob/living/carbon/human/species/zombie.html b/code/modules/mob/living/carbon/human/species/zombie.html index c66b95f7ded6..91c6cc3bcca6 100644 --- a/code/modules/mob/living/carbon/human/species/zombie.html +++ b/code/modules/mob/living/carbon/human/species/zombie.html @@ -14,19 +14,19 @@ — Define Details

code/modules/mob/living/carbon/human/species/zombie.dm - +

ZOMBIE_REVIVE_TIMETime until a zombie rises from the dead

Define Details

ZOMBIE_REVIVE_TIME - +

Time until a zombie rises from the dead

diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.html b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.html index 11b21bbd0dcf..33e3ae3825b2 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.html +++ b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.html @@ -14,14 +14,14 @@

code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.dm - +

/datum/action/xeno_action/activable/boiler_trapTrapper boiler abilities
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.html b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.html index 2437d32fb0c0..7eb945015d20 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.html +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.html @@ -14,7 +14,7 @@

code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm - +

@@ -26,7 +26,7 @@

code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abi

/datum/action/xeno_action/activable/spray_acid/prae_wardenWARDEN PRAE
diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.html b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.html index 31647d7f7f57..1a49cc62ddb1 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.html +++ b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.html @@ -14,7 +14,7 @@

code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.dm - +

@@ -22,7 +22,7 @@

code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities

/datum/action/xeno_action/onclick/spike_shieldHEDGEHOG ABILITIES
diff --git a/code/modules/mob/living/carbon/xenomorph/update_icons.html b/code/modules/mob/living/carbon/xenomorph/update_icons.html index 03ca85fb640e..462572ce0b70 100644 --- a/code/modules/mob/living/carbon/xenomorph/update_icons.html +++ b/code/modules/mob/living/carbon/xenomorph/update_icons.html @@ -14,14 +14,14 @@

code/modules/mob/living/carbon/xenomorph/update_icons.dm - +

/atom/movable/vis_objUsed to display the xeno wounds/backpacks without rapidly switching overlays
diff --git a/code/modules/mob/living/living_healthscan.html b/code/modules/mob/living/living_healthscan.html index 617efac61cf6..62bc65589aa9 100644 --- a/code/modules/mob/living/living_healthscan.html +++ b/code/modules/mob/living/living_healthscan.html @@ -14,14 +14,14 @@

code/modules/mob/living/living_healthscan.dm - +

/datum/health_scanvars reffing this on /mob/dead/observer, /obj/item/device/healthanalyzer, /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/machinery/body_scanconsole are called last_health_display
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.html b/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.html index f12193e54aa1..01b8844e6002 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.html +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.html @@ -14,14 +14,14 @@

code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.dm - +

/datum/emote/living/giant_lizardCLIENT EMOTES
diff --git a/code/modules/mob/mob_helpers.html b/code/modules/mob/mob_helpers.html index 27991c998e3d..dc3f84a4854e 100644 --- a/code/modules/mob/mob_helpers.html +++ b/code/modules/mob/mob_helpers.html @@ -14,7 +14,7 @@

code/modules/mob/mob_helpers.dm - +

@@ -24,7 +24,7 @@

code/modules/mob/mob_helpers.dm

Replaces S and similar sounds with 'th' and such. Stolen from tg.
diff --git a/code/modules/nightmare/nmcontext.html b/code/modules/nightmare/nmcontext.html index 66050767f0b7..43e43b6ae5f1 100644 --- a/code/modules/nightmare/nmcontext.html +++ b/code/modules/nightmare/nmcontext.html @@ -14,7 +14,7 @@

code/modules/nightmare/nmcontext.dm - +

@@ -22,7 +22,7 @@

code/modules/nightmare/nmcontext.dm

/datum/nmcontext/mapContext belonging to a map scope (ground map, ship map, etc)
diff --git a/code/modules/nightmare/nmnodes/components.html b/code/modules/nightmare/nmnodes/components.html index 816d6e68ae19..44ae6f19cbdb 100644 --- a/code/modules/nightmare/nmnodes/components.html +++ b/code/modules/nightmare/nmnodes/components.html @@ -14,7 +14,7 @@

code/modules/nightmare/nmnodes/components.dm - +

@@ -22,7 +22,7 @@

code/modules/nightmare/nmnodes/components.dm

/datum/element/nmnode_probAdds a probability to skip the node
diff --git a/code/modules/nightmare/nmnodes/flow.html b/code/modules/nightmare/nmnodes/flow.html index bf48e2a61780..db611ec4de40 100644 --- a/code/modules/nightmare/nmnodes/flow.html +++ b/code/modules/nightmare/nmnodes/flow.html @@ -14,7 +14,7 @@

code/modules/nightmare/nmnodes/flow.dm - +

@@ -26,7 +26,7 @@

code/modules/nightmare/nmnodes/flow.dm each node should have a 'weight' key if you want to use weighted pick

diff --git a/code/modules/nightmare/nmnodes/mapload.html b/code/modules/nightmare/nmnodes/mapload.html index b74c908bd28d..81cf83c2aa99 100644 --- a/code/modules/nightmare/nmnodes/mapload.html +++ b/code/modules/nightmare/nmnodes/mapload.html @@ -14,7 +14,7 @@

code/modules/nightmare/nmnodes/mapload.dm - +

@@ -32,7 +32,7 @@

code/modules/nightmare/nmnodes/mapload.dm as a percentage chance.

diff --git a/code/modules/nightmare/nmnodes/nmnode.html b/code/modules/nightmare/nmnodes/nmnode.html index 344e4a84b3b9..5fd007ec00a3 100644 --- a/code/modules/nightmare/nmnodes/nmnode.html +++ b/code/modules/nightmare/nmnodes/nmnode.html @@ -14,14 +14,14 @@

code/modules/nightmare/nmnodes/nmnode.dm - +

/datum/nmnodeDecriptive nightmare config nodes loaded from config files
diff --git a/code/modules/nightmare/nmtasks/mapload.html b/code/modules/nightmare/nmtasks/mapload.html index d6a69ae31673..3e0599f2404f 100644 --- a/code/modules/nightmare/nmtasks/mapload.html +++ b/code/modules/nightmare/nmtasks/mapload.html @@ -14,14 +14,14 @@

code/modules/nightmare/nmtasks/mapload.dm - +

/datum/nmtask/maploadLoads a chunk of map at the specified position
diff --git a/code/modules/nightmare/nmtasks/mapscheduler.html b/code/modules/nightmare/nmtasks/mapscheduler.html index 48b92f8ebb45..d000190c4c45 100644 --- a/code/modules/nightmare/nmtasks/mapscheduler.html +++ b/code/modules/nightmare/nmtasks/mapscheduler.html @@ -14,14 +14,14 @@

code/modules/nightmare/nmtasks/mapscheduler.dm - +

/datum/nmtask/scheduler/maploadHandles map insertions sequentially and updating the game to match map insertions
diff --git a/code/modules/nightmare/nmtasks/nmtask.html b/code/modules/nightmare/nmtasks/nmtask.html index a075b2adb55b..8018eae67bc2 100644 --- a/code/modules/nightmare/nmtasks/nmtask.html +++ b/code/modules/nightmare/nmtasks/nmtask.html @@ -14,14 +14,14 @@

code/modules/nightmare/nmtasks/nmtask.dm - +

/datum/nmtaskNightmare task, executing game actions as part of context
diff --git a/code/modules/nightmare/nmtasks/scheduler.html b/code/modules/nightmare/nmtasks/scheduler.html index a255d3eada83..cb9f3bc0995f 100644 --- a/code/modules/nightmare/nmtasks/scheduler.html +++ b/code/modules/nightmare/nmtasks/scheduler.html @@ -14,14 +14,14 @@

code/modules/nightmare/nmtasks/scheduler.dm - +

/datum/nmtask/schedulerSimple blocking executor to execute several tasks in a row
diff --git a/code/modules/paperwork/paperbin.html b/code/modules/paperwork/paperbin.html index 9f1da0eeb1db..45b83bfd5cff 100644 --- a/code/modules/paperwork/paperbin.html +++ b/code/modules/paperwork/paperbin.html @@ -14,7 +14,7 @@

code/modules/paperwork/paperbin.dm - +

@@ -22,7 +22,7 @@

code/modules/paperwork/paperbin.dm dispenser that was supposed to print pre-filled forms but never did.

diff --git a/code/modules/paperwork/photocopier.html b/code/modules/paperwork/photocopier.html index 0d0516d55d6d..ed850f010dfa 100644 --- a/code/modules/paperwork/photocopier.html +++ b/code/modules/paperwork/photocopier.html @@ -14,7 +14,7 @@

code/modules/paperwork/photocopier.dm - +

@@ -23,7 +23,7 @@

code/modules/paperwork/photocopier.dm

/obj/item/device/tonerThe actual toner cartridge used in photcopiers
diff --git a/code/modules/paperwork/photography.html b/code/modules/paperwork/photography.html index 0ec7fc57d2ce..e8e3351a6f34 100644 --- a/code/modules/paperwork/photography.html +++ b/code/modules/paperwork/photography.html @@ -14,14 +14,14 @@

code/modules/paperwork/photography.dm - +

/datum/picturePicture metadata
diff --git a/code/modules/power/apc.html b/code/modules/power/apc.html index db5fc4607214..7fb8a8c9509c 100644 --- a/code/modules/power/apc.html +++ b/code/modules/power/apc.html @@ -14,7 +14,7 @@ — Define Details

code/modules/power/apc.dm - +

@@ -22,21 +22,21 @@

code/modules/power/apc.dm

APC_CHARGINGThe APC is charging.
APC_FULLY_CHARGEDThe APC is fully charged.

Define Details

APC_CHARGING - +

The APC is charging.

APC_FULLY_CHARGED - +

The APC is fully charged.

APC_NOT_CHARGING - +

The APC is not charging.

diff --git a/code/modules/projectiles/gun_helpers.html b/code/modules/projectiles/gun_helpers.html index 9d440dd799a9..99ed48633fcb 100644 --- a/code/modules/projectiles/gun_helpers.html +++ b/code/modules/projectiles/gun_helpers.html @@ -14,7 +14,7 @@

code/modules/projectiles/gun_helpers.dm - +

@@ -22,7 +22,7 @@

code/modules/projectiles/gun_helpers.dm

Helper proc that processes a clicked target, if the target is not black tiles, it will not change it. If they are it will return the turf of the black tiles. It will return null if the object is a screen object other than black tiles.
diff --git a/code/modules/projectiles/magazines/revolvers.html b/code/modules/projectiles/magazines/revolvers.html index d2a4360b8576..68b4beeef811 100644 --- a/code/modules/projectiles/magazines/revolvers.html +++ b/code/modules/projectiles/magazines/revolvers.html @@ -14,7 +14,7 @@

code/modules/projectiles/magazines/revolvers.dm - +

@@ -23,7 +23,7 @@

code/modules/projectiles/magazines/revolvers.dm

/obj/item/ammo_magazine/revolver/webleyWEBLEY REVOLVER
diff --git a/code/modules/reagents/chemical_research/generated_reagents.html b/code/modules/reagents/chemical_research/generated_reagents.html index d4dba6043b7e..d628a88890ed 100644 --- a/code/modules/reagents/chemical_research/generated_reagents.html +++ b/code/modules/reagents/chemical_research/generated_reagents.html @@ -14,7 +14,7 @@

code/modules/reagents/chemical_research/generated_reagents.dm - +

@@ -24,7 +24,7 @@

code/modules/reagents/chemical_research/generated_reagents.dm

/datum/chemical_reaction/generated/lambdaTier 4
diff --git a/code/modules/reagents/chemistry_reactions/food_drink.html b/code/modules/reagents/chemistry_reactions/food_drink.html index 11d1554e76b1..9ca17c46fe23 100644 --- a/code/modules/reagents/chemistry_reactions/food_drink.html +++ b/code/modules/reagents/chemistry_reactions/food_drink.html @@ -14,14 +14,14 @@

code/modules/reagents/chemistry_reactions/food_drink.dm - +

/datum/chemical_reaction/sbitenDRINKS THAT REQUIRED IMPROVED SPRITES BELOW:: -Agouri
diff --git a/code/modules/reagents/chemistry_reagents/medical.html b/code/modules/reagents/chemistry_reagents/medical.html index 300137c97f56..4e836c706614 100644 --- a/code/modules/reagents/chemistry_reagents/medical.html +++ b/code/modules/reagents/chemistry_reagents/medical.html @@ -14,14 +14,14 @@

code/modules/reagents/chemistry_reagents/medical.dm - +

/datum/reagent/medical/antidepressant/methylphenidateANTIDEPRESSANTS
diff --git a/code/modules/recycling/disposal.html b/code/modules/recycling/disposal.html index 9d093fbb65ac..ebc49ea72c34 100644 --- a/code/modules/recycling/disposal.html +++ b/code/modules/recycling/disposal.html @@ -14,7 +14,7 @@

code/modules/recycling/disposal.dm - +

@@ -22,7 +22,7 @@

code/modules/recycling/disposal.dm Contents will be items flushed by the disposal, this allows the gas flushed to be tracked

diff --git a/code/modules/shuttle/helpers.html b/code/modules/shuttle/helpers.html index 104fa195451b..074c0f175286 100644 --- a/code/modules/shuttle/helpers.html +++ b/code/modules/shuttle/helpers.html @@ -14,7 +14,7 @@

code/modules/shuttle/helpers.dm - +

@@ -22,7 +22,7 @@

code/modules/shuttle/helpers.dm

/datum/door_controller/singleDatum containing methods to allow for the control over a single door group.
diff --git a/code/modules/shuttle/shuttles.html b/code/modules/shuttle/shuttles.html index d748148e8aa0..9f671e8623db 100644 --- a/code/modules/shuttle/shuttles.html +++ b/code/modules/shuttle/shuttles.html @@ -14,7 +14,7 @@

Shuttle Module - +

@@ -50,7 +50,7 @@

Shuttle Module

If things are unclear, look at trident. It has two elevator networks.

diff --git a/code/modules/shuttle/shuttles/crashable/lifeboats.html b/code/modules/shuttle/shuttles/crashable/lifeboats.html index 33f56ba3dcae..3874df28e1d2 100644 --- a/code/modules/shuttle/shuttles/crashable/lifeboats.html +++ b/code/modules/shuttle/shuttles/crashable/lifeboats.html @@ -14,7 +14,7 @@

code/modules/shuttle/shuttles/crashable/lifeboats.dm - +

@@ -28,7 +28,7 @@

code/modules/shuttle/shuttles/crashable/lifeboats.dm

/datum/map_template/shuttle/lifeboat_starboardStarboard-door lifeboat, bow east
diff --git a/code/modules/surgery/surgery_initiator.html b/code/modules/surgery/surgery_initiator.html index e8fe1b7e5114..064b704c27db 100644 --- a/code/modules/surgery/surgery_initiator.html +++ b/code/modules/surgery/surgery_initiator.html @@ -14,7 +14,7 @@

code/modules/surgery/surgery_initiator.dm - +

@@ -22,7 +22,7 @@

code/modules/surgery/surgery_initiator.dm

Does the surgery initiation. Returns TRUE if the triggering attack should be halted.
diff --git a/code/modules/surgery/surgery_procedure.html b/code/modules/surgery/surgery_procedure.html index fb7e9209e844..4ccd8f2b3e00 100644 --- a/code/modules/surgery/surgery_procedure.html +++ b/code/modules/surgery/surgery_procedure.html @@ -14,7 +14,7 @@

code/modules/surgery/surgery_procedure.dm - +

@@ -24,7 +24,7 @@

code/modules/surgery/surgery_procedure.dm Defines are in __DEFINES/human.dm and __DEFINES/surgery.dm.

diff --git a/code/modules/tents/blockers.html b/code/modules/tents/blockers.html index 28c742a12aa6..d2f13de7e524 100644 --- a/code/modules/tents/blockers.html +++ b/code/modules/tents/blockers.html @@ -14,14 +14,14 @@

code/modules/tents/blockers.dm - +

/obj/structure/blocker/tentInvisible Blocker Walls, they link up with the main tent and collapse with it
diff --git a/code/modules/tents/deployed_tents.html b/code/modules/tents/deployed_tents.html index 7f35e0563992..212b448c4051 100644 --- a/code/modules/tents/deployed_tents.html +++ b/code/modules/tents/deployed_tents.html @@ -14,7 +14,7 @@

code/modules/tents/deployed_tents.dm - +

@@ -25,7 +25,7 @@

code/modules/tents/deployed_tents.dm

/obj/structure/tent/bigBig Tent. It's just Big. Use it for shelter or organization!
diff --git a/code/modules/tents/equipment.html b/code/modules/tents/equipment.html index c86367512e7f..162c33f281cd 100644 --- a/code/modules/tents/equipment.html +++ b/code/modules/tents/equipment.html @@ -14,7 +14,7 @@

code/modules/tents/equipment.dm - +

@@ -26,7 +26,7 @@

code/modules/tents/equipment.dm

/obj/structure/tent_curtainCloseable curtains
diff --git a/code/modules/tgchat/message.html b/code/modules/tgchat/message.html index e84c0a6dcbc6..df7ac147df01 100644 --- a/code/modules/tgchat/message.html +++ b/code/modules/tgchat/message.html @@ -14,7 +14,7 @@

code/modules/tgchat/message.dm - +

@@ -22,7 +22,7 @@

code/modules/tgchat/message.dm

Message-related procs
diff --git a/code/modules/tgchat/to_chat.html b/code/modules/tgchat/to_chat.html index 869614b187a4..7cbe923d471a 100644 --- a/code/modules/tgchat/to_chat.html +++ b/code/modules/tgchat/to_chat.html @@ -14,7 +14,7 @@

code/modules/tgchat/to_chat.dm - +

@@ -27,7 +27,7 @@

code/modules/tgchat/to_chat.dm

Sends the message to the recipient (target).
diff --git a/code/modules/tgs.html b/code/modules/tgs.html index d200334bc68b..0a999d700f96 100644 --- a/code/modules/tgs.html +++ b/code/modules/tgs.html @@ -14,7 +14,7 @@

DMAPI Internals - +

@@ -34,7 +34,7 @@

DMAPI Internals

APIs communicate with TGS in two ways. All versions implement TGS -> DM communication using /world/Topic. DM -> TGS communication, called the bridge method, is different for each version.

diff --git a/code/modules/tgs/core.html b/code/modules/tgs/core.html index 3a1653f9b3f7..31aaf88ee10c 100644 --- a/code/modules/tgs/core.html +++ b/code/modules/tgs/core.html @@ -14,7 +14,7 @@

Core DMAPI functions - +

@@ -28,7 +28,7 @@

Core DMAPI functions

diff --git a/code/modules/tgs/v3210.html b/code/modules/tgs/v3210.html index 17fb3eae0b92..a16d900b31f4 100644 --- a/code/modules/tgs/v3210.html +++ b/code/modules/tgs/v3210.html @@ -14,7 +14,7 @@

DMAPI V3 - +

@@ -25,7 +25,7 @@

DMAPI V3

diff --git a/code/modules/tgs/v4.html b/code/modules/tgs/v4.html index 8a02008f3cfe..2096403ac460 100644 --- a/code/modules/tgs/v4.html +++ b/code/modules/tgs/v4.html @@ -14,7 +14,7 @@

DMAPI V4 - +

@@ -25,7 +25,7 @@

DMAPI V4

diff --git a/code/modules/tgs/v5.html b/code/modules/tgs/v5.html index 1ae3a6ffc0f5..54908835c94c 100644 --- a/code/modules/tgs/v5.html +++ b/code/modules/tgs/v5.html @@ -14,7 +14,7 @@

DMAPI V5 - +

@@ -32,7 +32,7 @@

DMAPI V5

diff --git a/code/modules/tgui/external.html b/code/modules/tgui/external.html index 2bda1d86459f..18b9d22ef522 100644 --- a/code/modules/tgui/external.html +++ b/code/modules/tgui/external.html @@ -14,7 +14,7 @@

code/modules/tgui/external.dm - +

@@ -25,7 +25,7 @@

code/modules/tgui/external.dm

Middleware for /client/Topic.
diff --git a/code/modules/tgui/states.html b/code/modules/tgui/states.html index e62573282ae7..2647d9a21edb 100644 --- a/code/modules/tgui/states.html +++ b/code/modules/tgui/states.html @@ -14,7 +14,7 @@

code/modules/tgui/states.dm - +

@@ -24,7 +24,7 @@

code/modules/tgui/states.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/admin.html b/code/modules/tgui/states/admin.html index 7b5a738ad354..921eaee8a84e 100644 --- a/code/modules/tgui/states/admin.html +++ b/code/modules/tgui/states/admin.html @@ -14,7 +14,7 @@

code/modules/tgui/states/admin.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/admin.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/always.html b/code/modules/tgui/states/always.html index bc1e98830169..15ef4e5b08d4 100644 --- a/code/modules/tgui/states/always.html +++ b/code/modules/tgui/states/always.html @@ -14,7 +14,7 @@

code/modules/tgui/states/always.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/always.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/conscious.html b/code/modules/tgui/states/conscious.html index ad2fb5c2ebac..49f2accd07bd 100644 --- a/code/modules/tgui/states/conscious.html +++ b/code/modules/tgui/states/conscious.html @@ -14,7 +14,7 @@

code/modules/tgui/states/conscious.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/conscious.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/contained.html b/code/modules/tgui/states/contained.html index 85e187d75d61..3a752c41ce5a 100644 --- a/code/modules/tgui/states/contained.html +++ b/code/modules/tgui/states/contained.html @@ -14,7 +14,7 @@

code/modules/tgui/states/contained.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/contained.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/deep_inventory.html b/code/modules/tgui/states/deep_inventory.html index 8897c09cbd2b..d68c530cf6d0 100644 --- a/code/modules/tgui/states/deep_inventory.html +++ b/code/modules/tgui/states/deep_inventory.html @@ -14,7 +14,7 @@

code/modules/tgui/states/deep_inventory.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/deep_inventory.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/default.html b/code/modules/tgui/states/default.html index bceed06f566d..aef4a3b981d8 100644 --- a/code/modules/tgui/states/default.html +++ b/code/modules/tgui/states/default.html @@ -14,7 +14,7 @@

code/modules/tgui/states/default.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/default.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/hands.html b/code/modules/tgui/states/hands.html index 2cd85c4798c6..f6e727d65a90 100644 --- a/code/modules/tgui/states/hands.html +++ b/code/modules/tgui/states/hands.html @@ -14,7 +14,7 @@

code/modules/tgui/states/hands.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/hands.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/human_adjacent.html b/code/modules/tgui/states/human_adjacent.html index 13abf41ec087..a73f83dc2597 100644 --- a/code/modules/tgui/states/human_adjacent.html +++ b/code/modules/tgui/states/human_adjacent.html @@ -14,7 +14,7 @@

code/modules/tgui/states/human_adjacent.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/human_adjacent.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/inventory.html b/code/modules/tgui/states/inventory.html index 031b09a3dda2..9f63b9722280 100644 --- a/code/modules/tgui/states/inventory.html +++ b/code/modules/tgui/states/inventory.html @@ -14,7 +14,7 @@

code/modules/tgui/states/inventory.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/inventory.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/never.html b/code/modules/tgui/states/never.html index c17493d143bd..987d8eb4344a 100644 --- a/code/modules/tgui/states/never.html +++ b/code/modules/tgui/states/never.html @@ -14,7 +14,7 @@

code/modules/tgui/states/never.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/never.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/not_incapacitated.html b/code/modules/tgui/states/not_incapacitated.html index 5edd300199ac..08ee9db5a86e 100644 --- a/code/modules/tgui/states/not_incapacitated.html +++ b/code/modules/tgui/states/not_incapacitated.html @@ -14,7 +14,7 @@

code/modules/tgui/states/not_incapacitated.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/not_incapacitated.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/not_incapacitated_and_inventory.html b/code/modules/tgui/states/not_incapacitated_and_inventory.html index aa0e8a18e37a..84e41b0c7739 100644 --- a/code/modules/tgui/states/not_incapacitated_and_inventory.html +++ b/code/modules/tgui/states/not_incapacitated_and_inventory.html @@ -14,7 +14,7 @@

code/modules/tgui/states/not_incapacitated_and_inventory.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/not_incapacitated_and_inventory.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/notcontained.html b/code/modules/tgui/states/notcontained.html index 35f417d0cd58..cc3ce5c12103 100644 --- a/code/modules/tgui/states/notcontained.html +++ b/code/modules/tgui/states/notcontained.html @@ -14,7 +14,7 @@

code/modules/tgui/states/notcontained.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/notcontained.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/observer.html b/code/modules/tgui/states/observer.html index d02b8cccfd31..6d4c014b5cd7 100644 --- a/code/modules/tgui/states/observer.html +++ b/code/modules/tgui/states/observer.html @@ -14,7 +14,7 @@

code/modules/tgui/states/observer.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/observer.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/physical.html b/code/modules/tgui/states/physical.html index 08b5166cd32a..d1b26b31e12f 100644 --- a/code/modules/tgui/states/physical.html +++ b/code/modules/tgui/states/physical.html @@ -14,7 +14,7 @@

code/modules/tgui/states/physical.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/physical.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/reverse_contained.html b/code/modules/tgui/states/reverse_contained.html index 91a9016269bf..f1e647dae562 100644 --- a/code/modules/tgui/states/reverse_contained.html +++ b/code/modules/tgui/states/reverse_contained.html @@ -14,14 +14,14 @@

code/modules/tgui/states/reverse_contained.dm - +

Not copyrighted, but magatsuchi made it.

diff --git a/code/modules/tgui/states/self.html b/code/modules/tgui/states/self.html index 412c37082d98..e41834a11c55 100644 --- a/code/modules/tgui/states/self.html +++ b/code/modules/tgui/states/self.html @@ -14,7 +14,7 @@

code/modules/tgui/states/self.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/self.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/states/zlevel.html b/code/modules/tgui/states/zlevel.html index 0cf4e2e56260..a7ed478c91bb 100644 --- a/code/modules/tgui/states/zlevel.html +++ b/code/modules/tgui/states/zlevel.html @@ -14,7 +14,7 @@

code/modules/tgui/states/zlevel.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/states/zlevel.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui/status_composers.html b/code/modules/tgui/status_composers.html index 619e39121634..0bdf776cce3b 100644 --- a/code/modules/tgui/status_composers.html +++ b/code/modules/tgui/status_composers.html @@ -14,7 +14,7 @@

code/modules/tgui/status_composers.dm - +

@@ -40,7 +40,7 @@

code/modules/tgui/status_composers.dm Return UI_CLOSE otherwise.

diff --git a/code/modules/tgui/tgui-say/modal.html b/code/modules/tgui/tgui-say/modal.html index d99248c1b0de..b44521e1bf3f 100644 --- a/code/modules/tgui/tgui-say/modal.html +++ b/code/modules/tgui/tgui-say/modal.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui-say/modal.dm - +

@@ -23,7 +23,7 @@

code/modules/tgui/tgui-say/modal.dm delegate the speech to the proper channel.

diff --git a/code/modules/tgui/tgui.html b/code/modules/tgui/tgui.html index c1103a63f964..95f81bfde6f2 100644 --- a/code/modules/tgui/tgui.html +++ b/code/modules/tgui/tgui.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui.dm - +

@@ -23,7 +23,7 @@

code/modules/tgui/tgui.dm

/datum/tguitgui datum (represents a UI).
diff --git a/code/modules/tgui/tgui_alert.html b/code/modules/tgui/tgui_alert.html index 6dca96664939..be5b1f076b6a 100644 --- a/code/modules/tgui/tgui_alert.html +++ b/code/modules/tgui/tgui_alert.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui_alert.dm - +

@@ -27,7 +27,7 @@

code/modules/tgui/tgui_alert.dm

/datum/tgui_modal/asyncAn asynchronous version of tgui_modal to be used with callbacks instead of waiting on user responses.
diff --git a/code/modules/tgui/tgui_input_list.html b/code/modules/tgui/tgui_input_list.html index d871288c407c..225eb37786a5 100644 --- a/code/modules/tgui/tgui_input_list.html +++ b/code/modules/tgui/tgui_input_list.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui_input_list.dm - +

@@ -27,7 +27,7 @@

code/modules/tgui/tgui_input_list.dm

/datum/tgui_list_input/asyncAn asynchronous version of tgui_list_input to be used with callbacks instead of waiting on user responses.
diff --git a/code/modules/tgui/tgui_number_input.html b/code/modules/tgui/tgui_number_input.html index 9a071c418ae2..a117e026f205 100644 --- a/code/modules/tgui/tgui_number_input.html +++ b/code/modules/tgui/tgui_number_input.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui_number_input.dm - +

@@ -29,7 +29,7 @@

code/modules/tgui/tgui_number_input.dm

/datum/tgui_input_number/asyncAn asynchronous version of tgui_input_number to be used with callbacks instead of waiting on user responses.
diff --git a/code/modules/tgui/tgui_window.html b/code/modules/tgui/tgui_window.html index a24444cd18ef..f1f4be64a0b4 100644 --- a/code/modules/tgui/tgui_window.html +++ b/code/modules/tgui/tgui_window.html @@ -14,7 +14,7 @@

code/modules/tgui/tgui_window.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui/tgui_window.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui_input/checkboxes.html b/code/modules/tgui_input/checkboxes.html index c7b348d3797f..173afb83ac5e 100644 --- a/code/modules/tgui_input/checkboxes.html +++ b/code/modules/tgui_input/checkboxes.html @@ -14,7 +14,7 @@

code/modules/tgui_input/checkboxes.dm - +

@@ -26,7 +26,7 @@

code/modules/tgui_input/checkboxes.dm

/datum/tgui_checkbox_input/asyncAn asynchronous version of tgui_checkbox_input to be used with callbacks instead of waiting on user responses.
diff --git a/code/modules/tgui_input/text.html b/code/modules/tgui_input/text.html index 3bcd84f99aba..e3ea78e45908 100644 --- a/code/modules/tgui_input/text.html +++ b/code/modules/tgui_input/text.html @@ -14,7 +14,7 @@

code/modules/tgui_input/text.dm - +

@@ -23,7 +23,7 @@

code/modules/tgui_input/text.dm

/datum/tgui_input_texttgui_input_text
diff --git a/code/modules/tgui_panel/audio.html b/code/modules/tgui_panel/audio.html index 5d1b9172be38..13f0c5c96d83 100644 --- a/code/modules/tgui_panel/audio.html +++ b/code/modules/tgui_panel/audio.html @@ -14,7 +14,7 @@

code/modules/tgui_panel/audio.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui_panel/audio.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui_panel/external.html b/code/modules/tgui_panel/external.html index 151daf3e9e91..b9fa06bc2451 100644 --- a/code/modules/tgui_panel/external.html +++ b/code/modules/tgui_panel/external.html @@ -14,7 +14,7 @@

code/modules/tgui_panel/external.dm - +

@@ -22,7 +22,7 @@

code/modules/tgui_panel/external.dm SPDX-License-Identifier: MIT

diff --git a/code/modules/tgui_panel/telemetry.html b/code/modules/tgui_panel/telemetry.html index 669f442475f3..a1ddd3874a37 100644 --- a/code/modules/tgui_panel/telemetry.html +++ b/code/modules/tgui_panel/telemetry.html @@ -14,7 +14,7 @@ — Define Details

code/modules/tgui_panel/telemetry.dm - +

@@ -24,18 +24,18 @@

code/modules/tgui_panel/telemetry.dm Should match the value set in the browser.

TGUI_TELEMETRY_RESPONSE_WINDOWMaximum time allocated for sending a telemetry packet.

Define Details

TGUI_TELEMETRY_MAX_CONNECTIONS - +

Maximum number of connection records allowed to analyze. Should match the value set in the browser.

TGUI_TELEMETRY_RESPONSE_WINDOW - +

Maximum time allocated for sending a telemetry packet.

diff --git a/code/modules/tgui_panel/tgui_panel.html b/code/modules/tgui_panel/tgui_panel.html index 44e034048edc..b81011347e63 100644 --- a/code/modules/tgui_panel/tgui_panel.html +++ b/code/modules/tgui_panel/tgui_panel.html @@ -14,7 +14,7 @@

code/modules/tgui_panel/tgui_panel.dm - +

@@ -24,7 +24,7 @@

code/modules/tgui_panel/tgui_panel.dm Hosts tgchat and other nice features.

diff --git a/code/modules/unit_tests.html b/code/modules/unit_tests.html index 3993d2a8f6f4..115a7f9ba68f 100644 --- a/code/modules/unit_tests.html +++ b/code/modules/unit_tests.html @@ -14,7 +14,7 @@

Unit Tests - +

@@ -68,7 +68,7 @@

Unit Tests

diff --git a/code/modules/unit_tests/_unit_tests.html b/code/modules/unit_tests/_unit_tests.html index 525a7821e4db..aed998ba2612 100644 --- a/code/modules/unit_tests/_unit_tests.html +++ b/code/modules/unit_tests/_unit_tests.html @@ -14,7 +14,7 @@ — Define Details

code/modules/unit_tests/_unit_tests.dm - +

@@ -41,81 +41,81 @@

code/modules/unit_tests/_unit_tests.dm

TRAIT_SOURCE_UNIT_TESTSA trait source when adding traits through unit tests

Define Details

TEST_ASSERT - +

Asserts that a condition is true If the condition is not true, fails the test

TEST_ASSERT_EQUAL - +

Asserts that the two parameters passed are equal, fails otherwise Optionally allows an additional message in the case of a failure

TEST_ASSERT_NOTEQUAL - +

Asserts that the two parameters passed are not equal, fails otherwise Optionally allows an additional message in the case of a failure

TEST_ASSERT_NOTNULL - +

Asserts that a parameter is not null

TEST_ASSERT_NULL - +

Asserts that a parameter is null

TEST_CREATE_AND_DESTROY - +

This must be the last test to run due to the inherent nature of the test iterating every single tangible atom in the game and qdeleting all of them (while taking long sleeps to make sure the garbage collector fires properly) taking a large amount of time.

TEST_FAIL - +

For advanced cases, fail unconditionally but don't return (so a test can return multiple results)

TEST_FOCUS - +

Only run the test provided within the parentheses This is useful for debugging when you want to reduce noise, but should never be pushed Intended to be used in the manner of TEST_FOCUS(/datum/unit_test/math)

TEST_LONGER - +

After most test steps, used for tests that run long so shorter issues can be noticed faster

TEST_NOTICE - +

Logs a noticeable message on GitHub, but will not mark as an error. Use this when something shouldn't happen and is of note, but shouldn't block CI. Does not mark the test as failed.

TEST_OUTPUT_GREEN - +

Change color to green on ANSI terminal output, if enabled with -DANSICOLORS.

TEST_OUTPUT_RED - +

Change color to red on ANSI terminal output, if enabled with -DANSICOLORS.

TRAIT_SOURCE_UNIT_TESTS - +

A trait source when adding traits through unit tests

UNIT_TEST_PASSED - +

Constants indicating unit test completion status

diff --git a/code/modules/unit_tests/autowiki.html b/code/modules/unit_tests/autowiki.html index 1d0cc1c5af93..2bfdea4c291d 100644 --- a/code/modules/unit_tests/autowiki.html +++ b/code/modules/unit_tests/autowiki.html @@ -14,7 +14,7 @@

code/modules/unit_tests/autowiki.dm - +

@@ -22,7 +22,7 @@

code/modules/unit_tests/autowiki.dm

/datum/unit_test/autowiki_include_templateTest that include_template produces reasonable results
diff --git a/code/modules/unit_tests/create_and_destroy.html b/code/modules/unit_tests/create_and_destroy.html index 025cf7d38898..6d03a345ce2c 100644 --- a/code/modules/unit_tests/create_and_destroy.html +++ b/code/modules/unit_tests/create_and_destroy.html @@ -14,14 +14,14 @@

code/modules/unit_tests/create_and_destroy.dm - +

/datum/unit_test/create_and_destroyDelete one of every type, sleep a while, then check to see if anything has gone fucky
diff --git a/code/modules/unit_tests/emote_panels.html b/code/modules/unit_tests/emote_panels.html index ad7c914720e8..b6a53ce7a420 100644 --- a/code/modules/unit_tests/emote_panels.html +++ b/code/modules/unit_tests/emote_panels.html @@ -14,14 +14,14 @@

code/modules/unit_tests/emote_panels.dm - +

/datum/unit_test/emote_panelsTest that all emotes for Working Joes & Yautja have a category
diff --git a/code/modules/unit_tests/focus_only_tests.html b/code/modules/unit_tests/focus_only_tests.html index 1426e6ffdf04..afecf3df3da1 100644 --- a/code/modules/unit_tests/focus_only_tests.html +++ b/code/modules/unit_tests/focus_only_tests.html @@ -14,7 +14,7 @@

code/modules/unit_tests/focus_only_tests.dm - +

@@ -31,7 +31,7 @@

code/modules/unit_tests/focus_only_tests.dm

/datum/unit_test/focus_only/sorted_smoothing_groupsChecks that smoothing_groups and canSmoothWith are properly sorted in /atom/Initialize
diff --git a/code/modules/unit_tests/missing_icons.html b/code/modules/unit_tests/missing_icons.html index 66ea3529b3ea..fa2786057602 100644 --- a/code/modules/unit_tests/missing_icons.html +++ b/code/modules/unit_tests/missing_icons.html @@ -14,14 +14,14 @@

code/modules/unit_tests/missing_icons.dm - +

/datum/unit_test/missing_iconsMakes sure objects actually have icons that exist!
diff --git a/code/modules/unit_tests/spritesheets.html b/code/modules/unit_tests/spritesheets.html index bb9534c9433c..e324c56ffe5d 100644 --- a/code/modules/unit_tests/spritesheets.html +++ b/code/modules/unit_tests/spritesheets.html @@ -14,14 +14,14 @@

code/modules/unit_tests/spritesheets.dm - +

/datum/unit_test/spritesheetsChecks if spritesheet assets contain icon states with invalid names
diff --git a/code/modules/unit_tests/subsystem_init.html b/code/modules/unit_tests/subsystem_init.html index a582edeaf4fd..1e5e3f098ffb 100644 --- a/code/modules/unit_tests/subsystem_init.html +++ b/code/modules/unit_tests/subsystem_init.html @@ -14,14 +14,14 @@

code/modules/unit_tests/subsystem_init.dm - +

/datum/unit_test/subsystem_initTests that all subsystems that need to properly initialize.
diff --git a/code/modules/unit_tests/tgui_create_message.html b/code/modules/unit_tests/tgui_create_message.html index bc68f4ce2b7f..330a72b7c457 100644 --- a/code/modules/unit_tests/tgui_create_message.html +++ b/code/modules/unit_tests/tgui_create_message.html @@ -14,14 +14,14 @@

code/modules/unit_tests/tgui_create_message.dm - +

/datum/unit_test/tgui_create_messageTest that TGUI_CREATE_MESSAGE is correctly implemented
diff --git a/code/modules/vehicles/hardpoints/hardpoint.html b/code/modules/vehicles/hardpoints/hardpoint.html index 8c062dd242b2..ab30c0470912 100644 --- a/code/modules/vehicles/hardpoints/hardpoint.html +++ b/code/modules/vehicles/hardpoints/hardpoint.html @@ -14,14 +14,14 @@

code/modules/vehicles/hardpoints/hardpoint.dm - +

/obj/item/hardpointHardpoints are any items that attach to a base vehicle, such as wheels/treads, support systems and guns
diff --git a/code/modules/vehicles/interior/interactable/vendors.html b/code/modules/vehicles/interior/interactable/vendors.html index 9e9c5e12387c..40e764c3a4a7 100644 --- a/code/modules/vehicles/interior/interactable/vendors.html +++ b/code/modules/vehicles/interior/interactable/vendors.html @@ -14,14 +14,14 @@

code/modules/vehicles/interior/interactable/vendors.dm - +

/obj/structure/machinery/cm_vending/sorted/vehicle_supply/tentModified Restockable APC-based vendor for use by Req in the deployable tent
diff --git a/code/modules/vehicles/interior/interior.html b/code/modules/vehicles/interior/interior.html index fe649774302c..7e69334853ed 100644 --- a/code/modules/vehicles/interior/interior.html +++ b/code/modules/vehicles/interior/interior.html @@ -14,14 +14,14 @@

code/modules/vehicles/interior/interior.dm - +

/datum/role_reserved_slotsspecial role slots datum. Stores category name, roles, amount of taken slots and total slots.
diff --git a/datum.html b/datum.html index ef1ddcb09996..3a354a1fa5af 100644 --- a/datum.html +++ b/datum.html @@ -16,7 +16,7 @@

/datum - +

The absolute base class for everything

@@ -69,39 +69,39 @@

Var Details

Status traits attached to this datum. associative list of the form: list(trait name (string) = list(source1, source2, source3,...))

active_timers - +

Active timers with this datum as the target

comp_lookup - +

Any datum registered to receive signals from this datum is in this list

Lazy associated list in the structure of signal:registree/list of registrees

datum_components - +

Components attached to this datum

Lazy associated list in the structure of type:component/list of components

datum_flags - +

Datum level flags

gc_destroyed - +

Tick count time when this object was destroyed.

If this is non zero then the object has been garbage collected and is awaiting either @@ -109,20 +109,20 @@

Var Details

Is this datum capable of sending signals?

Set to true when a signal has been registered

signal_procs - +

Lazy associated list in the structure of signals:proctype that are run when the datum receives that signal

tgui_shared_states - +

global

Associative list of JSON-encoded shared states that were set by @@ -130,12 +130,12 @@

Var Details

- +

A weak reference to another datum

Proc Details

Destroy

Default implementation of clean-up code.

@@ -152,7 +152,7 @@

Var Details