mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-20 19:26:54 +01:00
# About The Pull Request Changes all Update_Icons.dm names to their respected pathing groups to help with clarification. ## Why It's Good For The Game I personally think this will help with clarification on which Update_Icons.dm they represent as we have quite a few already. ## A Port? Renames update_icons.dm (#51067) - TG Station ## Pre-Merge Checklist - [ ] You tested this on a local server. - [ ] This code did not runtime during testing. - [ ] You documented all of your changes. ## Changelog 🆑 code: Small changes to naming. /🆑 <!-- Both 🆑's are required for the changelog to work! You can put your name to the right of the first 🆑 if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
93 lines
1.4 KiB
Plaintext
93 lines
1.4 KiB
Plaintext
//Most of these are defined at this level to reduce on checks elsewhere in the code.
|
|
//Having them here also makes for a nice reference list of the various overlay-updating procs available
|
|
|
|
/mob/proc/regenerate_icons() //TODO: phase this out completely if possible
|
|
return
|
|
|
|
/mob/proc/update_icons()
|
|
return
|
|
|
|
/mob/proc/update_transform()
|
|
return
|
|
|
|
/mob/proc/update_inv_handcuffed()
|
|
return
|
|
|
|
/mob/proc/update_inv_legcuffed()
|
|
return
|
|
|
|
/mob/proc/update_inv_back()
|
|
return
|
|
|
|
/mob/proc/update_inv_hands()
|
|
return
|
|
|
|
/mob/proc/update_inv_wear_mask()
|
|
return
|
|
|
|
/mob/proc/update_inv_neck()
|
|
return
|
|
|
|
/mob/proc/update_inv_wear_suit()
|
|
return
|
|
|
|
/mob/proc/update_inv_w_uniform()
|
|
return
|
|
|
|
//skyrat edit
|
|
/mob/proc/update_inv_w_underwear()
|
|
return
|
|
|
|
/mob/proc/update_inv_w_socks()
|
|
return
|
|
|
|
/mob/proc/update_inv_w_shirt()
|
|
return
|
|
|
|
/mob/proc/update_inv_wrists()
|
|
return
|
|
//
|
|
|
|
/mob/proc/update_inv_belt()
|
|
return
|
|
|
|
/mob/proc/update_inv_head()
|
|
return
|
|
|
|
/mob/proc/update_body()
|
|
return
|
|
|
|
/mob/proc/update_hair()
|
|
return
|
|
|
|
/mob/proc/update_fire()
|
|
return
|
|
|
|
/mob/proc/update_inv_gloves()
|
|
return
|
|
|
|
/mob/proc/update_inv_wear_id()
|
|
return
|
|
|
|
/mob/proc/update_inv_shoes()
|
|
return
|
|
|
|
/mob/proc/update_inv_glasses()
|
|
return
|
|
|
|
/mob/proc/update_inv_s_store()
|
|
return
|
|
|
|
/mob/proc/update_inv_pockets()
|
|
return
|
|
|
|
//skyrat edit
|
|
/mob/proc/update_inv_ears()
|
|
return
|
|
|
|
/mob/proc/update_inv_ears_extra()
|
|
return
|
|
//
|
|
/mob/proc/update_antag_overlays()
|
|
return
|