diff --git a/area.html b/area.html index 7f92c6cfb38e..b80e6421b160 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 eb35995ddc33..fa5876153375 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 4cf8e66efbe5..034cec51fbf0 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 bd4207eb2134..085ac2e53e09 100644 --- a/client.html +++ b/client.html @@ -16,7 +16,7 @@

client - +

Client datum

@@ -66,43 +66,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 @@ -119,7 +119,7 @@

Var Details

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!HEY LISTEN!!!!!!!!!!!!!!!!!!!!!!!! @@ -127,50 +127,50 @@

Var Details

Disables default BYOND verb panel in favor of Stat Panel™

tgui_cache_reloaded - +

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

verb_tabs - +

List of Stat Panel tabs

Proc Details

Process_Grab

Process_Grab() @@ -178,32 +178,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. @@ -211,13 +211,13 @@

Var Details

Compiles a full list of verbs and sends it to the browser

nanoclose

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

Var Details

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

Var Details

verb

@@ -244,7 +244,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 dfe3b8092248..cfd6133802dd 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 4bbd7669b504..6d2715d635c0 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 f5eeccec0460..3419b7053cd1 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 62f168d50e5a..bba2a6696159 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 56d16015b9a9..d23184c87b75 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 a9f709cbe161..4448a2853900 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 2320510e774c..141b7d65e443 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 d24a2593f895..c145c3e3386d 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 01639716f367..5a238595c185 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 086f5e388881..fb6d35a1f3f3 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 8acd65221f22..aab874602ad9 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 96ef124071fe..95f970128caa 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 594a6a4085f7..021a2b686d44 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 a42006b5fbcf..79462d2ca47b 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 1309518c00e2..d103551775e5 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 e3b80000fbca..a466b19403c0 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 b8d0f4e6961c..5ca1cb3007c0 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 8d5a53debbb3..81f0eac2671a 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 416d36f5fb70..d7ae143a5ce7 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 e97eb2540a1b..bd0ed3931d68 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 3258efe45360..29da087dd282 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 263549bc6ca0..aa259f808f1d 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 72cc581076d1..0f2d9ffada77 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 2925067e850c..b3677f4cb5ee 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 2f74af638ba3..ebc63d1802a8 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 6a39f0ef33ac..561ee8897172 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 b83d170e91da..2bb369ed4c84 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 d53f9568a153..cbf1acd337b1 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 687c9ff7bd54..81c51159f76f 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 4cdfb99344c3..f5a117f15c0b 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 f051272530f7..be4c2d8e3044 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 0f811539918a..6e80adf91686 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 a3ead7d0b917..ef0e5b4e2597 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/__HELPERS/verbs.html b/code/__HELPERS/verbs.html index 499327cca672..d9cfd577e0bf 100644 --- a/code/__HELPERS/verbs.html +++ b/code/__HELPERS/verbs.html @@ -14,7 +14,7 @@

    code/__HELPERS/verbs.dm - +

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

    code/__HELPERS/verbs.dm

    handles removing verb and sending it to browser to update, use this for removing verbs
    diff --git a/code/_compile_options.html b/code/_compile_options.html index aba608a6517f..eb562f6dd219 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 8b51c8ff37bb..b780b21f3476 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 83bd73e94caf..0160678fe2df 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 77d1b078bde6..70b2afbc4264 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 ca8312f91532..5874cbb29669 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 76d21df7bdba..9952ba63f79a 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 df39a1bc7c6d..f113fcb5e65c 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 b59432f50f81..a42c07af57b1 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 8f0dc86c336a..0eb13888eadb 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 75793be684cb..0785fc36f03a 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 e2390bdc0487..80e233457025 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 21b7e12faeb6..9cddf5a90916 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 d917c486b735..7299305c0c83 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 c2d9d16d9237..74abeb9623cc 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 23c590876e16..e9924f4e047f 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 2694d27e3425..e4f32d0f0a47 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 5ca96c341a67..e7fbb539df87 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 c7a167a19eda..3a61c45e2145 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 8ade948b7418..3cb291ce0648 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 de49d84d2d14..46269a3f60bf 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 78477818fdd0..46f3cc1da399 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/furniture.html b/code/datums/craft/recipes/furniture.html index ff0ddf7b1370..d4835f80f792 100644 --- a/code/datums/craft/recipes/furniture.html +++ b/code/datums/craft/recipes/furniture.html @@ -14,14 +14,14 @@

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

    /datum/craft_recipe/furniture/drying_rackdatum/craft_recipe/furniture/campfire
    diff --git a/code/datums/craft/recipes/tools.html b/code/datums/craft/recipes/tools.html index 3c2e7784524e..60c882f388d3 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 539c4ab00eb8..c1715e4709b7 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 b44213f9335a..095ca736b9c7 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 7392ce821194..ce1e593930e0 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 15104c06477d..7643720effa6 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 0bbbb04d50f6..ea305b2bd4f3 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 4a42a4c272d3..a7c209b9b4b8 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 5c99479ddb99..73e317ab5aac 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 d575d81bd97d..1bfcd4839cb3 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 71b3540eff0a..afaa7ab0b0c9 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 190f0f156ddb..5a7a287ded09 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 8ea703673304..2d869df9b01e 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 0e9fc8ce00db..a2b5c57d4a13 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 1ef13e1b3450..c29788b720c2 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 974b63c0e748..6d22df1fc3de 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 9f5cbcd2899e..5afe3eaec699 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 0fa35cbed334..278fec438a24 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 391970c8ed43..93b256527553 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 ae4709e3e640..01370017c2eb 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 43cba24a289a..dd95965ab13c 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 c30f00b3a456..d61838b0df5c 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 533484418bcf..4f420273d2a5 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 1d81fc19f619..99af1c3ef0fc 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 8f0cc2253b10..92fd74d10db9 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 038c3170273c..c5974d6aa771 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 9d7671c58bc6..ad71523acf20 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 fed6a782cc80..367ed72a2f53 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 b5b96dfe687b..6b7b75204418 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 439d04c3a523..5c2a6843bccf 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 ba2064746172..6d0ac46e842a 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 c047a2200ba5..b01c9e530bd3 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 ef435f8a03c8..994f3b3101a9 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 1d41a494c37b..1cf28291ff53 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 9dc611a792b7..bcd9166230af 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 cf8a706afc15..8de1077ee56b 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 f7f572d10e7c..583e39e06c02 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 6f67c150e468..a13a8bfec342 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 0db0d2dd5ffd..9dcf877728b5 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 3cf09fd07362..a432c99d4e55 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 ac66b5c1c88b..d8dbb53ea4ab 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 79e3eb001945..d24a1abd2b8b 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 171e4aa4e972..4e5dc6931d65 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 b42df0aea22d..9263c4343fba 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 39471c01849e..14abf07fd966 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 84f1189b0b63..6b73b535afdb 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 0142a53c7cd3..58bd4d460491 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 53e32475b3ca..765a166bc1af 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 2ec2ae04d8da..13a38d79e7f8 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 51bdc8883508..14b91d72f7d4 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 c4d2d5499b52..864f6635cb82 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 0d321face5d2..2208e68947ef 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 8048f5784506..468075d58222 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 26ea58abea0c..777384a70330 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/binoculars.html b/code/game/objects/items/devices/binoculars.html index 68281a37b70d..d1348f630b25 100644 --- a/code/game/objects/items/devices/binoculars.html +++ b/code/game/objects/items/devices/binoculars.html @@ -14,14 +14,14 @@

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

    /obj/item/device/binoculars/mechspecial subtype for handling
    diff --git a/code/game/objects/items/devices/debugger.html b/code/game/objects/items/devices/debugger.html index 1b8cffefa4ef..bbc4d9ec37db 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 1a7841c89a9b..48ca3c776c21 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 9e371248ab57..c34073509d10 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 edd9752422ba..69baabf522e6 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 9b2544ca7a3e..7a1b87842852 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 7eebc9580faa..ed65517f32ff 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 a35f1d94bb1c..9dc441fedf00 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/stunbaton.html b/code/game/objects/items/weapons/stunbaton.html index b8d47ce0955c..6fd75ab65f78 100644 --- a/code/game/objects/items/weapons/stunbaton.html +++ b/code/game/objects/items/weapons/stunbaton.html @@ -14,14 +14,14 @@

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

    /obj/item/melee/baton/robotWill be inside of mech equipment , which should be inside of a mech.
    diff --git a/code/game/objects/items/weapons/tanks/jetpack.html b/code/game/objects/items/weapons/tanks/jetpack.html index cf619ed9616b..0c1ae6c8e342 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 6716699cd4a7..12dd5205201b 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 b0a72ec8fdb2..1a28941e432c 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 42308f5aba7e..1ac6178287e5 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 11a923e2e3a3..1241b849fb71 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 b66a3c961f7e..ca0a9cb37669 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 e34f0a901914..3f5fe3afd16f 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 917cb3d68dad..7fb291c9d79c 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 44af48c884f5..922e80d0fc05 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 c8a20398557c..7508a6d58f07 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 d911998ce4ba..675323dca62d 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 4c6a60484363..8642e5cb4527 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 e80b0f25d592..a4ca565e1fd8 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 d8b4005d2166..9410e68824b2 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 10bd0127663a..3bdd352fa005 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 9e8ce0242957..b45b7d918953 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 0b059629acc6..072ac95c85a8 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 da4b1092e595..21d730c07848 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 a317d5ef318e..ee44c43b1a53 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 dee15ddd64e3..d9a936f36098 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 2369d3fe7ace..01485d79497c 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 82f6d86df6a4..122ea58d2966 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 57e51d90ba04..d2900ac95e28 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 8f1c5cbf71c4..527d33d7ec69 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 2c9d8dd6dfef..c2f4fdb76096 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 cbd64c74a290..e3010cdc91c2 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 5e5fbfd5cc24..4fcc2bb4f83b 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 b9ca7cf425e6..34a0029787a7 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station.html +++ b/code/modules/clothing/spacesuits/rig/suits/station.html @@ -14,19 +14,19 @@

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

    - - - - - -
    /obj/item/rig/industrialIndustrial Suit: For Mining
    /obj/item/rig/evaEVA Suit
    /obj/item/rig/ceAdvanced Voidsuit: Technomancer Exultant
    /obj/item/rig/technoTechnomancer RIG
    /obj/item/rig/hazmatHazmat: Moebius Overseer
    /obj/item/rig/medicalMedical
    + /obj/item/rig/industrialIndustrial Suit: For Mining + /obj/item/rig/evaEVA Suit + /obj/item/rig/ceAdvanced Voidsuit: Technomancer Exultant + /obj/item/rig/technoTechnomancer RIG + /obj/item/rig/hazmatHazmat: Moebius Overseer + /obj/item/rig/medicalMedical diff --git a/code/modules/clothing/spacesuits/syndi.html b/code/modules/clothing/spacesuits/syndi.html index 61b51dff79a3..4668d1b0cc9d 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/cooking_with_jane/porting_readme.html b/code/modules/cooking_with_jane/porting_readme.html index 52f72f0093cd..cc1bdab1a4fb 100644 --- a/code/modules/cooking_with_jane/porting_readme.html +++ b/code/modules/cooking_with_jane/porting_readme.html @@ -14,7 +14,7 @@

    code/modules/cooking_with_jane/porting_readme.txt - +

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

    code/modules/cooking_with_jane/porting_readme.txt

    diff --git a/code/modules/core_implant/cruciform/machinery/armaments.html b/code/modules/core_implant/cruciform/machinery/armaments.html index b2b943ca2d92..cc94e5251da6 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 c7838897fc7f..fbe7e8591d9e 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 80912b0b6afb..31f1e3e72d30 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 c582335c55c6..9c3a3d7e9abd 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 00f4d260e62d..8f02008d8742 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 3cf9b8ccf437..4dc60e792e3f 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 808fa5f411fa..f6f1f9495890 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 cb22b531c041..3c8dcebe503f 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 1402f68eacd3..403f62665c8f 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 894ebd74a493..6cde1afa2186 100644 --- a/code/modules/mechs/_mech_defines.html +++ b/code/modules/mechs/_mech_defines.html @@ -14,7 +14,7 @@ — Define Details

    code/modules/mechs/_mech_defines.dm - +

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

    code/modules/mechs/_mech_defines.dm

    EQUIPFLAG_PRETICKIt will have pretick() called on it before the mech checks wheter or not is powered
    EQUIPFLAG_PROCESSAny module with this flag will have their Process() called via exosuit/Life()

    Define Details

    EQUIPFLAG_PRETICK - +

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

    EQUIPFLAG_PROCESS - +

    Any module with this flag will have their Process() called via exosuit/Life()

    EQUIPFLAG_UPDTMOVE - +

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

    MECH_STRAFING_BACK - +

    Can only strafe backwards

    MECH_STRAFING_NONE - +

    Strafing types

    MECH_STRAFING_OMNI - +

    Can strafe in all directions

    diff --git a/code/modules/mechs/equipment/combat.html b/code/modules/mechs/equipment/combat.html index 1bd0468deaf8..85bac99972b2 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 8665cc509b0c..9af0caf42b73 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 7a1c0ce9fcbb..c115bbb915dc 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 ae215cecaba5..01d4a936a06f 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 2453260d7169..ba9fc8cd2042 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 4c477809c6b8..5138ad805fb9 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 cd4de8fe7fe5..d72d2f1faf66 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 4ce73eb5cb66..b0ff3cc02618 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 98f448409094..d9573fbff088 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 46d8fce4f695..00f5960bc5de 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 fe5f16246cf1..220f035f8655 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 ebd5b760483e..4cfde8be9062 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 9ec7f390db06..23abf6f2552d 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 a514ac311e0e..f3abd366aa76 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 e07a15ae71ac..20e5ae319a8e 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 3575a1461e2c..0a82c5210b39 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 cea1311b13df..0a517cbadae5 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 0ea719f93850..5a57b7007a30 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 4984dbdc4ace..5c51afebfd82 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 09ed9852ff02..d399d0dd4341 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 d46db117899e..51bc93d19a75 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 ab823e068f60..8c123fedf61b 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 0217c40e58d8..449f1f792075 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 894c709f9d45..6e8e8fc678cc 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 2d12915153d9..1a93e5e663a3 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 81d24ec42a89..7b02901c8761 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 3a96d848bb9e..112e2d2562a5 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 4b0282ba1943..ba09a0d09349 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 7aad73f660c8..56450563b3ed 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 61107d9de707..617745fce9fb 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 2d2d29c22686..066fdd0b0bb6 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 1f1882883025..aa7af5481e9b 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 70366ba22f79..0b07fbd1081a 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 5234c5ed0eb2..745fd77f7df3 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 7cb34a8d8adf..811f46475d91 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 16911f692fe9..06d9950266f4 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 78e2089ed4eb..ac52017b3d83 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 c162103c0636..72d4c042ca9f 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 0e5911f2e208..1ae83882bd32 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 f9db2a9c079b..e6c0888e6922 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 3e0499b7d4ef..361f751d271c 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 6189302bddcc..c514c982fe91 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 49baed8b6fd6..bd6001ebc193 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 779be01e2ad2..4df8caf6a4a6 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 5f1808e82262..7cd21ad96bea 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 8d4b2ddaa77b..b2ba4f49bc75 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 30c43ca223d5..159a2b369066 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 18d1fc92c79e..22273a4d7ec2 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 c6f30d267683..6cc0d5ed216a 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 9514f2f6adb8..9af8fae4f662 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 a32d561c68f0..c4531553ed2c 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 01f862061fae..f91f0483f121 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 68abc5a12ba3..ab298b563579 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 6bea65c2dda3..68e09310a006 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 8ebc5c63e6a8..143c2ff13a39 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 3962b933fc71..ede636c700c8 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 d505afa6e74d..e0f4fb5d68ed 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 b469a94b8d16..586a9b189a15 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 988e9c87d9e0..a1bded8070ed 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 f624437abd61..cde478b0e62f 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 f256306f79c9..0404145b57d6 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 3a891520e0a0..eee20db618e7 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 d162fe1d15f8..ea08dedbc8d0 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 3a8d0daa642c..8443fb302c20 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 f49a26970b94..7d821c206115 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 1a11ad7712aa..f8281f4b17a4 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 ed11116563e3..071dd741c557 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 4b908074fbb6..38ae874687af 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 f621bd00e411..e3c1aeeca07c 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 03a793bac4eb..e1867f9a703b 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 13e1fb5242bc..21b1039a02c6 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 88f9f0476a31..f674051098db 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 d48bce8c462a..a91305ff5a93 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 675930be7f41..5bd445988aba 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 26e02500ba52..5a0d437b16d7 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 20b8429f21f9..6914cd117b0d 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