diff --git a/area.html b/area.html index 7cc9473f6e2..3d424693712 100644 --- a/area.html +++ b/area.html @@ -16,7 +16,7 @@

area - +

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

area

LateInitialize

Sets machine power levels in the area

powered

weather /////weather

diff --git a/atom.html b/atom.html index e66daa97307..4289a5d2874 100644 --- a/atom.html +++ b/atom.html @@ -16,7 +16,7 @@

atom - +

Procs

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

Var Details

used to store the different colors on an atom

its inherent color, the colored paint applied on it, special color effect etc...

reagent_flags - +

Chemistry.

Proc Details

GenerateTag

Generate a tag for this atom

LateInitialize

Late Intialization, for code that should run after all atoms have run Intialization

@@ -68,7 +68,7 @@

Var Details

Called when an atom is created in byond (built in engine proc)

@@ -79,61 +79,61 @@

Var Details

Name Set Handling

add_atom_colour

Adds an instance of colour_type to the atom's atom_colours list

get_alarm_z

Assisting procs

set_density

Density Handling

set_dir

Direction Handling

set_invisibility

Invisibility Set Handling

set_opacity

Opacity Handling

singuloCanEat

Nar-Sie Act/Pull

update_atom_colour

Resets the atom's color to null, and then sets it to the highest priority colour available

diff --git a/atom/movable.html b/atom/movable.html index cf098558de7..5b26856e55b 100644 --- a/atom/movable.html +++ b/atom/movable.html @@ -16,7 +16,7 @@

movable - +

Vars

@@ -31,12 +31,12 @@

Var Details

Used to check wether or not an atom is being handled by SSfalling.

Proc Details

can_fall

An overridable proc used by SSfalling to determine whether or not an atom @@ -54,19 +54,19 @@

Var Details

obj/effect/shield/get_explosion_resistance() //Part of recursive explosions, probably unimplemented

set_anchored

Sets the anchored var and returns if it was sucessfully changed or not.

diff --git a/client.html b/client.html index 87f83e42fcf..863e102741c 100644 --- a/client.html +++ b/client.html @@ -16,7 +16,7 @@

client - +

Client datum

@@ -60,43 +60,43 @@

Var Details

List of all completed blocking send jobs awaiting acknowledgement by send_asset

externalreplyamount - +

Internal counter for clients sending external (IRC/Discord) relay messages via ahelp to prevent spamming. Set to a number every time an admin reply is sent, decremented for every client send.

holder - +

Contains admin info. Null if client is not an admin.

last_asset_job - +

Last asset send job id.

last_message - +

Contains the last message sent by this client - used to protect against copy-paste spamming.

last_message_count - +

contins a number of how many times a message identical to last_message was sent.

parent_type - +

This line makes clients parent type be a datum

By default in byond if you define a proc on datums, that proc will exist on nearly every single type @@ -113,38 +113,38 @@

Var Details

global

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

tgui_windows - +

global

Tracks open windows for a user.

tooltips - +

datum that controls the displaying and hiding of tooltips

total_count_reset - +

Next tick to reset the total message counter

total_message_count - +

How many messages sent in the last 10 seconds

Proc Details

Process_Grab

Process_Grab() @@ -152,32 +152,32 @@

Var Details

dumb workaround because byond doesnt seem to recognize the PROC_REF(Topic) typepath for /datum/proc/Topic() from the client Topic, so we cant queue it without this

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. @@ -185,7 +185,7 @@

Var Details

Called when a Nano UI window is closed @@ -194,7 +194,7 @@

Var Details

A "panic button" verb to close all UIs on current mob. @@ -203,7 +203,7 @@

Var Details

verb

@@ -212,7 +212,7 @@

Var Details

Vars

@@ -153,7 +153,7 @@

code/New_Hud_Manual_en.txt

diff --git a/code/New_Hud_Manual_ru.html b/code/New_Hud_Manual_ru.html index 04d9e247d64..abd46456813 100644 --- a/code/New_Hud_Manual_ru.html +++ b/code/New_Hud_Manual_ru.html @@ -14,7 +14,7 @@

code/New_Hud_Manual_ru.txt - +

@@ -153,7 +153,7 @@

code/New_Hud_Manual_ru.txt

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

code/__DEFINES/MC.dm - +

@@ -52,82 +52,82 @@

code/__DEFINES/MC.dm

