mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Changes slot number defines from lowercase to all uppercase (#22297)
* undo all of it * flags * back * head/mask * left * right * Cuffs * other name changes * ID and PDA * idk about calling them SLOT_HUD now * glasses, gloves, and shoes, oh my! * the rest * comment
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
/datum/keybinding/human/bag_equip/down(client/C)
|
||||
. = ..()
|
||||
var/mob/living/carbon/human/M = C.mob
|
||||
M.quick_equip_item(slot_back)
|
||||
M.quick_equip_item(SLOT_HUD_BACK)
|
||||
|
||||
/datum/keybinding/human/belt_equip
|
||||
name = "Equip Held Object To Belt"
|
||||
@@ -20,7 +20,7 @@
|
||||
/datum/keybinding/human/belt_equip/down(client/C)
|
||||
. = ..()
|
||||
var/mob/living/carbon/human/M = C.mob
|
||||
M.quick_equip_item(slot_belt)
|
||||
M.quick_equip_item(SLOT_HUD_BELT)
|
||||
|
||||
/datum/keybinding/human/suit_equip
|
||||
name = "Equip Held Object To Suit Storage"
|
||||
@@ -29,7 +29,7 @@
|
||||
/datum/keybinding/human/suit_equip/down(client/C)
|
||||
. = ..()
|
||||
var/mob/living/carbon/human/M = C.mob
|
||||
M.quick_equip_item(slot_s_store)
|
||||
M.quick_equip_item(SLOT_HUD_SUIT_STORE)
|
||||
|
||||
/datum/keybinding/human/toggle_holster
|
||||
name = "Toggle Holster"
|
||||
|
||||
Reference in New Issue
Block a user