diff --git a/area.html b/area.html index 783218979f3c..ecfd0aa8aafc 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 806cce9be783..2efd09f0f91f 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 c4b218e10151..3834b7e60b18 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 b3a90c8dab82..17813aa35166 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 d7a79257cf18..be5be7468a2e 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 82e2c56b651d..7f8e0f1c6158 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 9638c0d80ed9..6c4de59773c9 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 6d7d50f6430f..f5dbed544118 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 26c0c651faa7..98ece1a9217d 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 72fecb6fb0e2..b6f949b76ce5 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 d02b450064ce..7f4563ce47f9 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 a5265be6e904..b54165aa7df1 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 f00c1fb8b429..f00a3ef1961f 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 7578141c2876..ebe54a118b38 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 de0fffb478a8..f23313c63c98 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 fa07803b70b9..5f873767918c 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 b26202df9324..61f6069199a5 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 f020797242ac..e2ceb53ead27 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 ef92ca0add10..d5d8ffedf47c 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 1faab9e8a118..f6d0b9ad3777 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 5f6cd074d060..5bb635171081 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 f53926e11477..a7ec5a5b2685 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 d9468ab1eab3..15a02cbba339 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 ae7efc4c4617..0caf22ee7257 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 4eb2cf5a2e98..6cb408fe4b1a 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 001e60adfb9b..779324128858 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 65c67742e459..b7ec12b538ba 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 0eab3b1d516c..0cd6af38e828 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 7ae1ef6235d9..3f077b3ddf84 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 d477ec124f6b..33fe3c700bdb 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 41e970cf4161..cae90039bce0 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 52a47ef7db99..3a1303168d2c 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 96eed5744162..5297bb78b313 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 63d7790c6ec8..9245874c0fb6 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 6b58890ba295..15f3f26de775 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 6fe494282ab4..8dd7407dded6 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 2aff9a94f568..ddef98c77cb2 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 52b9c5c07976..19b67c5f730e 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 4db6b49ee691..a7d657454938 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 f15510391f89..cd97c6398405 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 1e68a7dc4410..0c3a13fe09cb 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 a3291c9e1caa..0a1f5df081e5 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 a5dd8f482a9b..96c2e27de789 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 81bb6695c30a..9b948c4246e0 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/chunks.html b/code/controllers/subsystems/chunks.html index 72b89b197a3a..c3a03a42e8ff 100644 --- a/code/controllers/subsystems/chunks.html +++ b/code/controllers/subsystems/chunks.html @@ -14,7 +14,7 @@

    code/controllers/subsystems/chunks.dm - +

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

    code/controllers/subsystems/chunks.dm For now it only has mobs and hearers, but it should also include sanity , signal receivers , and anything that is very frequently

    diff --git a/code/controllers/subsystems/garbage.html b/code/controllers/subsystems/garbage.html index 85b601cb820b..9f5239e27bc6 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 44a98f37459c..2e516b5e0382 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 3cc7acdd4511..a212ce74c811 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 1cf71a925d90..48f7db2425bb 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/throwing.html b/code/controllers/subsystems/throwing.html index 63fc0608671b..69dc135d377a 100644 --- a/code/controllers/subsystems/throwing.html +++ b/code/controllers/subsystems/throwing.html @@ -14,7 +14,7 @@ — Define Details

    code/controllers/subsystems/throwing.dm - +

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

    code/controllers/subsystems/throwing.dm

    I_RANGEIndex for range
    I_MOVEDIndex for amount of turfs we alreathrowing_queue[thing][I_DY] moved by

    Define Details

    I_MOVED - +

    Index for amount of turfs we alreathrowing_queue[thing][I_DY] moved by

    I_RANGE - +

    Index for range

    I_SPEED - +

    Index for speed

    I_TARGET - +

    Index for target

    diff --git a/code/controllers/subsystems/timer.html b/code/controllers/subsystems/timer.html index 1cab77c61288..28e3d5ea741b 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 b617c675a730..4879a463db84 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 b1c66768f29c..370bf8c0abd6 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 16e594dde553..43a801c68bb0 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 88278d891e9e..81e82886468e 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 d0652d2c8b95..d844baf3a9f4 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 7b47d4f70a45..9bc5271033c9 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 69069dabc423..a54a7068357a 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 13cf8568f0de..f11d0c3f4e4a 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 f5e9f02f0e8e..eecfa3d8b92c 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 4a048d0e402b..922c0ed57dbf 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 bf55c0e4f0fe..1687dc7ee401 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 fbdfdad7d7b3..4029c21c62bc 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 15224b6d5c22..41b8ff6bf056 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 0ea383165895..940698c59afc 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 3e121ce2daff..93b8a13fd151 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 fe14746c9eea..2c5f5fe88d60 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 6af6063cbfd9..563627eb5f8d 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 75b674b3133e..7717c73e34c3 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 29aa695dddd0..d861d9cb3649 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 9c1c7d1939fc..9f31fdc06511 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 200a49fe4306..19d94d375363 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 d5800a38385f..0fe3f7bdb02c 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 93e68509ffe0..47674ddc8959 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 e956ffff7fd9..e72c2cf9fef3 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 fc5d45650073..bad2727eed07 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 728bc37861a4..a2e4c1a9b55f 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 f53b833b62ab..0c12647acb68 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 7ab829f69a61..bf28bc30f540 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 8e9065b865d4..cab3673915db 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 7c7246051c9b..820b533859b6 100644 --- a/code/datums/uplink/implants.html +++ b/code/datums/uplink/implants.html @@ -14,7 +14,7 @@

    code/datums/uplink/implants.dm - +

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

    code/datums/uplink/implants.dm

    /datum/uplink_item/item/implants/energy_bladeobj/item/implanter/installer/disposable/CYBERNETIC
    diff --git a/code/datums/uplink/medical.html b/code/datums/uplink/medical.html index c5db5ffd0e31..d397fc78d542 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 75472590f12f..dd556c2d7711 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 2339394c1760..aae345095771 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 0be6f2c50f4a..f1c5db455e6d 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 bd3a39b7b60b..2b4f4a140082 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 313c08acd204..8b00f11a84f7 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 be94864654b7..a2bfef0c118a 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/atoms_movable.html b/code/game/atoms_movable.html index d23b184cdc04..7c7a1a784244 100644 --- a/code/game/atoms_movable.html +++ b/code/game/atoms_movable.html @@ -14,14 +14,14 @@

    code/game/atoms_movable.dm - +

    /atom/movable/overlaydefines for each slot are above the function def
    diff --git a/code/game/gamemodes/endgame/endgame.html b/code/game/gamemodes/endgame/endgame.html index 4ad4c70dda17..bd786a0e01d4 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 749d86927760..ae87a6a96904 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 3a7bdea2723c..809085ddbf3c 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 b497a08979da..59ce8be12d17 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 f7344ebec984..4f720dcbd57e 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 a2fae36301ae..19bbc4791ce6 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 71c3cff73adb..0c8ef26cacf8 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 d98f6ac1bc38..33cc3183c2bb 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 5e344a2f3b13..c43b7b1676d0 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 5cff0bf8c8ae..7252df37fa41 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 15ea3b4adcbd..2fae047ef9d9 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 f6d6600bdbd5..cf75572f6d08 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 44e00c02d560..c4966fdc624b 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 445e9bb3165c..faf75c830308 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 cc7b68884710..3e3b1c20744f 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 e3831a0a2e84..9a8614731d55 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 480c4baaa29c..4f10b836694d 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 e1b110be19aa..7f5fdbd62161 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 5717a8cbfc19..83513c3aa335 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 c0387cf2dbf0..19d16b36de69 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 816e4443f8e6..ca3adcc8f769 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 51cd93567843..63b9c5622e16 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 eeafb20004c2..a9bec0d4b4f1 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 a3c3271d29b8..41b0c988c280 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 70102e75bd75..586e25bcc809 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 a50e7019110f..b319c19693cc 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 7faee7403d76..8cc86533b26d 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/mop.html b/code/game/objects/items/weapons/mop.html index 2abf641ca120..c66f928867ac 100644 --- a/code/game/objects/items/weapons/mop.html +++ b/code/game/objects/items/weapons/mop.html @@ -14,14 +14,14 @@

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

    /obj/item/mopif at least one of the people inside is an excel.
    diff --git a/code/game/objects/items/weapons/storage/hardcases.html b/code/game/objects/items/weapons/storage/hardcases.html index 5a34b7bf1d9e..088d0081cec9 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 b0faf94e68d5..b8d46518ba1f 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 0123f29d7288..48b870d06d07 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 f211ecae367b..41ad6fe6185b 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 6166b34aaf94..f5974169f70a 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 661a90824151..91e73e2881a0 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 6217705a3718..17dc67018519 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 0b83a5a8595c..6dec70b9d9da 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 ac69681683ae..396b90813671 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 575b0b698301..6107cebcc1e6 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 a7eadd195588..3d2715870197 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 5bb937e48832..a44576241466 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 4d7cf4508f23..43b55e71b6ee 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 0ddd4c672b3c..e93bf4206fb8 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 f1ec75e0074f..4feea451323d 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 bce24c36119a..2af558e0d448 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 dc93a54e9aeb..36096937897e 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 0c538ccdb33f..011ec837c8c0 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 6701659ee7b2..30c1fbf75349 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 9775dca602ad..ade0739b67a6 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 051cc7383261..34d8377a19ea 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 d067c51dbd76..bc4473997e09 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 c6837c41a835..45e1c7c73586 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 646f7e130d1c..a46c267fe0c4 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 1ac4ba76e518..091a341d4dce 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 65f308aa769a..5acc309c89a9 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 0914af097ee0..b2693f8adafd 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 c47290931e56..0baaca6e25b0 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 310b595200f7..37ee6b853774 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 e40f678d658e..008763763b16 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 dbb3f640ebfa..1dd77d6a52d9 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 2feea300fd91..74ae0417f897 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 5cfe8011459a..32003ab23a7a 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 92bb5c3a5771..59c4a9836c61 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 dbfa043dd03f..3569e15de404 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 d58593440c5d..17490bb75216 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 0a52274ca30d..6aef3634463d 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 5338dcef133d..cab904b5b435 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 5ff45d2b6b0c..bf8b094827a3 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_defines.html b/code/modules/mechs/_mech_defines.html index 326832ea64e8..beb4f4f8d1be 100644 --- a/code/modules/mechs/_mech_defines.html +++ b/code/modules/mechs/_mech_defines.html @@ -14,24 +14,24 @@ — Define Details

    code/modules/mechs/_mech_defines.dm - +

    EQUIPFLAG_UPDTMOVEIt will make update_icon be called on the equipment after every move
    EQUIPFLAG_PRETICKIt will have pretick() called on it before the mech checks wheter or not is powered

    Define Details

    EQUIPFLAG_PRETICK - +

    It will have pretick() called on it before the mech checks wheter or not is powered

    EQUIPFLAG_UPDTMOVE - +

    It will make update_icon be called on the equipment after every move

    diff --git a/code/modules/mechs/equipment/combat.html b/code/modules/mechs/equipment/combat.html index 049cbbcfdc40..752c6d41d864 100644 --- a/code/modules/mechs/equipment/combat.html +++ b/code/modules/mechs/equipment/combat.html @@ -14,7 +14,7 @@ — Define Details

    code/modules/mechs/equipment/combat.dm - +

    @@ -27,13 +27,13 @@

    code/modules/mechs/equipment/combat.dm

    /obj/item/mech_equipment/shield_generatorYes this also drains power from blocking halloss Yes i justify it cause it stops by kinetic power and not by lethality / material hardness

    Define Details

    LOADING_FLEXIBLE - +

    This will always assume the gun loads in single mode, removing bullets from magazines and then loading them in

    diff --git a/code/modules/mechs/equipment/utility.html b/code/modules/mechs/equipment/utility.html index 30dbe3972ef0..9c22e7acb626 100644 --- a/code/modules/mechs/equipment/utility.html +++ b/code/modules/mechs/equipment/utility.html @@ -14,14 +14,14 @@

    code/modules/mechs/equipment/utility.dm - +

    /obj/item/mech_equipment/forklifting_systemFancy way to move someone up a z-level if you think about it..
    diff --git a/code/modules/mechs/mech_movement.html b/code/modules/mechs/mech_movement.html index 7c5e638e51db..58b7ba7aa20b 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 d7c6161f167c..f3f0d8a0015f 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 4950c74c5f07..b171b85cd6a9 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 36ff2f8d3a06..c9db2e7863d2 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 7564aebc7f5c..45bfbdb6efc1 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 2e35c678259d..44bbe8afa0df 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 57cbffcec826..e250a5d0d422 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 5ba5db70247d..94f18dd033b5 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 822e247ac35e..9402c7daa84c 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 d9228f0b0377..fb8a0bb776bb 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 e03130a32d4c..fa2bd0fbad6a 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 d2434be497e5..62bd677f988a 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 5f523fc3ca3b..5b872e0064e5 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 6599877d77fe..02d928d80d93 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 3d9b4d10a017..490333b8de03 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 e24285d15c74..30601ef0dde0 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 979039df5193..4a480207a57e 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 9f64fc549a9f..f5e4e7755a34 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 98b542962a29..6ffd836d2aa6 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 e124495dd439..193906b04c5c 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/internal/internal_wounds/eyes.html b/code/modules/organs/internal/internal_wounds/eyes.html index 8eb36cf15e4e..c188adbc4b15 100644 --- a/code/modules/organs/internal/internal_wounds/eyes.html +++ b/code/modules/organs/internal/internal_wounds/eyes.html @@ -14,14 +14,14 @@

    code/modules/organs/internal/internal_wounds/eyes.dm - +

    /datum/component/internal_wound/robotic/eyes_bluntRobotic
    diff --git a/code/modules/organs/organ_description.html b/code/modules/organs/organ_description.html index d706deb29e12..7425243b696e 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 7f3daf613447..1f75d1b284c5 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 2d74d3b7372b..04495b32f3b4 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 a91877093f95..e28d947e8153 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 2867543b36b3..ea0e6afe907e 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 1b9618bcc73c..94d1a2ef8efb 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 933d56cace57..f69d713644e6 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 b7ae7085f42b..fd9df868f628 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 97388eff0ca2..32201bcedc0d 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 d19fad96e823..83de35987ee7 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 3f570601baa4..2a0d44e5e394 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 9e5014f67fd6..4238b1a06fc9 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/projectiles/projectile/beams.html b/code/modules/projectiles/projectile/beams.html index 745c5b00e290..f8e43b9c376b 100644 --- a/code/modules/projectiles/projectile/beams.html +++ b/code/modules/projectiles/projectile/beams.html @@ -14,14 +14,14 @@

    code/modules/projectiles/projectile/beams.dm - +

    /obj/item/projectile/beam/cutterOnly used by the mech plasmacutter ofr now
    diff --git a/code/modules/reagents/bonsai.html b/code/modules/reagents/bonsai.html index 119e075c3b63..509c37673184 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 802aa1d489e9..8b807c287568 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 7a92b12229e7..dc92cdd2a013 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 00b77d43834d..cc095b9ecd08 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 de7964afccd8..7208f0c2d26c 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 98d9d5e29254..29c8b713b16c 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 550847ce95cc..986c3036c7a5 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 fb84f8cc6024..746754b50a89 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 3a66fbc8f1b4..3cb6e1edc423 100644 --- a/code/modules/reagents/reagent_containers/glass/beaker.html +++ b/code/modules/reagents/reagent_containers/glass/beaker.html @@ -14,7 +14,7 @@

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

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

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

    /obj/item/reagent_containers/glass/bucketOther
    diff --git a/code/modules/reagents/reagent_containers/hypospray.html b/code/modules/reagents/reagent_containers/hypospray.html index 2943ec2440ba..5f821ac30919 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 17fde89f619c..3e1f1db8c718 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 ee3a3dbaabbc..5cf73be59b00 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 ee1a6a41b7a4..200ace0af575 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 84294685e4d7..898d15a06abe 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 07a9d39e7c10..46b7d31e6b84 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 fe89f1e6c3b1..b8ebed6c8f49 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 011a9db967b6..e9ded0087285 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 7909e5edbe0e..7834019b2258 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 8e2df5b41e7d..f9e08f330b03 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 d2bc7f774b74..0f91b647cb91 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 de825b2ac3e7..3f5903913383 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 8753a81b1da7..8801123a6738 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 599ae55bf811..771e7291a2f1 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 7688cfb5adfb..2aa11237f8a5 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 6379fd42a2ba..077d28a16425 100644 --- a/code/modules/tgui/states/always.html +++ b/code/modules/tgui/states/always.html @@ -14,7 +14,7 @@

    code/modules/tgui/states/always.dm - +

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

    code/modules/tgui/states/always.dm SPDX-License-Identifier: MIT

    diff --git a/code/modules/tgui/states/hands.html b/code/modules/tgui/states/hands.html index 21449d05911f..ddbeb90dd9e4 100644 --- a/code/modules/tgui/states/hands.html +++ b/code/modules/tgui/states/hands.html @@ -14,7 +14,7 @@

    code/modules/tgui/states/hands.dm - +

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

    code/modules/tgui/states/hands.dm SPDX-License-Identifier: MIT

    diff --git a/code/modules/tgui/states/notcontained.html b/code/modules/tgui/states/notcontained.html index d79e0168a8e5..a17ab9cb9ab2 100644 --- a/code/modules/tgui/states/notcontained.html +++ b/code/modules/tgui/states/notcontained.html @@ -14,7 +14,7 @@

    code/modules/tgui/states/notcontained.dm - +

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

    code/modules/tgui/states/notcontained.dm SPDX-License-Identifier: MIT

    diff --git a/code/modules/tgui/status_composers.html b/code/modules/tgui/status_composers.html index fd59c9cf205a..ef4c3984e623 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 73781b8bb514..021328384f26 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 03c03d2a0922..b86f2202220f 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 d28083365c60..b364e7850be1 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 d1cb1c8a238d..ac1eca4d2696 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 864e881b80f0..2d40bb726ff6 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 b860eeddb2b1..91fc04b31797 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 8c73700a1c2c..cb9410b375e8 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 fb76563a95f9..20c5a2fe4f9d 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 f7a64f9e2add..c49fa4855048 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 0c1bc49c5e29..5c9ef96296d2 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 f00b7a2f83dd..f5f7154498d9 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 8b443944a0bd..41f17809ab3c 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