INITSTAGE_MAINMain init stage
INITSTAGE_MAXHighest 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 (100 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_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. @@ -137,7 +137,7 @@

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

diff --git a/code/__DEFINES/_globals.html b/code/__DEFINES/_globals.html index db4d670aae0..a3124223dbd 100644 --- a/code/__DEFINES/_globals.html +++ b/code/__DEFINES/_globals.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/_globals.dm - +

@@ -36,88 +36,88 @@

code/__DEFINES/_globals.dm

GLOBAL_DATUMCreate a typed null global

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_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_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/admin.html b/code/__DEFINES/admin.html index 66ee9cbdea4..ffc3d2a41d3 100644 --- a/code/__DEFINES/admin.html +++ b/code/__DEFINES/admin.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/admin.dm - +

BANTYPE_ANY_FULLBANused to locate stuff to unban.

Define Details

BANTYPE_ANY_FULLBAN - +

used to locate stuff to unban.

diff --git a/code/__DEFINES/callbacks.html b/code/__DEFINES/callbacks.html index 05c6381e3a1..9f075b2c90b 100644 --- a/code/__DEFINES/callbacks.html +++ b/code/__DEFINES/callbacks.html @@ -14,24 +14,24 @@ — Define Details

code/__DEFINES/callbacks.dm - +

CALLBACKA shorthand for the callback datum, documented here
VERB_CALLBACKlike CALLBACK but specifically for verb callbacks

Define Details

CALLBACK - +

A shorthand for the callback datum, documented here

VERB_CALLBACK - +

like CALLBACK but specifically for verb callbacks

diff --git a/code/__DEFINES/construction.html b/code/__DEFINES/construction.html index 3ca8c6e2ddd..799e33f5148 100644 --- a/code/__DEFINES/construction.html +++ b/code/__DEFINES/construction.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/construction.dm - +

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

code/__DEFINES/construction.dm

PIPE_UNIVERSALSupply, scrubbers and universal pipes
PIPE_MTVALVEMMirrored T-valve ~ because I couldn't be bothered re-sorting all of the defines

Define Details

PIPE_GAS_FILTER_M - +

Z-Level stuff

PIPE_MTVALVEM - +

Mirrored T-valve ~ because I couldn't be bothered re-sorting all of the defines

PIPE_UNIVERSAL - +

Supply, scrubbers and universal pipes

PIPE_UP - +

Z-Level stuff

diff --git a/code/__DEFINES/cooldowns.html b/code/__DEFINES/cooldowns.html index 6f107538551..c2dc680581c 100644 --- a/code/__DEFINES/cooldowns.html +++ b/code/__DEFINES/cooldowns.html @@ -14,20 +14,20 @@ — Define Details

code/__DEFINES/cooldowns.dm - +

COMSIG_CD_STOPCOOLDOWN SYSTEMS

Define Details

COMSIG_CD_STOP - +

COOLDOWN SYSTEMS

diff --git a/code/__DEFINES/dcs/flags.html b/code/__DEFINES/dcs/flags.html index f88fdd5796f..19851e54129 100644 --- a/code/__DEFINES/dcs/flags.html +++ b/code/__DEFINES/dcs/flags.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/flags.dm - +

@@ -38,64 +38,64 @@

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

COMPONENT_TRANSFER - +

Used in _upgrades.dm. Didn't do anything prior to the update to 2022 TG components and won't do anything now. Consider removing or defining behavior.

ELEMENT_BESPOKE - +

Only elements created with the same arguments given after argument_hash_start_idx 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_COMPLEX_DETACH - +

Causes all detach arguments to be passed to detach instead of only being used to identify the element When this is used your Detach proc should have the same signature as your Attach proc

ELEMENT_DETACH_ON_HOST_DESTROY - +

Causes the detach proc to be called when the host object is being deleted. Should only be used if you need to perform cleanup not related to the host object. You do not need this if you are only unregistering signals, for instance. You would need it if you are doing something like removing the target from a processing list.

ELEMENT_INCOMPATIBLE - +

Return value to cancel attaching

diff --git a/code/__DEFINES/dcs/helpers.html b/code/__DEFINES/dcs/helpers.html index 717cf9dcb9b..33d1dba9a84 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,27 +31,27 @@

code/__DEFINES/dcs/helpers.dm

LoadComponentA wrapper for _LoadComponent 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

LoadComponent - +

A wrapper for _LoadComponent 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 @@ -59,18 +59,18 @@

AddCompo Returns a bitfield gathered from all registered procs Arguments given here are packaged in a list and given to _SendSignal

SEND_SIGNAL_OLD - +

Old method of sending signals, anything using this should be updated to work with SEND_SIGNAL()

SIGNAL_HANDLER - +

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

diff --git a/code/__DEFINES/dcs/signals.html b/code/__DEFINES/dcs/signals.html index 52113217f4c..cb3bb0f7c35 100644 --- a/code/__DEFINES/dcs/signals.html +++ b/code/__DEFINES/dcs/signals.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/dcs/signals.dm - +

@@ -32,55 +32,55 @@

code/__DEFINES/dcs/signals.dm

COMSIG_ELEMENT_DETACHfires on the target datum when an element is attached to it (/datum/element)
COMSIG_STORAGE_INSERTEDComponent Specific Signals

Define Details

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 ClearFromParent: (/datum/component)

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_PARENT_PREQDELETED - +

before a datum's Destroy() is called: (force), returning a nonzero value will cancel the qdel operation you should only be using this if you want to block deletion that's the only functional difference between it and COMSIG_PARENT_QDELETING, outside setting QDELETING to detect

COMSIG_PARENT_QDELETED - +

after a datum's Destroy() is called: (force, qdel_hint), at this point none of the other components chose to interrupt qdel and Destroy has been called

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_STORAGE_INSERTED - +

Component Specific Signals

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/gamemode.html b/code/__DEFINES/gamemode.html index f21b66e889e..51876ec0714 100644 --- a/code/__DEFINES/gamemode.html +++ b/code/__DEFINES/gamemode.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/gamemode.dm - +

GHOSTCASTWIZARD

Define Details

GHOSTCAST - +

WIZARD

diff --git a/code/__DEFINES/inventory_sizes.html b/code/__DEFINES/inventory_sizes.html index b37796064fd..6679e5aedcf 100644 --- a/code/__DEFINES/inventory_sizes.html +++ b/code/__DEFINES/inventory_sizes.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/inventory_sizes.dm - +

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

code/__DEFINES/inventory_sizes.dm

ITEM_SIZE_COLOSSALFor something large which takes an entire tile, (e.g. a full glass window, or a girder)
ITEM_SIZE_TITANICSomething so large that it extends beyond the confines of its tile, (e.g. scrap beacon)

Define Details

ITEM_SIZE_BULKY - +

Items that can be wielded or equipped, (e.g. defibrillator, backpack, space suits)

ITEM_SIZE_COLOSSAL - +

For something large which takes an entire tile, (e.g. a full glass window, or a girder)

ITEM_SIZE_GARGANTUAN - +

Essentially means it cannot be picked up or placed in an inventory, (e.g. mech parts, safe)

ITEM_SIZE_HUGE - +

Usually represents objects that require two hands to operate, (e.g. shotgun, two-handed melee weapons)

ITEM_SIZE_NORMAL - +

Standard backpacks can carry tiny, small & normal items, (e.g. fire extinguisher, stun baton, gas mask, metal sheets)

ITEM_SIZE_SMALL - +

Pockets can hold small and tiny items, (e.g. flashlight, multitool, grenades, GPS device)

ITEM_SIZE_TINY - +

Usually items smaller then a human hand, (e.g. playing cards, lighter, scalpel, coins/holochips)

ITEM_SIZE_TITANIC - +

Something so large that it extends beyond the confines of its tile, (e.g. scrap beacon)

diff --git a/code/__DEFINES/is_helpers.html b/code/__DEFINES/is_helpers.html index 82b7fac34e9..b2d4333a711 100644 --- a/code/__DEFINES/is_helpers.html +++ b/code/__DEFINES/is_helpers.html @@ -14,20 +14,20 @@ — Define Details

code/__DEFINES/is_helpers.dm - +

IN_GIVEN_RANGEWithin given range, but not counting z-levels

Define Details

IN_GIVEN_RANGE - +

Within given range, but not counting z-levels

diff --git a/code/__DEFINES/misc.html b/code/__DEFINES/misc.html index f567085e982..ffb869deafe 100644 --- a/code/__DEFINES/misc.html +++ b/code/__DEFINES/misc.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/misc.dm - +

@@ -22,17 +22,17 @@

code/__DEFINES/misc.dm

FIRESTACKS_TEMP_CONVMisc atmos equations

Define Details

FIRESTACKS_TEMP_CONV - +

Misc atmos equations

HUMAN_REQ_COG_FOR_REG - +

Required minimum values to see reagents in a beaker

diff --git a/code/__DEFINES/mob_stats.html b/code/__DEFINES/mob_stats.html index 515308b1285..ef8859d0bb4 100644 --- a/code/__DEFINES/mob_stats.html +++ b/code/__DEFINES/mob_stats.html @@ -14,19 +14,19 @@ — Define Details

code/__DEFINES/mob_stats.dm - +

PERK_SHARED_SEE_REAGENTSBitflag for shared perk abilities

Define Details

PERK_SHARED_SEE_REAGENTS - +

Bitflag for shared perk abilities

diff --git a/code/__DEFINES/perf_test.html b/code/__DEFINES/perf_test.html index fa391af3088..c2dc9b551be 100644 --- a/code/__DEFINES/perf_test.html +++ b/code/__DEFINES/perf_test.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/perf_test.dm - +

@@ -22,14 +22,14 @@

code/__DEFINES/perf_test.dm This lets us simulate generic load as we'd like, to make testing for overtime easier

Define Details

CONSUME_UNTIL - +

Macro that takes a tick usage to target, and proceses until we hit it This lets us simulate generic load as we'd like, to make testing for overtime easier

diff --git a/code/__DEFINES/qdel.html b/code/__DEFINES/qdel.html index e373105e7f2..1fee38d2c10 100644 --- a/code/__DEFINES/qdel.html +++ b/code/__DEFINES/qdel.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/qdel.dm - +

@@ -33,49 +33,49 @@

code/__DEFINES/qdel.dm

/proc/______qdel_list_wrapper the underscores are to encourage people not to use this directly.

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.

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/rust_g.html b/code/__DEFINES/rust_g.html index 286238a8e65..b8bca022668 100644 --- a/code/__DEFINES/rust_g.html +++ b/code/__DEFINES/rust_g.html @@ -14,7 +14,7 @@ — Define Details

code/__DEFINES/rust_g.dm - +

@@ -27,7 +27,7 @@

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_acreplace - +

Run the specified replacement engine with the provided haystack text to replace, returning replaced text.

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

rustg
  • text - Text to run replacements on
  • rustg_acreplace_with_replacements - +

    Run the specified replacement engine with the provided haystack text to replace, returning replaced text.

    @@ -48,7 +48,7 @@

    rustg
  • replacements - Replacements for this call. Must be the same length as the set-up patterns
  • rustg_cnoise_generate - +

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

    @@ -63,7 +63,7 @@

    rustg
  • height: The height of the grid.
  • rustg_setup_acreplace - +

    Sets up the Aho-Corasick automaton with its default options.

    @@ -75,7 +75,7 @@

    rustg
  • replacements - Default replacements for this automaton, used with rustg_acreplace
  • rustg_setup_acreplace_with_options - +

    Sets up the Aho-Corasick automaton using supplied options.

    @@ -89,7 +89,7 @@

    rustg

    diff --git a/code/__DEFINES/spawner/_spawner.html b/code/__DEFINES/spawner/_spawner.html index f48d6d37c94..05d15b6f568 100644 --- a/code/__DEFINES/spawner/_spawner.html +++ b/code/__DEFINES/spawner/_spawner.html @@ -14,20 +14,20 @@ — Define Details

    code/__DEFINES/spawner/_spawner.dm - +

    MERGE_SPAWN_TAGSNon-Signal Component Related Defines

    Define Details

    MERGE_SPAWN_TAGS - +

    Non-Signal Component Related Defines

    diff --git a/code/__DEFINES/subsystems.html b/code/__DEFINES/subsystems.html index 3a496c4c992..793706e6412 100644 --- a/code/__DEFINES/subsystems.html +++ b/code/__DEFINES/subsystems.html @@ -14,7 +14,7 @@ — Define Details

    code/__DEFINES/subsystems.dm - +

    @@ -40,87 +40,87 @@

    code/__DEFINES/subsystems.dm

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

    Define Details

    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_QDEL_FORCE - +

    Call qdel with a force of TRUE after initialization

    INITIALIZE_IMMEDIATE - +

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

    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.

    @@ -149,7 +149,7 @@

    diff --git a/code/__DEFINES/tgui.html b/code/__DEFINES/tgui.html index c00e40a662f..c8baf1cd102 100644 --- a/code/__DEFINES/tgui.html +++ b/code/__DEFINES/tgui.html @@ -14,7 +14,7 @@ — Define Details

    code/__DEFINES/tgui.dm - +

    @@ -34,67 +34,67 @@

    code/__DEFINES/tgui.dm

    TGUI_CREATE_MESSAGECreates a message packet for sending via output()

    Define Details

    TGUI_CREATE_MESSAGE - +

    Creates a message packet for sending via output()

    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/tick.html b/code/__DEFINES/tick.html index cd5de211168..1c46f73ef7a 100644 --- a/code/__DEFINES/tick.html +++ b/code/__DEFINES/tick.html @@ -14,7 +14,7 @@ — Define Details

    code/__DEFINES/tick.dm - +

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

    code/__DEFINES/tick.dm

    TICK_LIMIT_MCTick limit for MC while running
    TICK_LIMIT_MC_INIT_DEFAULTTick limit while initializing

    Define Details

    MAPTICK_MC_MIN_RESERVE - +

    Percentage of tick to leave for master controller to run

    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

    diff --git a/code/__DEFINES/verb_manager.html b/code/__DEFINES/verb_manager.html index f64aadad56d..4ada4017312 100644 --- a/code/__DEFINES/verb_manager.html +++ b/code/__DEFINES/verb_manager.html @@ -14,7 +14,7 @@ — Define Details

    code/__DEFINES/verb_manager.dm - +

    @@ -36,27 +36,27 @@

    code/__DEFINES/verb_manager.dm

    QUEUE_OR_CALL_VERBqueue wrapper for TRY_QUEUE_VERB() when you want to call the proc if the server isnt overloaded enough to queue

    Define Details

    QUEUE_OR_CALL_VERB - +

    queue wrapper for TRY_QUEUE_VERB() when you want to call the proc if the server isnt overloaded enough to queue

    TRY_QUEUE_VERB - +

    attempt to queue this verb process if the server is overloaded. evaluates to FALSE if queuing isnt necessary or if it failed. _verification_args... are only necessary if the verb_manager subsystem youre using checks them in can_queue_verb() if you put anything in _verification_args that ISNT explicitely put in the can_queue_verb() override of the subsystem youre using, it will runtime.

    VERB_DEFAULT_QUEUE_THRESHOLD - +

    default queuing tick_usage threshold for most verbs which can allow a small amount of latency to be processed in the next tick

    VERB_HIGH_PRIORITY_QUEUE_THRESHOLD - +

    queuing tick_usage threshold for verbs that need lower latency more than most verbs.

    VERB_OVERTIME_QUEUE_THRESHOLD - +

    verb queuing thresholds. remember that since verbs execute after SendMaps the player wont see the effects of the verbs on the game world @@ -70,7 +70,7 @@

    QU ONLY use for critical verbs

    diff --git a/code/__HELPERS/_lists.html b/code/__HELPERS/_lists.html index 498b610deaf..305edbb75d2 100644 --- a/code/__HELPERS/_lists.html +++ b/code/__HELPERS/_lists.html @@ -14,7 +14,7 @@ — Define Details

    code/__HELPERS/_lists.dm - +

    @@ -31,7 +31,7 @@

    code/__HELPERS/_lists.dm

    Converts a bitfield to a list of numbers (or words if a wordlist is provided)

    Define Details

    BINARY_INSERT - +

    Binary search sorted insert @@ -41,17 +41,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/_logging.html b/code/__HELPERS/_logging.html index d83805cd310..e10304f6a97 100644 --- a/code/__HELPERS/_logging.html +++ b/code/__HELPERS/_logging.html @@ -14,7 +14,7 @@

    code/__HELPERS/_logging.dm - +

    @@ -24,7 +24,7 @@

    code/__HELPERS/_logging.dm

    Logging for mapping errors
    diff --git a/code/__HELPERS/files.html b/code/__HELPERS/files.html index fb14bd0069d..6926b7a3ae3 100644 --- a/code/__HELPERS/files.html +++ b/code/__HELPERS/files.html @@ -14,7 +14,7 @@

    code/__HELPERS/files.dm - +

    @@ -25,7 +25,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 33080957c91..396b6adb4d0 100644 --- a/code/__HELPERS/game.html +++ b/code/__HELPERS/game.html @@ -14,7 +14,7 @@

    code/__HELPERS/game.dm - +

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

    code/__HELPERS/game.dm around us, then checks the difference.

    diff --git a/code/__HELPERS/global_lists.html b/code/__HELPERS/global_lists.html index 1cb5cd32910..c1c3f3430b6 100644 --- a/code/__HELPERS/global_lists.html +++ b/code/__HELPERS/global_lists.html @@ -14,7 +14,7 @@

    code/__HELPERS/global_lists.dm - +

    @@ -22,7 +22,7 @@

    code/__HELPERS/global_lists.dm

    Initial Building
    diff --git a/code/__HELPERS/icons.html b/code/__HELPERS/icons.html index 5d3362a5a54..b91945ad470 100644 --- a/code/__HELPERS/icons.html +++ b/code/__HELPERS/icons.html @@ -14,7 +14,7 @@

    code/__HELPERS/icons.dm - +

    @@ -32,7 +32,7 @@

    code/__HELPERS/icons.dm (This relies on byond automatically storing icons in savefiles as base64)

    diff --git a/code/__HELPERS/mobs.html b/code/__HELPERS/mobs.html index d9421f8dd51..264ad0feeae 100644 --- a/code/__HELPERS/mobs.html +++ b/code/__HELPERS/mobs.html @@ -14,7 +14,7 @@ — Define Details

    code/__HELPERS/mobs.dm - +

    @@ -22,14 +22,14 @@

    code/__HELPERS/mobs.dm You only need to use this if you know you're going to be mocking clients somewhere else.

    Define Details

    GET_CLIENT - +

    Gets the client of the mob, allowing for mocking of the client. You only need to use this if you know you're going to be mocking clients somewhere else.

    diff --git a/code/__HELPERS/text.html b/code/__HELPERS/text.html index 64bb8b1fec8..710b5c0bec6 100644 --- a/code/__HELPERS/text.html +++ b/code/__HELPERS/text.html @@ -14,7 +14,7 @@

    code/__HELPERS/text.dm - +

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

    code/__HELPERS/text.dm from text that will be sent to the browser.

    diff --git a/code/__HELPERS/type2type.html b/code/__HELPERS/type2type.html index 5a5a6692e84..c556c2b90de 100644 --- a/code/__HELPERS/type2type.html +++ b/code/__HELPERS/type2type.html @@ -14,7 +14,7 @@

    code/__HELPERS/type2type.dm - +

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

    code/__HELPERS/type2type.dm for use inside of browse() calls to html assets that might be loaded on a cdn.

    diff --git a/code/__HELPERS/unsorted.html b/code/__HELPERS/unsorted.html index 306d58eff94..0df22b26afe 100644 --- a/code/__HELPERS/unsorted.html +++ b/code/__HELPERS/unsorted.html @@ -14,7 +14,7 @@

    code/__HELPERS/unsorted.dm - +

    @@ -24,7 +24,7 @@

    code/__HELPERS/unsorted.dm #define REF(thing) (thing && isdatum(thing) && (thing:datum_flags & DF_USE_TAG) && thing:tag ? "[thing:tag]" : "\ref[thing]")

    diff --git a/code/_compile_options.html b/code/_compile_options.html index 9319ea44e4b..97ea435552a 100644 --- a/code/_compile_options.html +++ b/code/_compile_options.html @@ -14,7 +14,7 @@ — Define Details

    code/_compile_options.dm - +

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

    code/_compile_options.dm

    GLOBAL_PROC_REFCall by name proc reference, checks if the proc is existing global proc

    Define Details

    GLOBAL_PROC_REF - +

    Call by name proc reference, checks if the proc is existing global proc

    PROC_REF - +

    Call by name proc reference, checks if the proc exists on this type or as a global proc

    TYPE_PROC_REF - +

    Call by name proc reference, checks if the proc exists on given type or as a global proc

    diff --git a/code/client_macros.html b/code/client_macros.html index d916863ad96..7c7bf301b1b 100644 --- a/code/client_macros.html +++ b/code/client_macros.html @@ -14,14 +14,14 @@

    code/client_macros.dm - +

    /clientClient datum
    diff --git a/code/controllers/failsafe.html b/code/controllers/failsafe.html index 50e560683d0..f7b6133adbe 100644 --- a/code/controllers/failsafe.html +++ b/code/controllers/failsafe.html @@ -14,7 +14,7 @@

    code/controllers/failsafe.dm - +

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

    code/controllers/failsafe.dm

    Delete all existing SS to basically start over
    diff --git a/code/controllers/hooks-defs.html b/code/controllers/hooks-defs.html index 4b2c49b6292..665319e1d2d 100644 --- a/code/controllers/hooks-defs.html +++ b/code/controllers/hooks-defs.html @@ -14,7 +14,7 @@

    code/controllers/hooks-defs.dm - +

    @@ -53,7 +53,7 @@

    code/controllers/hooks-defs.dm Parameters: var/obj/structure/closet/crate/sold, var/area/shuttle

    diff --git a/code/controllers/hooks.html b/code/controllers/hooks.html index 2e586825b0b..1a50c6a0976 100644 --- a/code/controllers/hooks.html +++ b/code/controllers/hooks.html @@ -14,7 +14,7 @@

    code/controllers/hooks.dm - +

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

    code/controllers/hooks.dm Implements hooks, a simple way to run code on pre-defined events.

    diff --git a/code/controllers/master.html b/code/controllers/master.html index 0ce35ebbb1c..d5c5f1363e4 100644 --- a/code/controllers/master.html +++ b/code/controllers/master.html @@ -14,7 +14,7 @@

    code/controllers/master.dm - +

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

    code/controllers/master.dm for scheduling different subsystems for different stages of the round

    diff --git a/code/controllers/subsystem.html b/code/controllers/subsystem.html index 24b00ddf123..2a54ae0f6b7 100644 --- a/code/controllers/subsystem.html +++ b/code/controllers/subsystem.html @@ -14,14 +14,14 @@

    code/controllers/subsystem.dm - +

    /datum/controller/subsystemDefines a subsystem to be managed by the Master Controller
    diff --git a/code/controllers/subsystems/garbage.html b/code/controllers/subsystems/garbage.html index ad45eeda61b..f6ea0ce05c1 100644 --- a/code/controllers/subsystems/garbage.html +++ b/code/controllers/subsystems/garbage.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/garbage.dm - +

    @@ -50,7 +50,7 @@

    code/controllers/subsystems/garbage.dm

    Should be treated as a replacement for the 'del' keyword.
    diff --git a/code/controllers/subsystems/jobs.html b/code/controllers/subsystems/jobs.html index 3fe2a89d827..dc0986161ae 100644 --- a/code/controllers/subsystems/jobs.html +++ b/code/controllers/subsystems/jobs.html @@ -14,19 +14,19 @@ — Define Details

    code/controllers/subsystems/jobs.dm - +

    PERMITTED_QUERIES_IN_TOTALYou get 25 queries as the cap.

    Define Details

    PERMITTED_QUERIES_IN_TOTAL - +

    You get 25 queries as the cap.

    diff --git a/code/controllers/subsystems/migration.html b/code/controllers/subsystems/migration.html index 1282c1493b7..14aa439be47 100644 --- a/code/controllers/subsystems/migration.html +++ b/code/controllers/subsystems/migration.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/migration.dm - +

    @@ -22,7 +22,7 @@

    code/controllers/subsystems/migration.dm

    Burrow Finding and Sorting
    diff --git a/code/controllers/subsystems/tgui.html b/code/controllers/subsystems/tgui.html index 00f24ad300c..e93b2132542 100644 --- a/code/controllers/subsystems/tgui.html +++ b/code/controllers/subsystems/tgui.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/tgui.dm - +

    @@ -24,7 +24,7 @@

    code/controllers/subsystems/tgui.dm

    tgui subsystem
    diff --git a/code/controllers/subsystems/timer.html b/code/controllers/subsystems/timer.html index d2de4e0807d..b6600a8a9a8 100644 --- a/code/controllers/subsystems/timer.html +++ b/code/controllers/subsystems/timer.html @@ -14,7 +14,7 @@ — Define Details

    code/controllers/subsystems/timer.dm - +

    @@ -34,27 +34,27 @@

    code/controllers/subsystems/timer.dm

    /proc/timeleft Get the remaining deciseconds on a timer

    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/controllers/subsystems/verb_manager.html b/code/controllers/subsystems/verb_manager.html index b5462b19da5..8c0fd6210a0 100644 --- a/code/controllers/subsystems/verb_manager.html +++ b/code/controllers/subsystems/verb_manager.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/verb_manager.dm - +

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

    code/controllers/subsystems/verb_manager.dm intended to only work with verbs or verblike procs called directly from client input, use as part of TRY_QUEUE_VERB() and co.

    diff --git a/code/controllers/subsystems/voting/poll_types.html b/code/controllers/subsystems/voting/poll_types.html index 5006cffee30..778422509f1 100644 --- a/code/controllers/subsystems/voting/poll_types.html +++ b/code/controllers/subsystems/voting/poll_types.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/voting/poll_types.dm - +

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

    code/controllers/subsystems/voting/poll_types.dm

    /datum/poll/evacEvacuate Ship
    diff --git a/code/datums/ai_law_sets.html b/code/datums/ai_law_sets.html index 089e7303b09..95d98f5dbe1 100644 --- a/code/datums/ai_law_sets.html +++ b/code/datums/ai_law_sets.html @@ -14,7 +14,7 @@

    code/datums/ai_law_sets.dm - +

    @@ -35,7 +35,7 @@

    code/datums/ai_law_sets.dm

    /datum/ai_laws/friendbotFriendbot
    diff --git a/code/datums/callback.html b/code/datums/callback.html index 2c8d64aec55..5cca957797b 100644 --- a/code/datums/callback.html +++ b/code/datums/callback.html @@ -14,7 +14,7 @@

    code/datums/callback.dm - +

    @@ -24,7 +24,7 @@

    code/datums/callback.dm

    Runs a list of callbacks asyncronously, returning only when all have finished
    diff --git a/code/datums/category.html b/code/datums/category.html index d9fd76f3e75..5becff621cd 100644 --- a/code/datums/category.html +++ b/code/datums/category.html @@ -14,7 +14,7 @@

    code/datums/category.dm - +

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

    code/datums/category.dm

    /datum/category_itemCategory Items
    diff --git a/code/datums/components/_component.html b/code/datums/components/_component.html index 4f639cd82ff..beaa4f8f476 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/overlay_manager.html b/code/datums/components/overlay_manager.html index f992dedb74d..496b65a9f13 100644 --- a/code/datums/components/overlay_manager.html +++ b/code/datums/components/overlay_manager.html @@ -14,14 +14,14 @@

    code/datums/components/overlay_manager.dm - +

    /datum/component/overlay_managerManages overlays based off a key
    diff --git a/code/datums/craft/recipes/tools.html b/code/datums/craft/recipes/tools.html index b68264167f5..a7a07672558 100644 --- a/code/datums/craft/recipes/tools.html +++ b/code/datums/craft/recipes/tools.html @@ -14,14 +14,14 @@

    code/datums/craft/recipes/tools.dm - +

    /datum/craft_recipe/tool/braceTOOL MODS
    diff --git a/code/datums/datum.html b/code/datums/datum.html index cabe90251eb..0b4707e18d0 100644 --- a/code/datums/datum.html +++ b/code/datums/datum.html @@ -14,14 +14,14 @@

    code/datums/datum.dm - +

    /datumThe absolute base class for everything
    diff --git a/code/datums/datum_click_handlers.html b/code/datums/datum_click_handlers.html index 71e2032b156..661287eae59 100644 --- a/code/datums/datum_click_handlers.html +++ b/code/datums/datum_click_handlers.html @@ -14,7 +14,7 @@

    code/datums/datum_click_handlers.dm - +

    @@ -22,7 +22,7 @@

    code/datums/datum_click_handlers.dm

    /datum/click_handler/aiAI Control
    diff --git a/code/datums/elements/_element.html b/code/datums/elements/_element.html index 7727196cd0b..06eb5cd9185 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/helper_datums/stack_end_detector.html b/code/datums/helper_datums/stack_end_detector.html index f3c5dbb80fd..071ad3a9810 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/mocking/client.html b/code/datums/mocking/client.html index 7c42cefdfb6..6e6d3d4bac1 100644 --- a/code/datums/mocking/client.html +++ b/code/datums/mocking/client.html @@ -14,14 +14,14 @@

    code/datums/mocking/client.dm - +

    /datum/client_interfaceThis should match the interface of /client wherever necessary.
    diff --git a/code/datums/movement/movement.html b/code/datums/movement/movement.html index ea825ce2a49..e3caa652578 100644 --- a/code/datums/movement/movement.html +++ b/code/datums/movement/movement.html @@ -14,14 +14,14 @@

    code/datums/movement/movement.dm - +

    /datum/movement_handler/mob/mob
    diff --git a/code/datums/movement/robot.html b/code/datums/movement/robot.html index c643e123cc6..87731bae46a 100644 --- a/code/datums/movement/robot.html +++ b/code/datums/movement/robot.html @@ -14,14 +14,14 @@

    code/datums/movement/robot.dm - +

    /datum/movement_handler/robot/robot
    diff --git a/code/datums/outfits/equipment/backpacks.html b/code/datums/outfits/equipment/backpacks.html index 3d54f2a41b9..7fe24294662 100644 --- a/code/datums/outfits/equipment/backpacks.html +++ b/code/datums/outfits/equipment/backpacks.html @@ -14,7 +14,7 @@

    code/datums/outfits/equipment/backpacks.dm - +

    @@ -24,7 +24,7 @@

    code/datums/outfits/equipment/backpacks.dm

    Helpers
    diff --git a/code/datums/outfits/jobs/job.html b/code/datums/outfits/jobs/job.html index 276bb1081fc..7c8ea1397af 100644 --- a/code/datums/outfits/jobs/job.html +++ b/code/datums/outfits/jobs/job.html @@ -14,14 +14,14 @@

    code/datums/outfits/jobs/job.dm - +

    /decl/hierarchy/outfit/jobdecl/hierarchy/outfit/job/cargo/artist/clown/post_equip(var/mob/living/carbon/human/H)
    diff --git a/code/datums/perks/job.html b/code/datums/perks/job.html index 76367c592b3..182cdf39dcb 100644 --- a/code/datums/perks/job.html +++ b/code/datums/perks/job.html @@ -14,14 +14,14 @@

    code/datums/perks/job.dm - +

    /datum/perk/inspirationBasically a marker perk. If the user has this perk, another will be given in certain conditions.
    diff --git a/code/datums/perks/oddity.html b/code/datums/perks/oddity.html index 90fdc7dd7b3..44bcd356c5a 100644 --- a/code/datums/perks/oddity.html +++ b/code/datums/perks/oddity.html @@ -14,14 +14,14 @@

    code/datums/perks/oddity.dm - +

    /datum/perk/nt_oddityNT ODDITYS PERKS
    diff --git a/code/datums/perks/perk.html b/code/datums/perks/perk.html index d66b92a26d6..ddfd5ca8dc5 100644 --- a/code/datums/perks/perk.html +++ b/code/datums/perks/perk.html @@ -14,14 +14,14 @@

    code/datums/perks/perk.dm - +

    /datum/perkThe root perk datum. All perks inherit properties from this one.
    diff --git a/code/datums/topic/world.html b/code/datums/topic/world.html index a9d088e25e8..4dfbd2c6963 100644 --- a/code/datums/topic/world.html +++ b/code/datums/topic/world.html @@ -14,14 +14,14 @@

    code/datums/topic/world.dm - +

    /datum/world_topic/pingTopics
    diff --git a/code/datums/underwear/underwear.html b/code/datums/underwear/underwear.html index 0a65de45e77..f65fc2f4975 100644 --- a/code/datums/underwear/underwear.html +++ b/code/datums/underwear/underwear.html @@ -14,7 +14,7 @@

    code/datums/underwear/underwear.dm - +

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

    code/datums/underwear/underwear.dm

    /datum/category_item/underwearCategory entries
    diff --git a/code/datums/uplink/ammunition.html b/code/datums/uplink/ammunition.html index 9d537a6dd69..e663669c998 100644 --- a/code/datums/uplink/ammunition.html +++ b/code/datums/uplink/ammunition.html @@ -14,7 +14,7 @@

    code/datums/uplink/ammunition.dm - +

    @@ -27,7 +27,7 @@

    code/datums/uplink/ammunition.dm

    /datum/uplink_item/item/ammo/sniperammospecial
    diff --git a/code/datums/uplink/announcements.html b/code/datums/uplink/announcements.html index 1948d71ac21..94030d14900 100644 --- a/code/datums/uplink/announcements.html +++ b/code/datums/uplink/announcements.html @@ -14,14 +14,14 @@

    code/datums/uplink/announcements.dm - +

    /datum/uplink_item/abstract/announcementsAnnouncements
    diff --git a/code/datums/uplink/badassery.html b/code/datums/uplink/badassery.html index b53ed07a49e..b29294b10f2 100644 --- a/code/datums/uplink/badassery.html +++ b/code/datums/uplink/badassery.html @@ -14,7 +14,7 @@

    code/datums/uplink/badassery.dm - +

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

    code/datums/uplink/badassery.dm

    /datum/uplink_item/item/badassery/surplusSurplus Crate
    diff --git a/code/datums/uplink/devices and tools.html b/code/datums/uplink/devices and tools.html index 0ae67342b48..2c9bf851d62 100644 --- a/code/datums/uplink/devices and tools.html +++ b/code/datums/uplink/devices and tools.html @@ -14,14 +14,14 @@

    code/datums/uplink/devices and tools.dm - +

    /datum/uplink_item/item/toolsDevices and Tools
    diff --git a/code/datums/uplink/grenades.html b/code/datums/uplink/grenades.html index d34082a6938..2cd2b2588b5 100644 --- a/code/datums/uplink/grenades.html +++ b/code/datums/uplink/grenades.html @@ -14,14 +14,14 @@

    code/datums/uplink/grenades.dm - +

    /datum/uplink_item/item/grenadesGrenades
    diff --git a/code/datums/uplink/hardsuit_modules.html b/code/datums/uplink/hardsuit_modules.html index 5b0ff1a03a3..35b68339f32 100644 --- a/code/datums/uplink/hardsuit_modules.html +++ b/code/datums/uplink/hardsuit_modules.html @@ -14,14 +14,14 @@

    code/datums/uplink/hardsuit_modules.dm - +

    /datum/uplink_item/item/hardsuit_modulesHardsuit Modules
    diff --git a/code/datums/uplink/highly visible and dangerous weapons.html b/code/datums/uplink/highly visible and dangerous weapons.html index b69c43b73a9..0e19bb32e22 100644 --- a/code/datums/uplink/highly visible and dangerous weapons.html +++ b/code/datums/uplink/highly visible and dangerous weapons.html @@ -14,14 +14,14 @@

    code/datums/uplink/highly visible and dangerous weapons.dm - +

    /datum/uplink_item/item/visible_weaponsHighly Visible and Dangerous Weapons
    diff --git a/code/datums/uplink/implants.html b/code/datums/uplink/implants.html index 5e1cfb67c3b..dce4cd62cd6 100644 --- a/code/datums/uplink/implants.html +++ b/code/datums/uplink/implants.html @@ -14,14 +14,14 @@

    code/datums/uplink/implants.dm - +

    /datum/uplink_item/item/implantsImplants
    diff --git a/code/datums/uplink/medical.html b/code/datums/uplink/medical.html index 8b590f3e0cd..650bc113c25 100644 --- a/code/datums/uplink/medical.html +++ b/code/datums/uplink/medical.html @@ -14,14 +14,14 @@

    code/datums/uplink/medical.dm - +

    /datum/uplink_item/item/medicalMedical
    diff --git a/code/datums/uplink/stealth and camouflage items.html b/code/datums/uplink/stealth and camouflage items.html index 4bde4ec8e00..8b367e5929b 100644 --- a/code/datums/uplink/stealth and camouflage items.html +++ b/code/datums/uplink/stealth and camouflage items.html @@ -14,14 +14,14 @@

    code/datums/uplink/stealth and camouflage items.dm - +

    /datum/uplink_item/item/stealth_itemsStealth and Camouflage Items
    diff --git a/code/datums/uplink/stealthy and inconspicuous weapons.html b/code/datums/uplink/stealthy and inconspicuous weapons.html index 79ee30dae4e..886dfeefaaf 100644 --- a/code/datums/uplink/stealthy and inconspicuous weapons.html +++ b/code/datums/uplink/stealthy and inconspicuous weapons.html @@ -14,14 +14,14 @@

    code/datums/uplink/stealthy and inconspicuous weapons.dm - +

    /datum/uplink_item/item/stealthy_weaponsStealthy and Inconspicuous Weapons
    diff --git a/code/datums/uplink/telecrystals.html b/code/datums/uplink/telecrystals.html index aadda97bcd6..0d909575d2e 100644 --- a/code/datums/uplink/telecrystals.html +++ b/code/datums/uplink/telecrystals.html @@ -14,14 +14,14 @@

    code/datums/uplink/telecrystals.dm - +

    /datum/uplink_item/item/telecrystalTelecrystals
    diff --git a/code/datums/uplink/uplink_items.html b/code/datums/uplink/uplink_items.html index e0705a117aa..664ee8f237f 100644 --- a/code/datums/uplink/uplink_items.html +++ b/code/datums/uplink/uplink_items.html @@ -14,7 +14,7 @@

    code/datums/uplink/uplink_items.dm - +

    @@ -24,7 +24,7 @@

    code/datums/uplink/uplink_items.dm

    Support procs
    diff --git a/code/datums/verb_callbacks.html b/code/datums/verb_callbacks.html index 545d24b4a0e..090063d6643 100644 --- a/code/datums/verb_callbacks.html +++ b/code/datums/verb_callbacks.html @@ -14,14 +14,14 @@

    code/datums/verb_callbacks.dm - +

    /datum/callback/verb_callbacklike normal callbacks but they also record their creation time for measurement purposes
    diff --git a/code/datums/weakref.html b/code/datums/weakref.html index c10a20f36a7..48b37657c89 100644 --- a/code/datums/weakref.html +++ b/code/datums/weakref.html @@ -14,7 +14,7 @@

    code/datums/weakref.dm - +

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

    code/datums/weakref.dm The datum can be referenced again using resolve().

    diff --git a/code/game/gamemodes/endgame/endgame.html b/code/game/gamemodes/endgame/endgame.html index 2e8d333de5b..244044005aa 100644 --- a/code/game/gamemodes/endgame/endgame.html +++ b/code/game/gamemodes/endgame/endgame.html @@ -14,14 +14,14 @@

    code/game/gamemodes/endgame/endgame.dm - +

    /datum/universal_stateENDGAME STUFF
    diff --git a/code/game/gamemodes/events/meteors.html b/code/game/gamemodes/events/meteors.html index 28455fd7e3a..d7586141402 100644 --- a/code/game/gamemodes/events/meteors.html +++ b/code/game/gamemodes/events/meteors.html @@ -14,7 +14,7 @@

    code/game/gamemodes/events/meteors.dm - +

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

    code/game/gamemodes/events/meteors.dm

    /obj/effect/meteorSPACE_COMET%%%::::::........
    diff --git a/code/game/gamemodes/events/weather.html b/code/game/gamemodes/events/weather.html index 0d4525f4777..8f87096fd74 100644 --- a/code/game/gamemodes/events/weather.html +++ b/code/game/gamemodes/events/weather.html @@ -14,7 +14,7 @@

    code/game/gamemodes/events/weather.dm - +

    @@ -22,7 +22,7 @@

    code/game/gamemodes/events/weather.dm

    diff --git a/code/game/gamemodes/storyteller.html b/code/game/gamemodes/storyteller.html index c5b95bee324..b215d6562a5 100644 --- a/code/game/gamemodes/storyteller.html +++ b/code/game/gamemodes/storyteller.html @@ -14,7 +14,7 @@

    code/game/gamemodes/storyteller.dm - +

    @@ -22,7 +22,7 @@

    code/game/gamemodes/storyteller.dm

    datum/storyteller/proc/trigger_event()
    diff --git a/code/game/jobs/access_datum.html b/code/game/jobs/access_datum.html index f20e9f020a7..2d55ad33d60 100644 --- a/code/game/jobs/access_datum.html +++ b/code/game/jobs/access_datum.html @@ -14,7 +14,7 @@

    code/game/jobs/access_datum.dm - +

    @@ -32,7 +32,7 @@

    code/game/jobs/access_datum.dm

    Misc
    diff --git a/code/game/jobs/department.html b/code/game/jobs/department.html index 5334aa2d783..ca56cdf9a37 100644 --- a/code/game/jobs/department.html +++ b/code/game/jobs/department.html @@ -14,7 +14,7 @@

    code/game/jobs/department.dm - +

    @@ -24,7 +24,7 @@

    code/game/jobs/department.dm

    /datum/department/guildIndependant
    diff --git a/code/game/jobs/job/guild.html b/code/game/jobs/job/guild.html index dc03e2fb559..f393a03e319 100644 --- a/code/game/jobs/job/guild.html +++ b/code/game/jobs/job/guild.html @@ -14,7 +14,7 @@

    code/game/jobs/job/guild.dm - +

    @@ -22,7 +22,7 @@

    code/game/jobs/job/guild.dm datum/computer_file/program/deck_management,

    diff --git a/code/game/machinery/autodoc_excelsior.html b/code/game/machinery/autodoc_excelsior.html index 2fca982014b..f3c29521e3b 100644 --- a/code/game/machinery/autodoc_excelsior.html +++ b/code/game/machinery/autodoc_excelsior.html @@ -14,7 +14,7 @@ — Define Details

    code/game/machinery/autodoc_excelsior.dm - +

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

    code/game/machinery/autodoc_excelsior.dm

    AUTODOC_TIME_PER_UNITHow much time is reduced per given rating point of scanning module components
    AUTODOC_DEFAULT_PROCESSING_TIMEDefault processing time for any wound

    Define Details

    AUTODOC_DEFAULT_PROCESSING_TIME - +

    Default processing time for any wound

    AUTODOC_HEAL_PER_UNIT - +

    How much healing is given per rating point of components (micro-laser and manipulator)

    AUTODOC_TIME_PER_UNIT - +

    How much time is reduced per given rating point of scanning module components

    diff --git a/code/game/machinery/embedded_controller/airlock_docking_controller_multi.html b/code/game/machinery/embedded_controller/airlock_docking_controller_multi.html index 6ba5427392d..cc1d3fc0ecf 100644 --- a/code/game/machinery/embedded_controller/airlock_docking_controller_multi.html +++ b/code/game/machinery/embedded_controller/airlock_docking_controller_multi.html @@ -14,14 +14,14 @@

    code/game/machinery/embedded_controller/airlock_docking_controller_multi.dm - +

    /obj/machinery/embedded_controller/radio/docking_port_multi** DEBUG VERBS ***
    diff --git a/code/game/machinery/embedded_controller/airlock_program.html b/code/game/machinery/embedded_controller/airlock_program.html index a65eaf3a195..867f32527ea 100644 --- a/code/game/machinery/embedded_controller/airlock_program.html +++ b/code/game/machinery/embedded_controller/airlock_program.html @@ -14,13 +14,13 @@ — Define Details

    code/game/machinery/embedded_controller/airlock_program.dm - +

    STATE_IDLE** DEBUG VERBS ***

    Define Details

    STATE_IDLE - +

    ** DEBUG VERBS ***

    @@ -58,7 +58,7 @@

    STATE_IDLE src.program:initiate_undocking()

    diff --git a/code/game/machinery/excelsior/autolathe.html b/code/game/machinery/excelsior/autolathe.html index 1751d720cfe..89872c5aeee 100644 --- a/code/game/machinery/excelsior/autolathe.html +++ b/code/game/machinery/excelsior/autolathe.html @@ -14,14 +14,14 @@

    code/game/machinery/excelsior/autolathe.dm - +

    /obj/machinery/autolathe/excelsior** DEBUG VERBS ***
    diff --git a/code/game/machinery/holosign.html b/code/game/machinery/holosign.html index cafe86a098f..768bbc4107f 100644 --- a/code/game/machinery/holosign.html +++ b/code/game/machinery/holosign.html @@ -14,7 +14,7 @@

    code/game/machinery/holosign.dm - +

    @@ -22,7 +22,7 @@

    code/game/machinery/holosign.dm

    /obj/machinery/button/holosignSWITCH
    diff --git a/code/game/machinery/kitchen/smartfridge.html b/code/game/machinery/kitchen/smartfridge.html index eebfd319a82..e638690fa58 100644 --- a/code/game/machinery/kitchen/smartfridge.html +++ b/code/game/machinery/kitchen/smartfridge.html @@ -14,7 +14,7 @@

    code/game/machinery/kitchen/smartfridge.dm - +

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

    code/game/machinery/kitchen/smartfridge.dm

    /obj/machinery/smartfridge/drying_rackHydroponics Drying Rack
    diff --git a/code/game/machinery/machinery.html b/code/game/machinery/machinery.html index 47803a3511c..fe80e581937 100644 --- a/code/game/machinery/machinery.html +++ b/code/game/machinery/machinery.html @@ -14,14 +14,14 @@

    code/game/machinery/machinery.dm - +

    /obj/machineryMachines in the world, such as computers, pipes, and airlocks.
    diff --git a/code/game/machinery/pipe/construction.html b/code/game/machinery/pipe/construction.html index 36166610398..8fd55a65095 100644 --- a/code/game/machinery/pipe/construction.html +++ b/code/game/machinery/pipe/construction.html @@ -14,7 +14,7 @@

    code/game/machinery/pipe/construction.dm - +

    @@ -22,7 +22,7 @@

    code/game/machinery/pipe/construction.dm Z-Level stuff

    diff --git a/code/game/machinery/pipe/pipe_dispenser.html b/code/game/machinery/pipe/pipe_dispenser.html index 3c7b115316a..c233833fc0f 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/machinery/requests_console.html b/code/game/machinery/requests_console.html index 27c555d0a49..512c307a744 100644 --- a/code/game/machinery/requests_console.html +++ b/code/game/machinery/requests_console.html @@ -14,20 +14,20 @@ — Define Details

    code/game/machinery/requests_console.dm - +

    RC_ASSISTRequests Console

    Define Details

    RC_ASSIST - +

    Requests Console

    Originally written by errorage, updated by: Carn, needs more work though. I just added some security fixes

    diff --git a/code/game/machinery/telecomms/broadcaster.html b/code/game/machinery/telecomms/broadcaster.html index 6c4a40a7401..91190030a67 100644 --- a/code/game/machinery/telecomms/broadcaster.html +++ b/code/game/machinery/telecomms/broadcaster.html @@ -14,7 +14,7 @@

    code/game/machinery/telecomms/broadcaster.dm - +

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

    code/game/machinery/telecomms/broadcaster.dm parameters.

    diff --git a/code/game/machinery/vending.html b/code/game/machinery/vending.html index c2c00a5d662..9b8c82d0879 100644 --- a/code/game/machinery/vending.html +++ b/code/game/machinery/vending.html @@ -14,7 +14,7 @@

    code/game/machinery/vending.dm - +

    @@ -22,7 +22,7 @@

    code/game/machinery/vending.dm

    /obj/machinery/vendingA vending machine
    diff --git a/code/game/objects/effects/effect_system.html b/code/game/objects/effects/effect_system.html index 8ce562b1265..e2a827f1b85 100644 --- a/code/game/objects/effects/effect_system.html +++ b/code/game/objects/effects/effect_system.html @@ -14,14 +14,14 @@

    code/game/objects/effects/effect_system.dm - +

    /obj/effect/effect/smokeSMOKE SYSTEMS
    diff --git a/code/game/objects/effects/spawners/corpsespawner.html b/code/game/objects/effects/spawners/corpsespawner.html index 05e8c537cb9..368ab78a38b 100644 --- a/code/game/objects/effects/spawners/corpsespawner.html +++ b/code/game/objects/effects/spawners/corpsespawner.html @@ -14,7 +14,7 @@

    code/game/objects/effects/spawners/corpsespawner.dm - +

    @@ -22,7 +22,7 @@

    code/game/objects/effects/spawners/corpsespawner.dm

    /obj/landmark/corpse/pirateEnemies
    diff --git a/code/game/objects/effects/trails.html b/code/game/objects/effects/trails.html index ea097c265ce..2681d077f48 100644 --- a/code/game/objects/effects/trails.html +++ b/code/game/objects/effects/trails.html @@ -14,7 +14,7 @@

    code/game/objects/effects/trails.dm - +

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

    code/game/objects/effects/trails.dm

    /obj/effect/trail_particle
    diff --git a/code/game/objects/items/devices/debugger.html b/code/game/objects/items/devices/debugger.html index b356d47b45a..c2d9ba0d98b 100644 --- a/code/game/objects/items/devices/debugger.html +++ b/code/game/objects/items/devices/debugger.html @@ -14,7 +14,7 @@

    code/game/objects/items/devices/debugger.dm - +

    @@ -22,7 +22,7 @@

    code/game/objects/items/devices/debugger.dm TO-DO -- Using it as a power measurement tool for cables etc. Nannek.

    diff --git a/code/game/objects/items/devices/radio/radio.html b/code/game/objects/items/devices/radio/radio.html index 0a661b9e584..6f3b771a2ff 100644 --- a/code/game/objects/items/devices/radio/radio.html +++ b/code/game/objects/items/devices/radio/radio.html @@ -14,14 +14,14 @@

    code/game/objects/items/devices/radio/radio.dm - +

    /obj/item/device/radio/borgBorg Radios
    diff --git a/code/game/objects/items/robot/robot_items.html b/code/game/objects/items/robot/robot_items.html index cd42b770919..c0467351f3d 100644 --- a/code/game/objects/items/robot/robot_items.html +++ b/code/game/objects/items/robot/robot_items.html @@ -14,7 +14,7 @@

    code/game/objects/items/robot/robot_items.dm - +

    @@ -22,7 +22,7 @@

    code/game/objects/items/robot/robot_items.dm

    /obj/item/borg/sightHUD/SIGHT things
    diff --git a/code/game/objects/items/weapons/AI_modules.html b/code/game/objects/items/weapons/AI_modules.html index 1483a8df9da..6cdddc84e62 100644 --- a/code/game/objects/items/weapons/AI_modules.html +++ b/code/game/objects/items/weapons/AI_modules.html @@ -14,7 +14,7 @@

    code/game/objects/items/weapons/AI_modules.dm - +

    @@ -43,7 +43,7 @@

    code/game/objects/items/weapons/AI_modules.dm

    /obj/item/electronics/ai_module/friendbotFriendbot
    diff --git a/code/game/objects/items/weapons/manuals.html b/code/game/objects/items/weapons/manuals.html index 4267ad09f42..4651a6d3517 100644 --- a/code/game/objects/items/weapons/manuals.html +++ b/code/game/objects/items/weapons/manuals.html @@ -14,14 +14,14 @@

    code/game/objects/items/weapons/manuals.dm - +

    /obj/item/book/manualMANUALS (BOOKS)
    diff --git a/code/game/objects/items/weapons/storage/hardcases.html b/code/game/objects/items/weapons/storage/hardcases.html index 395c9fcdcfb..8f0c76b38aa 100644 --- a/code/game/objects/items/weapons/storage/hardcases.html +++ b/code/game/objects/items/weapons/storage/hardcases.html @@ -14,7 +14,7 @@

    code/game/objects/items/weapons/storage/hardcases.dm - +

    @@ -24,7 +24,7 @@

    code/game/objects/items/weapons/storage/hardcases.dm

    /obj/item/storage/hcases/engiEngineering
    diff --git a/code/game/objects/items/weapons/tanks/jetpack.html b/code/game/objects/items/weapons/tanks/jetpack.html index d49b2134603..6b09f2a6971 100644 --- a/code/game/objects/items/weapons/tanks/jetpack.html +++ b/code/game/objects/items/weapons/tanks/jetpack.html @@ -14,7 +14,7 @@

    code/game/objects/items/weapons/tanks/jetpack.dm - +

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

    code/game/objects/items/weapons/tanks/jetpack.dm

    /obj/item/tank/jetpack/syntheticSYNTHETIC JETPACK
    diff --git a/code/game/objects/items/weapons/teleportation.html b/code/game/objects/items/weapons/teleportation.html index 156074682b2..fd6c2ccd550 100644 --- a/code/game/objects/items/weapons/teleportation.html +++ b/code/game/objects/items/weapons/teleportation.html @@ -14,14 +14,14 @@

    code/game/objects/items/weapons/teleportation.dm - +

    /obj/item/hand_tele/handmadeHANDMADE TELE-STUFF
    diff --git a/code/game/objects/items/weapons/tools/mods/mod_types.html b/code/game/objects/items/weapons/tools/mods/mod_types.html index c8fc43496dd..a3f0b9145fd 100644 --- a/code/game/objects/items/weapons/tools/mods/mod_types.html +++ b/code/game/objects/items/weapons/tools/mods/mod_types.html @@ -14,14 +14,14 @@

    code/game/objects/items/weapons/tools/mods/mod_types.dm - +

    /obj/item/tool_upgrade/reinforcementUPGRADE TYPES
    diff --git a/code/game/objects/items/weapons/tools/multitool.html b/code/game/objects/items/weapons/tools/multitool.html index 07779cd5e30..36f062c2421 100644 --- a/code/game/objects/items/weapons/tools/multitool.html +++ b/code/game/objects/items/weapons/tools/multitool.html @@ -14,7 +14,7 @@

    code/game/objects/items/weapons/tools/multitool.dm - +

    @@ -22,7 +22,7 @@

    code/game/objects/items/weapons/tools/multitool.dm TO-DO -- Using it as a power measurement tool for cables etc. Nannek.

    diff --git a/code/game/objects/items/weapons/traps.html b/code/game/objects/items/weapons/traps.html index c10174090cb..e0a5ba23607 100644 --- a/code/game/objects/items/weapons/traps.html +++ b/code/game/objects/items/weapons/traps.html @@ -14,7 +14,7 @@

    code/game/objects/items/weapons/traps.dm - +

    @@ -22,7 +22,7 @@

    code/game/objects/items/weapons/traps.dm

    /obj/item/beartrap/armedArmed Subtypes
    diff --git a/code/game/objects/random/encouters.html b/code/game/objects/random/encouters.html index a1b5dd06532..4529cc2e96e 100644 --- a/code/game/objects/random/encouters.html +++ b/code/game/objects/random/encouters.html @@ -14,14 +14,14 @@

    code/game/objects/random/encouters.dm - +

    /obj/spawner/encouter/mineENCOUTERS
    diff --git a/code/game/objects/random/exosuit.html b/code/game/objects/random/exosuit.html index 677a3846d98..a9c0d218a27 100644 --- a/code/game/objects/random/exosuit.html +++ b/code/game/objects/random/exosuit.html @@ -14,14 +14,14 @@

    code/game/objects/random/exosuit.dm - +

    /obj/spawner/exosuitENCOUTERS
    diff --git a/code/game/objects/structures/crates_lockers/closets/onestar.html b/code/game/objects/structures/crates_lockers/closets/onestar.html index 0cc1ff593cc..cd3fc3c0ec3 100644 --- a/code/game/objects/structures/crates_lockers/closets/onestar.html +++ b/code/game/objects/structures/crates_lockers/closets/onestar.html @@ -14,7 +14,7 @@

    code/game/objects/structures/crates_lockers/closets/onestar.dm - +

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

    code/game/objects/structures/crates_lockers/closets/onestar.dm

    /obj/structure/closet/onestar/tier1/medicalMedical
    diff --git a/code/game/objects/structures/kitchen_spike.html b/code/game/objects/structures/kitchen_spike.html index 4cfc7f46b78..7d9c8e028d3 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/salvageable.html b/code/game/objects/structures/salvageable.html index d18e801ba4b..ed90da09c81 100644 --- a/code/game/objects/structures/salvageable.html +++ b/code/game/objects/structures/salvageable.html @@ -14,14 +14,14 @@

    code/game/objects/structures/salvageable.dm - +

    /obj/structure/salvageable/osONE STAR
    diff --git a/code/hub.html b/code/hub.html index 8a48064f14b..fb9ec00d66b 100644 --- a/code/hub.html +++ b/code/hub.html @@ -14,14 +14,14 @@

    code/hub.dm - +

    /worldTwo possibilities exist: either we are alone in the Universe or we are not. Both are equally terrifying. ~ Arthur C. Clarke
    diff --git a/code/modules/aberrants/organs/design_disks/disks.html b/code/modules/aberrants/organs/design_disks/disks.html index e7dd79e9e88..3ab1c4bb7fa 100644 --- a/code/modules/aberrants/organs/design_disks/disks.html +++ b/code/modules/aberrants/organs/design_disks/disks.html @@ -14,14 +14,14 @@

    code/modules/aberrants/organs/design_disks/disks.dm - +

    /obj/item/computer_hardware/hard_drive/portable/design/omg/simpledatum/design/organ/teratoma/input/rare/reagents_spider, // Not enough spider chems in the pool
    diff --git a/code/modules/admin/NewBan.html b/code/modules/admin/NewBan.html index cf493bfa63d..0b77594e34f 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/admin.html b/code/modules/admin/admin.html index 9b6912d4ee5..ff2be14647a 100644 --- a/code/modules/admin/admin.html +++ b/code/modules/admin/admin.html @@ -14,7 +14,7 @@

    code/modules/admin/admin.dm - +

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

    code/modules/admin/admin.dm

    ADMIN HELPER PROCS
    diff --git a/code/modules/admin/admin_secrets.html b/code/modules/admin/admin_secrets.html index cb318333ece..c5784bd4263 100644 --- a/code/modules/admin/admin_secrets.html +++ b/code/modules/admin/admin_secrets.html @@ -14,7 +14,7 @@

    code/modules/admin/admin_secrets.dm - +

    @@ -22,7 +22,7 @@

    code/modules/admin/admin_secrets.dm

    /datum/admin_secret_item/admin_secretPre-defined base items
    diff --git a/code/modules/admin/bluespacetech.html b/code/modules/admin/bluespacetech.html index 216b55fc821..5ad61965fc4 100644 --- a/code/modules/admin/bluespacetech.html +++ b/code/modules/admin/bluespacetech.html @@ -14,14 +14,14 @@

    code/modules/admin/bluespacetech.dm - +

    /obj/item/storage/backpack/holding/bstI T E M S
    diff --git a/code/modules/admin/secrets/random_events/gravity.html b/code/modules/admin/secrets/random_events/gravity.html index 59919fcb76c..bf7d9f480f2 100644 --- a/code/modules/admin/secrets/random_events/gravity.html +++ b/code/modules/admin/secrets/random_events/gravity.html @@ -14,14 +14,14 @@

    code/modules/admin/secrets/random_events/gravity.dm - +

    /datum/admin_secret_item/random_event/gravityGravity
    diff --git a/code/modules/assembly/infrared.html b/code/modules/assembly/infrared.html index beba1746c49..7e3d79680a3 100644 --- a/code/modules/assembly/infrared.html +++ b/code/modules/assembly/infrared.html @@ -14,14 +14,14 @@

    code/modules/assembly/infrared.dm - +

    /obj/effect/beam/i_beamIBeam
    diff --git a/code/modules/asset_cache.html b/code/modules/asset_cache.html index ea060d854d1..0ba6eb5824c 100644 --- a/code/modules/asset_cache.html +++ b/code/modules/asset_cache.html @@ -14,7 +14,7 @@

    Asset cache system - +

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

    Notes:

    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 61d3ec3be89..709970efb71 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 a0c6a6a058c..9cbb1828677 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 825da0409de..a12b59f42cc 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/client/preference_setup/global/preferences.html b/code/modules/client/preference_setup/global/preferences.html index 029538fb4e4..5cec53bbdcb 100644 --- a/code/modules/client/preference_setup/global/preferences.html +++ b/code/modules/client/preference_setup/global/preferences.html @@ -14,7 +14,7 @@

    code/modules/client/preference_setup/global/preferences.dm - +

    @@ -24,7 +24,7 @@

    code/modules/client/preference_setup/global/preferences.dm

    /datum/client_preference/staff/show_debug_logsDebug Preferences
    diff --git a/code/modules/client/preference_setup/options_popup.html b/code/modules/client/preference_setup/options_popup.html index 12e26885d38..bf985b182b2 100644 --- a/code/modules/client/preference_setup/options_popup.html +++ b/code/modules/client/preference_setup/options_popup.html @@ -14,14 +14,14 @@

    code/modules/client/preference_setup/options_popup.dm - +

    /datum/category_item/player_setup_itemCategory Item Setup
    diff --git a/code/modules/client/preference_setup/preference_setup.html b/code/modules/client/preference_setup/preference_setup.html index 0e51b33b11b..77281f5b064 100644 --- a/code/modules/client/preference_setup/preference_setup.html +++ b/code/modules/client/preference_setup/preference_setup.html @@ -14,7 +14,7 @@

    code/modules/client/preference_setup/preference_setup.dm - +

    @@ -22,7 +22,7 @@

    code/modules/client/preference_setup/preference_setup.dm

    /datum/category_group/player_setup_categoryCategory Category Setup
    diff --git a/code/modules/client/preferences_spawnpoints.html b/code/modules/client/preferences_spawnpoints.html index 10048f01ac4..8ea35cb3797 100644 --- a/code/modules/client/preferences_spawnpoints.html +++ b/code/modules/client/preferences_spawnpoints.html @@ -14,7 +14,7 @@

    code/modules/client/preferences_spawnpoints.dm - +

    @@ -22,7 +22,7 @@

    code/modules/client/preferences_spawnpoints.dm

    /datum/spawnpoint/dormitoryDORMITORY SPAWNING
    diff --git a/code/modules/clothing/masks/balaclava.html b/code/modules/clothing/masks/balaclava.html index 592dac508cf..3e6b6105b33 100644 --- a/code/modules/clothing/masks/balaclava.html +++ b/code/modules/clothing/masks/balaclava.html @@ -14,19 +14,19 @@ — Define Details

    code/modules/clothing/masks/balaclava.dm - +

    BALACLAVA_SANITY_COEFF_BUFFobj/item/clothing/head/soft/science

    Define Details

    BALACLAVA_SANITY_COEFF_BUFF - +

    obj/item/clothing/head/soft/science

    diff --git a/code/modules/clothing/spacesuits/rig/suits/station.html b/code/modules/clothing/spacesuits/rig/suits/station.html index 618fa3e6f5c..7b559703683 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station.html +++ b/code/modules/clothing/spacesuits/rig/suits/station.html @@ -14,7 +14,7 @@

    code/modules/clothing/spacesuits/rig/suits/station.dm - +

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

    code/modules/clothing/spacesuits/rig/suits/station.dm

    /obj/item/rig/medicalMedical
    diff --git a/code/modules/clothing/spacesuits/syndi.html b/code/modules/clothing/spacesuits/syndi.html index 476d7c0a72f..61eb29abed9 100644 --- a/code/modules/clothing/spacesuits/syndi.html +++ b/code/modules/clothing/spacesuits/syndi.html @@ -14,14 +14,14 @@

    code/modules/clothing/spacesuits/syndi.dm - +

    /obj/item/clothing/head/space/syndicate/uplinkBlack Market
    diff --git a/code/modules/core_implant/cruciform/machinery/armaments.html b/code/modules/core_implant/cruciform/machinery/armaments.html index eb914404396..b4a6496f35c 100644 --- a/code/modules/core_implant/cruciform/machinery/armaments.html +++ b/code/modules/core_implant/cruciform/machinery/armaments.html @@ -14,14 +14,14 @@

    code/modules/core_implant/cruciform/machinery/armaments.dm - +

    /datum/armament/itemItem summonings
    diff --git a/code/modules/core_implant/cruciform/machinery/cloning.html b/code/modules/core_implant/cruciform/machinery/cloning.html index 85ffe8a5bf8..ce10eda149f 100644 --- a/code/modules/core_implant/cruciform/machinery/cloning.html +++ b/code/modules/core_implant/cruciform/machinery/cloning.html @@ -14,14 +14,14 @@

    code/modules/core_implant/cruciform/machinery/cloning.dm - +

    /obj/machinery/neotheology/biomass_containerBODY
    diff --git a/code/modules/core_implant/cruciform/rituals/machinery.html b/code/modules/core_implant/cruciform/rituals/machinery.html index 4442f206d54..e448a5a02cc 100644 --- a/code/modules/core_implant/cruciform/rituals/machinery.html +++ b/code/modules/core_implant/cruciform/rituals/machinery.html @@ -14,7 +14,7 @@

    code/modules/core_implant/cruciform/rituals/machinery.dm - +

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

    code/modules/core_implant/cruciform/rituals/machinery.dm

    /datum/ritual/cruciform/machines/bioreactor/chamber_doors
    diff --git a/code/modules/core_implant/cruciform/rituals/priest.html b/code/modules/core_implant/cruciform/rituals/priest.html index c41f6e90fb3..144a3bfc17e 100644 --- a/code/modules/core_implant/cruciform/rituals/priest.html +++ b/code/modules/core_implant/cruciform/rituals/priest.html @@ -14,14 +14,14 @@

    code/modules/core_implant/cruciform/rituals/priest.dm - +

    /datum/ritual/cruciform/priest/acolyte/short_boostSHORT BOOST LITANIES
    diff --git a/code/modules/dungeons/crawler/dungeon_gen.html b/code/modules/dungeons/crawler/dungeon_gen.html index 3a20a4a98b6..f559186f31b 100644 --- a/code/modules/dungeons/crawler/dungeon_gen.html +++ b/code/modules/dungeons/crawler/dungeon_gen.html @@ -14,14 +14,14 @@

    code/modules/dungeons/crawler/dungeon_gen.dm - +

    /obj/crawler/map_makerin order to avoid confusion, we're counting up from 1 and not 0.
    diff --git a/code/modules/economy/Accounts.html b/code/modules/economy/Accounts.html index 504560c6925..a98efb1a42d 100644 --- a/code/modules/economy/Accounts.html +++ b/code/modules/economy/Accounts.html @@ -14,14 +14,14 @@

    code/modules/economy/Accounts.dm - +

    /datum/money_accountSCPR 2022
    diff --git a/code/modules/ghosttrap/trap.html b/code/modules/ghosttrap/trap.html index 3012e18e828..4046351c380 100644 --- a/code/modules/ghosttrap/trap.html +++ b/code/modules/ghosttrap/trap.html @@ -14,7 +14,7 @@

    code/modules/ghosttrap/trap.dm - +

    @@ -24,7 +24,7 @@

    code/modules/ghosttrap/trap.dm

    /datum/ghosttrap/blitzdroneBlitzshell
    diff --git a/code/modules/hivemind/machines.html b/code/modules/hivemind/machines.html index 1aea5f0be42..a162786972f 100644 --- a/code/modules/hivemind/machines.html +++ b/code/modules/hivemind/machines.html @@ -14,14 +14,14 @@

    code/modules/hivemind/machines.dm - +

    /obj/machinery/hivemind_machine/node
    diff --git a/code/modules/hivemind/mobs.html b/code/modules/hivemind/mobs.html index 6567c2301c5..a379f56c3ba 100644 --- a/code/modules/hivemind/mobs.html +++ b/code/modules/hivemind/mobs.html @@ -14,7 +14,7 @@

    code/modules/hivemind/mobs.dm - +

    @@ -38,7 +38,7 @@

    code/modules/hivemind/mobs.dm

    /mob/living/simple_animal/hostile/hivemind/phaserPHASER
    diff --git a/code/modules/mechs/mech_movement.html b/code/modules/mechs/mech_movement.html index 8b65917c9b9..6f73f75c8c5 100644 --- a/code/modules/mechs/mech_movement.html +++ b/code/modules/mechs/mech_movement.html @@ -14,14 +14,14 @@

    code/modules/mechs/mech_movement.dm - +

    /datum/movement_handler/mob/exosuitmob/living/exosuit/can_ztravel()
    diff --git a/code/modules/media/mediamanager.html b/code/modules/media/mediamanager.html index ad08405be36..365933d7471 100644 --- a/code/modules/media/mediamanager.html +++ b/code/modules/media/mediamanager.html @@ -14,14 +14,14 @@ — Define Details

    code/modules/media/mediamanager.dm - +

    MP_DEBUGAWW SHIT IT'S TIME FOR RADIO

    Define Details

    MP_DEBUG - +

    AWW SHIT IT'S TIME FOR RADIO

    @@ -31,7 +31,7 @@

    MP_DEBUG Stolen for Eris by Nestor

    diff --git a/code/modules/mining/coins.html b/code/modules/mining/coins.html index 11e6195470f..18343179ab9 100644 --- a/code/modules/mining/coins.html +++ b/code/modules/mining/coins.html @@ -14,14 +14,14 @@

    code/modules/mining/coins.dm - +

    /obj/item/coinCoin
    diff --git a/code/modules/mining/machine_processing.html b/code/modules/mining/machine_processing.html index 8b2e5697b96..0c5d22033c7 100644 --- a/code/modules/mining/machine_processing.html +++ b/code/modules/mining/machine_processing.html @@ -14,7 +14,7 @@

    code/modules/mining/machine_processing.dm - +

    @@ -22,7 +22,7 @@

    code/modules/mining/machine_processing.dm

    /obj/machinery/mineral/processing_unitMineral processing unit
    diff --git a/code/modules/mining/machine_stacking.html b/code/modules/mining/machine_stacking.html index 37a11f0a119..dad52722ecf 100644 --- a/code/modules/mining/machine_stacking.html +++ b/code/modules/mining/machine_stacking.html @@ -14,7 +14,7 @@

    code/modules/mining/machine_stacking.dm - +

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

    code/modules/mining/machine_stacking.dm

    /obj/machinery/mineral/stacking_machineMineral stacking unit
    diff --git a/code/modules/mining/machine_unloading.html b/code/modules/mining/machine_unloading.html index 95a75a71910..f01690c05b8 100644 --- a/code/modules/mining/machine_unloading.html +++ b/code/modules/mining/machine_unloading.html @@ -14,14 +14,14 @@

    code/modules/mining/machine_unloading.dm - +

    /obj/machinery/mineral/unloading_machineUnloading unit
    diff --git a/code/modules/mining/mine_items.html b/code/modules/mining/mine_items.html index 83af656d9c1..f433680b60a 100644 --- a/code/modules/mining/mine_items.html +++ b/code/modules/mining/mine_items.html @@ -14,7 +14,7 @@

    code/modules/mining/mine_items.dm - +

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

    code/modules/mining/mine_items.dm

    /obj/structure/closet/crate/miningcarPickaxe
    diff --git a/code/modules/mining/mine_turfs.html b/code/modules/mining/mine_turfs.html index eff94adc554..ab23fe224e1 100644 --- a/code/modules/mining/mine_turfs.html +++ b/code/modules/mining/mine_turfs.html @@ -14,7 +14,7 @@

    code/modules/mining/mine_turfs.dm - +

    @@ -22,7 +22,7 @@

    code/modules/mining/mine_turfs.dm

    /turf/simulated/floor/asteroidAsteroid
    diff --git a/code/modules/mining/money_bag.html b/code/modules/mining/money_bag.html index a5b0da45867..71cda68c236 100644 --- a/code/modules/mining/money_bag.html +++ b/code/modules/mining/money_bag.html @@ -14,14 +14,14 @@

    code/modules/mining/money_bag.dm - +

    /obj/item/moneybagMoney bag
    diff --git a/code/modules/mining/satchel_ore_boxdm.html b/code/modules/mining/satchel_ore_boxdm.html index 4aa9cea2ce9..9a204bc1f66 100644 --- a/code/modules/mining/satchel_ore_boxdm.html +++ b/code/modules/mining/satchel_ore_boxdm.html @@ -14,14 +14,14 @@

    code/modules/mining/satchel_ore_boxdm.dm - +

    /obj/structure/ore_boxOre box
    diff --git a/code/modules/mob/animations.html b/code/modules/mob/animations.html index 1e8dced9c06..b0fdbdd62af 100644 --- a/code/modules/mob/animations.html +++ b/code/modules/mob/animations.html @@ -14,14 +14,14 @@

    code/modules/mob/animations.dm - +

    /mob/living/carbonBLOOD SYSTEM
    diff --git a/code/modules/mob/living/carbon/slime/items.html b/code/modules/mob/living/carbon/slime/items.html index 37b84829ca4..1aca8bd2a1e 100644 --- a/code/modules/mob/living/carbon/slime/items.html +++ b/code/modules/mob/living/carbon/slime/items.html @@ -14,14 +14,14 @@

    code/modules/mob/living/carbon/slime/items.dm - +

    /obj/item/slimepotionPet Slime Creation
    diff --git a/code/modules/mob/living/silicon/robot/gripper.html b/code/modules/mob/living/silicon/robot/gripper.html index e077dd33426..96941d405e4 100644 --- a/code/modules/mob/living/silicon/robot/gripper.html +++ b/code/modules/mob/living/silicon/robot/gripper.html @@ -14,14 +14,14 @@

    code/modules/mob/living/silicon/robot/gripper.dm - +

    /obj/item/gripper/no_useobj/item/reagent_containers/cooking_container //Part of cooking overhaul, not yet ported
    diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.html b/code/modules/mob/living/simple_animal/hostile/syndicate.html index 36ec21ea642..48cfa32dba2 100644 --- a/code/modules/mob/living/simple_animal/hostile/syndicate.html +++ b/code/modules/mob/living/simple_animal/hostile/syndicate.html @@ -14,14 +14,14 @@

    code/modules/mob/living/simple_animal/hostile/syndicate.dm - +

    /mob/living/simple_animal/hostile/syndicate/meleeSword and shield
    diff --git a/code/modules/multiz/structures.html b/code/modules/multiz/structures.html index 4e142c255aa..1bc7278d693 100644 --- a/code/modules/multiz/structures.html +++ b/code/modules/multiz/structures.html @@ -14,7 +14,7 @@

    code/modules/multiz/structures.dm - +

    @@ -22,7 +22,7 @@

    code/modules/multiz/structures.dm

    /obj/structure/multiz/stairsSTAIRS
    diff --git a/code/modules/multiz/ztravel/climb.html b/code/modules/multiz/ztravel/climb.html index 497f4134be5..0139e9250c9 100644 --- a/code/modules/multiz/ztravel/climb.html +++ b/code/modules/multiz/ztravel/climb.html @@ -14,14 +14,14 @@

    code/modules/multiz/ztravel/climb.dm - +

    /datum/vertical_travel_method/climbGeneric climbing, without using any special equipment
    diff --git a/code/modules/nano/nanoui.html b/code/modules/nano/nanoui.html index 63c0210de7b..14319b4dea6 100644 --- a/code/modules/nano/nanoui.html +++ b/code/modules/nano/nanoui.html @@ -14,14 +14,14 @@

    code/modules/nano/nanoui.dm - +

    /datum/nanouiNANO UI FRAMEWORK
    diff --git a/code/modules/organs/body_modifications.html b/code/modules/organs/body_modifications.html index 59aa2b542aa..851ba51b8e1 100644 --- a/code/modules/organs/body_modifications.html +++ b/code/modules/organs/body_modifications.html @@ -14,7 +14,7 @@

    code/modules/organs/body_modifications.dm - +

    @@ -22,7 +22,7 @@

    code/modules/organs/body_modifications.dm

    /datum/body_modification/organ/oneeyeEyes
    diff --git a/code/modules/organs/external/_external.html b/code/modules/organs/external/_external.html index b1982a1f62b..4328ac35878 100644 --- a/code/modules/organs/external/_external.html +++ b/code/modules/organs/external/_external.html @@ -14,19 +14,19 @@ — Define Details

    code/modules/organs/external/_external.dm - +

    DROPLIMB_THRESHOLD_EDGEEXTERNAL ORGANS

    Define Details

    DROPLIMB_THRESHOLD_EDGE - +

    EXTERNAL ORGANS

    diff --git a/code/modules/organs/external/subtypes/standard.html b/code/modules/organs/external/subtypes/standard.html index 152784d40a4..a0f7c2bb940 100644 --- a/code/modules/organs/external/subtypes/standard.html +++ b/code/modules/organs/external/subtypes/standard.html @@ -14,14 +14,14 @@

    code/modules/organs/external/subtypes/standard.dm - +

    /obj/item/organ/external/chestORGAN DEFINES
    diff --git a/code/modules/organs/organ_description.html b/code/modules/organs/organ_description.html index 82c0e521127..cab1c0f4d73 100644 --- a/code/modules/organs/organ_description.html +++ b/code/modules/organs/organ_description.html @@ -14,7 +14,7 @@

    code/modules/organs/organ_description.dm - +

    @@ -22,7 +22,7 @@

    code/modules/organs/organ_description.dm

    /datum/organ_description/chest/skeletalSKELETON
    diff --git a/code/modules/organs/wound.html b/code/modules/organs/wound.html index fa993aad8d1..476c4180b3d 100644 --- a/code/modules/organs/wound.html +++ b/code/modules/organs/wound.html @@ -14,7 +14,7 @@

    code/modules/organs/wound.dm - +

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

    code/modules/organs/wound.dm

    /datum/wound/lost_limbEXTERNAL ORGAN LOSS
    diff --git a/code/modules/overmap/events/movable.html b/code/modules/overmap/events/movable.html index c38f3da9153..ec63c5d6325 100644 --- a/code/modules/overmap/events/movable.html +++ b/code/modules/overmap/events/movable.html @@ -14,14 +14,14 @@

    code/modules/overmap/events/movable.dm - +

    /obj/effect/overmap_event/movable/comet........::::::%%%SPACE_COMET
    diff --git a/code/modules/overmap/exoplanets/exoplanet.html b/code/modules/overmap/exoplanets/exoplanet.html index 69bab227f90..6c748949bf9 100644 --- a/code/modules/overmap/exoplanets/exoplanet.html +++ b/code/modules/overmap/exoplanets/exoplanet.html @@ -14,14 +14,14 @@

    code/modules/overmap/exoplanets/exoplanet.dm - +

    /obj/effect/overmap/sector/exoplanetSPACE_COMET%%%::::::........
    diff --git a/code/modules/paperwork/photography.html b/code/modules/paperwork/photography.html index 17844e5d932..19fc7c11ce7 100644 --- a/code/modules/paperwork/photography.html +++ b/code/modules/paperwork/photography.html @@ -14,7 +14,7 @@

    code/modules/paperwork/photography.dm - +

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

    code/modules/paperwork/photography.dm

    /obj/item/device/cameracamera
    diff --git a/code/modules/paperwork/silicon_photography.html b/code/modules/paperwork/silicon_photography.html index 8ce40a01353..9e29d7aa2c0 100644 --- a/code/modules/paperwork/silicon_photography.html +++ b/code/modules/paperwork/silicon_photography.html @@ -14,14 +14,14 @@

    code/modules/paperwork/silicon_photography.dm - +

    /obj/item/device/camera/siliconcamAI-specific
    diff --git a/code/modules/power/singularity/generator.html b/code/modules/power/singularity/generator.html index 8fd45359428..3c34b0a0b20 100644 --- a/code/modules/power/singularity/generator.html +++ b/code/modules/power/singularity/generator.html @@ -14,14 +14,14 @@

    code/modules/power/singularity/generator.dm - +

    /obj/machinery/the_singularitygenSINGULARITY SPAWNER
    diff --git a/code/modules/projectiles/ammunition/boxes.html b/code/modules/projectiles/ammunition/boxes.html index b3416746bf5..8e80e97cf2f 100644 --- a/code/modules/projectiles/ammunition/boxes.html +++ b/code/modules/projectiles/ammunition/boxes.html @@ -14,7 +14,7 @@

    code/modules/projectiles/ammunition/boxes.dm - +

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

    code/modules/projectiles/ammunition/boxes.dm

    /obj/item/ammo_magazine/ammobox/shotgunSHOTGUN
    diff --git a/code/modules/projectiles/ammunition/bullets.html b/code/modules/projectiles/ammunition/bullets.html index 2f290d30928..764d7774d8d 100644 --- a/code/modules/projectiles/ammunition/bullets.html +++ b/code/modules/projectiles/ammunition/bullets.html @@ -14,7 +14,7 @@

    code/modules/projectiles/ammunition/bullets.dm - +

    @@ -29,7 +29,7 @@

    code/modules/projectiles/ammunition/bullets.dm

    /obj/item/ammo_casing/rocketOther
    diff --git a/code/modules/projectiles/ammunition/magazines.html b/code/modules/projectiles/ammunition/magazines.html index 59d11716c40..ad9d013e821 100644 --- a/code/modules/projectiles/ammunition/magazines.html +++ b/code/modules/projectiles/ammunition/magazines.html @@ -14,7 +14,7 @@

    code/modules/projectiles/ammunition/magazines.dm - +

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

    code/modules/projectiles/ammunition/magazines.dm

    /obj/item/ammo_magazine/m12Shotguns!
    diff --git a/code/modules/projectiles/guns/energy/charge.html b/code/modules/projectiles/guns/energy/charge.html index b0ffc24d5ec..32173f869af 100644 --- a/code/modules/projectiles/guns/energy/charge.html +++ b/code/modules/projectiles/guns/energy/charge.html @@ -14,7 +14,7 @@

    code/modules/projectiles/guns/energy/charge.dm - +

    @@ -22,7 +22,7 @@

    code/modules/projectiles/guns/energy/charge.dm

    /datum/click_handler/chargeCharge gun click handler
    diff --git a/code/modules/projectiles/guns/projectile/battle_rifle/boltgun.html b/code/modules/projectiles/guns/projectile/battle_rifle/boltgun.html index 83be1603841..6c9c7f5f883 100644 --- a/code/modules/projectiles/guns/projectile/battle_rifle/boltgun.html +++ b/code/modules/projectiles/guns/projectile/battle_rifle/boltgun.html @@ -14,14 +14,14 @@

    code/modules/projectiles/guns/projectile/battle_rifle/boltgun.dm - +

    /obj/item/gun/projectile/boltgun/obrezOBREZ
    diff --git a/code/modules/reagents/bonsai.html b/code/modules/reagents/bonsai.html index 00807b119a4..7abf63f7f9b 100644 --- a/code/modules/reagents/bonsai.html +++ b/code/modules/reagents/bonsai.html @@ -14,14 +14,14 @@

    code/modules/reagents/bonsai.dm - +

    /obj/item/reagent_containers/bonsai
    diff --git a/code/modules/reagents/reagent_containers/dropper.html b/code/modules/reagents/reagent_containers/dropper.html index f47858e1c7b..a99187164d3 100644 --- a/code/modules/reagents/reagent_containers/dropper.html +++ b/code/modules/reagents/reagent_containers/dropper.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/dropper.dm - +

    /obj/item/reagent_containers/dropperDroppers.
    diff --git a/code/modules/reagents/reagent_containers/food.html b/code/modules/reagents/reagent_containers/food.html index 7ebfe035948..8e01726a3f6 100644 --- a/code/modules/reagents/reagent_containers/food.html +++ b/code/modules/reagents/reagent_containers/food.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/food.dm - +

    /obj/item/reagent_containers/foodDroppers. END
    diff --git a/code/modules/reagents/reagent_containers/food/condiment.html b/code/modules/reagents/reagent_containers/food/condiment.html index 07940a71895..78ad0d96a13 100644 --- a/code/modules/reagents/reagent_containers/food/condiment.html +++ b/code/modules/reagents/reagent_containers/food/condiment.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/food/condiment.dm - +

    /obj/item/reagent_containers/food/condimentCondiments
    diff --git a/code/modules/reagents/reagent_containers/food/drinks.html b/code/modules/reagents/reagent_containers/food/drinks.html index 75c85399f52..1557f8d7e35 100644 --- a/code/modules/reagents/reagent_containers/food/drinks.html +++ b/code/modules/reagents/reagent_containers/food/drinks.html @@ -14,7 +14,7 @@

    code/modules/reagents/reagent_containers/food/drinks.dm - +

    @@ -24,7 +24,7 @@

    code/modules/reagents/reagent_containers/food/drinks.dm

    /obj/item/reagent_containers/food/drinks/shakerpitchers, pots, flasks and cups
    diff --git a/code/modules/reagents/reagent_containers/food/drinks/bottle.html b/code/modules/reagents/reagent_containers/food/drinks/bottle.html index f96610a5694..147d336bb08 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/bottle.html +++ b/code/modules/reagents/reagent_containers/food/drinks/bottle.html @@ -14,7 +14,7 @@

    code/modules/reagents/reagent_containers/food/drinks/bottle.dm - +

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

    code/modules/reagents/reagent_containers/food/drinks/bottle.dm

    /obj/item/reagent_containers/food/drinks/bottle/orangejuiceJUICES AND STUFF
    diff --git a/code/modules/reagents/reagent_containers/food/snacks.html b/code/modules/reagents/reagent_containers/food/snacks.html index 1475cf25233..7aa59c3648a 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.html +++ b/code/modules/reagents/reagent_containers/food/snacks.html @@ -14,7 +14,7 @@

    code/modules/reagents/reagent_containers/food/snacks.dm - +

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

    code/modules/reagents/reagent_containers/food/snacks.dm

    /obj/item/reagent_containers/food/snacks/sliceable/pizzaPIZZA
    diff --git a/code/modules/reagents/reagent_containers/glass.html b/code/modules/reagents/reagent_containers/glass.html index bc605b085da..d28f3186f43 100644 --- a/code/modules/reagents/reagent_containers/glass.html +++ b/code/modules/reagents/reagent_containers/glass.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/glass.dm - +

    /obj/item/reagent_containers/glass(Mixing)Glass.
    diff --git a/code/modules/reagents/reagent_containers/glass/beaker.html b/code/modules/reagents/reagent_containers/glass/beaker.html index a55fb23dccd..88c27697292 100644 --- a/code/modules/reagents/reagent_containers/glass/beaker.html +++ b/code/modules/reagents/reagent_containers/glass/beaker.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/glass/beaker.dm - +

    /obj/item/reagent_containers/glass/beaker/cryoxadoneSubtypes
    diff --git a/code/modules/reagents/reagent_containers/hypospray.html b/code/modules/reagents/reagent_containers/hypospray.html index dff6a5f80ee..8b87554087c 100644 --- a/code/modules/reagents/reagent_containers/hypospray.html +++ b/code/modules/reagents/reagent_containers/hypospray.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagent_containers/hypospray.dm - +

    /obj/item/reagent_containers/hyposprayHYPOSPRAY
    diff --git a/code/modules/reagents/reagent_containers/pill.html b/code/modules/reagents/reagent_containers/pill.html index 83a0e3cb74d..7e295e41154 100644 --- a/code/modules/reagents/reagent_containers/pill.html +++ b/code/modules/reagents/reagent_containers/pill.html @@ -14,7 +14,7 @@

    code/modules/reagents/reagent_containers/pill.dm - +

    @@ -22,7 +22,7 @@

    code/modules/reagents/reagent_containers/pill.dm

    /obj/item/reagent_containers/pill/antitoxPills. END
    diff --git a/code/modules/reagents/reagent_containers/syringes.html b/code/modules/reagents/reagent_containers/syringes.html index c81fb72734e..066493ff48d 100644 --- a/code/modules/reagents/reagent_containers/syringes.html +++ b/code/modules/reagents/reagent_containers/syringes.html @@ -14,7 +14,7 @@ — Define Details

    code/modules/reagents/reagent_containers/syringes.dm - +

    @@ -22,13 +22,13 @@

    code/modules/reagents/reagent_containers/syringes.dm

    /obj/item/reagent_containers/syringe/inaprovalineSyringes. END
    /obj/item/reagent_containers/syringe/large/antitoxinLarge Syringes.

    Define Details

    SYRINGE_DRAW - +

    Syringes.

    diff --git a/code/modules/reagents/reagents/food-Drinks.html b/code/modules/reagents/reagents/food-Drinks.html index 73c7c95cdc7..ced4018aac3 100644 --- a/code/modules/reagents/reagents/food-Drinks.html +++ b/code/modules/reagents/reagents/food-Drinks.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagents/food-Drinks.dm - +

    /datum/reagent/alcohol/kaiserbeerlose sanity on withdrawal, notify user about this
    diff --git a/code/modules/reagents/reagents/medicine.html b/code/modules/reagents/reagents/medicine.html index 381160b3b8a..93bb58a651d 100644 --- a/code/modules/reagents/reagents/medicine.html +++ b/code/modules/reagents/reagents/medicine.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagents/medicine.dm - +

    /datum/reagent/medicinelose sanity on withdrawal, notify user about this
    diff --git a/code/modules/reagents/reagents/toxins.html b/code/modules/reagents/reagents/toxins.html index 8ebf5c38db3..9edc275d723 100644 --- a/code/modules/reagents/reagents/toxins.html +++ b/code/modules/reagents/reagents/toxins.html @@ -14,14 +14,14 @@

    code/modules/reagents/reagents/toxins.dm - +

    /datum/reagent/toxin/plasmadatum/reagent/toxin/blattedin is defined in blattedin.dm
    diff --git a/code/modules/recycling/disposal.html b/code/modules/recycling/disposal.html index 222527fa2ed..3a38cb79d05 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

    /obj/structure/disposalpipe/junction/yjunctionZ-Level stuff
    diff --git a/code/modules/research/designs.html b/code/modules/research/designs.html index efe0ae2a4d9..f679d0fea5e 100644 --- a/code/modules/research/designs.html +++ b/code/modules/research/designs.html @@ -14,14 +14,14 @@

    code/modules/research/designs.dm - +

    /datum/design/research
    diff --git a/code/modules/research/research.html b/code/modules/research/research.html index c7ce76ca5bc..3790e5e7a0e 100644 --- a/code/modules/research/research.html +++ b/code/modules/research/research.html @@ -14,14 +14,14 @@

    code/modules/research/research.dm - +

    /datum/techTechnology Trees
    diff --git a/code/modules/sanity/inspiration_component.html b/code/modules/sanity/inspiration_component.html index 8d4eda540a0..87fe8f301fb 100644 --- a/code/modules/sanity/inspiration_component.html +++ b/code/modules/sanity/inspiration_component.html @@ -14,7 +14,7 @@

    code/modules/sanity/inspiration_component.dm - +

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

    code/modules/sanity/inspiration_component.dm (This would've been better as an element instead of a component, but currently elements don't exist on cev eris. F)

    diff --git a/code/modules/shieldgen/sheldwallgen.html b/code/modules/shieldgen/sheldwallgen.html index e8c58a57aab..2f17f528a82 100644 --- a/code/modules/shieldgen/sheldwallgen.html +++ b/code/modules/shieldgen/sheldwallgen.html @@ -14,7 +14,7 @@

    code/modules/shieldgen/sheldwallgen.dm - +

    @@ -22,7 +22,7 @@

    code/modules/shieldgen/sheldwallgen.dm

    /obj/machinery/shieldwallContainment Field START
    diff --git a/code/modules/synthesized_instruments/docs/Structure.html b/code/modules/synthesized_instruments/docs/Structure.html index 4a91117cf6f..e3cfbe2a5ab 100644 --- a/code/modules/synthesized_instruments/docs/Structure.html +++ b/code/modules/synthesized_instruments/docs/Structure.html @@ -14,7 +14,7 @@

    code/modules/synthesized_instruments/docs/Structure.txt - +

    @@ -39,7 +39,7 @@

    code/modules/synthesized_instruments/docs/Structure.txt

    diff --git a/code/modules/telesci/telepads.html b/code/modules/telesci/telepads.html index 39c6f765770..cb1b332fa77 100644 --- a/code/modules/telesci/telepads.html +++ b/code/modules/telesci/telepads.html @@ -14,14 +14,14 @@

    code/modules/telesci/telepads.dm - +

    /obj/machinery/telepadSCI TELEPAD
    diff --git a/code/modules/tgui/external.html b/code/modules/tgui/external.html index 9089decbbb1..3248431db2e 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 b4115e11427..013d7a5abe9 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/always.html b/code/modules/tgui/states/always.html index 618d908084f..597bb05c6a5 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/status_composers.html b/code/modules/tgui/status_composers.html index 7a6b673eaba..d5ebbe4dd30 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 - +

    @@ -50,7 +50,7 @@

    code/modules/tgui/status_composers.dm Return UI_CLOSE otherwise.

    diff --git a/code/modules/tgui/tgui.html b/code/modules/tgui/tgui.html index a6e103f1128..6c460f49421 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_window.html b/code/modules/tgui/tgui_window.html index b93d189606d..6ac7098eb9c 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/unit_tests.html b/code/modules/unit_tests.html index d28bc847501..553505f21f0 100644 --- a/code/modules/unit_tests.html +++ b/code/modules/unit_tests.html @@ -14,7 +14,7 @@

    Unit Tests - +

    @@ -65,7 +65,7 @@

    Final Notes

    diff --git a/code/modules/unit_tests/_unit_tests.html b/code/modules/unit_tests/_unit_tests.html index 10fc4557e2c..1360ffa810e 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 - +

    @@ -36,66 +36,66 @@

    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_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_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/map_tests.html b/code/modules/unit_tests/map_tests.html index f4b60256d48..c2163d53e53 100644 --- a/code/modules/unit_tests/map_tests.html +++ b/code/modules/unit_tests/map_tests.html @@ -14,14 +14,14 @@

    code/modules/unit_tests/map_tests.dm - +

    /datum/unit_test/log_mappingConveys all log_mapping messages as unit test failures, as they all indicate mapping problems.
    diff --git a/code/modules/unit_tests/mob_tests.html b/code/modules/unit_tests/mob_tests.html index b616ee60f3c..8226fa02cf6 100644 --- a/code/modules/unit_tests/mob_tests.html +++ b/code/modules/unit_tests/mob_tests.html @@ -14,14 +14,14 @@

    code/modules/unit_tests/mob_tests.dm - +

    /datum/unit_test/human_breathUsed to test mob breathing in space
    diff --git a/code/modules/unit_tests/screenshot_basic.html b/code/modules/unit_tests/screenshot_basic.html index 9b74fabfc9b..face579419b 100644 --- a/code/modules/unit_tests/screenshot_basic.html +++ b/code/modules/unit_tests/screenshot_basic.html @@ -14,7 +14,7 @@

    code/modules/unit_tests/screenshot_basic.dm - +

    @@ -22,7 +22,7 @@

    code/modules/unit_tests/screenshot_basic.dm It creates a picture that is red on the left side, green on the other.

    diff --git a/code/modules/unit_tests/screenshots.html b/code/modules/unit_tests/screenshots.html index e34d0a5117f..bd7c371504c 100644 --- a/code/modules/unit_tests/screenshots.html +++ b/code/modules/unit_tests/screenshots.html @@ -14,7 +14,7 @@

    code/modules/unit_tests/screenshots/README.md - +

    @@ -33,7 +33,7 @@

    code/modules/unit_tests/screenshots/README.md

    Unfortunately, screenshot tests are sanest to test through a pull request directly, due to limitations with both DM and GitHub.

    diff --git a/code/modules/unit_tests/step_override.html b/code/modules/unit_tests/step_override.html index a6fd96c65dd..9c0aded31e9 100644 --- a/code/modules/unit_tests/step_override.html +++ b/code/modules/unit_tests/step_override.html @@ -14,14 +14,14 @@

    code/modules/unit_tests/step_override.dm - +

    /datum/unit_test/step_overrideChecks if the override for step doesn't break the actual parent (byond built in) code
    diff --git a/code/modules/unit_tests/tgui_create_message.html b/code/modules/unit_tests/tgui_create_message.html index d45fb5c2b34..e5556beb7bc 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/unit_tests/uniqueness.html b/code/modules/unit_tests/uniqueness.html index 82919ca1f22..2469ae7cdab 100644 --- a/code/modules/unit_tests/uniqueness.html +++ b/code/modules/unit_tests/uniqueness.html @@ -14,7 +14,7 @@

    code/modules/unit_tests/uniqueness.dm - +

    @@ -22,7 +22,7 @@

    code/modules/unit_tests/uniqueness.dm

    USED BY UNIT TEST: uniqueness.dm
    diff --git a/datum.html b/datum.html index 6b82f731dde..cd5cfe1c3ef 100644 --- a/datum.html +++ b/datum.html @@ -16,7 +16,7 @@

    datum - +

    The absolute base class for everything

    @@ -70,33 +70,33 @@

    Var Details

    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] = list(registered_objects)

    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 @@ -104,13 +104,13 @@

    Var Details

    Lazy associated list in the structure of [target][signal] = proc) that are run when the datum receives that signal

    tgui_shared_states - +

    global

    Associative list of JSON-encoded shared states that were set by @@ -118,12 +118,12 @@

    Var Details

    - +

    A weak reference to another datum

    Proc Details

    GetComponent

    Return any component assigned to this datum of the given type

    @@ -134,7 +134,7 @@

    Var Details

    Get all components of a given type that are attached to this datum

    @@ -144,7 +144,7 @@

    Var Details

    Return any component assigned to this datum of the exact given type

    @@ -155,13 +155,13 @@

    Var Details

    Checks if we already are registered onto the object with said proc on said signal

    Process

    This proc is called on a datum on every "cycle" if it is being processed by a subsystem. The time between each cycle is determined by the subsystem's "wait" setting. @@ -177,7 +177,7 @@

    Var Details

    Register to listen for a signal from the passed in target

    @@ -195,13 +195,13 @@

    Var Details

    Registers multiple signals to the same proc.

    TakeComponent

    Transfer this component to another parent

    @@ -212,7 +212,7 @@

    Var Details

    Transfer all components to target

    @@ -223,7 +223,7 @@

    Var Details

    Stop listening to a given signal from target

    @@ -236,7 +236,7 @@

    Var Details

    Creates an instance of new_type in the datum and attaches to it as parent

    @@ -246,13 +246,13 @@

    Var Details

    Finds the singleton for the element type given and attaches it to src

    _LoadComponent

    Get existing component of type, or create it and return a reference to it

    @@ -264,14 +264,14 @@

    Var Details

    Finds the singleton for the element type given and detaches it from src You only need additional arguments beyond the type if you're using ELEMENT_BESPOKE

    _SendSignal

    Internal proc to handle most all of the signaling procedure

    @@ -279,7 +279,7 @@

    Var Details