Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 9ca8836

Browse files
authored
A lot of things can now be done while lying down (#22318)
* typo and crawling * Update living.dm
1 parent 6bbd4c3 commit 9ca8836

File tree

19 files changed

+30
-25
lines changed

19 files changed

+30
-25
lines changed

code/__DEFINES/misc.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#define MANIFEST_ERROR_ITEM 4
5959

6060
#define BE_CLOSE TRUE //in the case of a silicon, to select if they need to be next to the atom
61-
#define NO_DEXTERY TRUE //if other mobs (monkeys, aliens, etc) can use this
61+
#define NO_DEXTERITY TRUE //if other mobs (monkeys, aliens, etc) can use this
6262
#define NO_TK TRUE
6363
//used by canUseTopic()
6464

code/datums/components/rotation.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
after_rotation.Invoke(user,rotation_type)
129129

130130
/datum/component/simple_rotation/proc/default_can_user_rotate(mob/living/user, rotation_type)
131-
if(!istype(user) || !user.canUseTopic(parent, BE_CLOSE, NO_DEXTERY))
131+
if(!istype(user) || !user.canUseTopic(parent, BE_CLOSE, NO_DEXTERITY))
132132
return FALSE
133133
return TRUE
134134

code/game/machinery/computer/camera.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
/obj/machinery/computer/security/ui_interact(mob/user, datum/tgui/ui)
5252
. = ..()
53-
if(!user.canUseTopic(src, no_dextery = TRUE)) //prevents monkeys from using camera consoles
53+
if(!user.canUseTopic(src, no_dexterity = TRUE)) //prevents monkeys from using camera consoles
5454
return
5555
// Update UI
5656
ui = SStgui.try_update_ui(user, src, ui)

code/game/objects/items/tanks/tank_types.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/// Allows carbon to toggle internals via AltClick of the equipped tank.
1111
/obj/item/tank/internals/AltClick(mob/user)
1212
..()
13-
if((loc == user) && user.canUseTopic(src, be_close = TRUE, no_dextery = TRUE, no_tk = TRUE))
13+
if((loc == user) && user.canUseTopic(src, be_close = TRUE, no_dexterity = TRUE, no_tk = TRUE))
1414
toggle_internals(user)
1515

1616
/obj/item/tank/internals/examine(mob/user)

code/game/objects/objs.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316

317317
/obj/AltClick(mob/user)
318318
. = ..()
319-
if(unique_reskin && !current_skin && user.canUseTopic(src, BE_CLOSE, NO_DEXTERY))
319+
if(unique_reskin && !current_skin && user.canUseTopic(src, BE_CLOSE, NO_DEXTERITY))
320320
reskin_obj(user)
321321

322322
/obj/proc/reskin_obj(mob/M)

code/modules/antagonists/clockcult/clock_structures/mania_motor.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
. = ..()
3535
if(.)
3636
return
37-
if(user.canUseTopic(src, !issilicon(user), NO_DEXTERY) && is_servant_of_ratvar(user))
37+
if(user.canUseTopic(src, !issilicon(user), NO_DEXTERITY) && is_servant_of_ratvar(user))
3838
if(!can_access_clockwork_power(src, mania_cost))
3939
to_chat(user, span_warning("[src] needs more power to function!"))
4040
return 0

code/modules/antagonists/devil/true_devil/_true_devil.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
visible_message(span_warning("[src] easily breaks out of [p_their()] handcuffs!"), \
9494
span_notice("With just a thought your handcuffs fall off."))
9595

96-
/mob/living/carbon/true_devil/canUseTopic(atom/movable/M, be_close=FALSE, no_dextery=FALSE, no_tk=FALSE)
96+
/mob/living/carbon/true_devil/canUseTopic(atom/movable/M, be_close=FALSE, no_dexterity=FALSE, no_tk=FALSE)
9797
if(incapacitated())
9898
to_chat(src, span_warning("You can't do that right now!"))
9999
return FALSE

code/modules/antagonists/revenant/revenant.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
var/datum/atom_hud/H = GLOB.huds[DATA_HUD_MEDICAL_ADVANCED] //yogs medhud
9595
H.show_to(src)
9696

97-
/mob/living/simple_animal/revenant/canUseTopic(atom/movable/M, be_close=FALSE, no_dextery=FALSE, no_tk=FALSE)
97+
/mob/living/simple_animal/revenant/canUseTopic(atom/movable/M, be_close=FALSE, no_dexterity=FALSE, no_tk=FALSE)
9898
return FALSE
9999

100100
/mob/living/simple_animal/revenant/proc/random_revenant_name()

code/modules/mob/dead/observer/observer.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
811811

812812
update_appearance()
813813

814-
/mob/dead/observer/canUseTopic(atom/movable/M, be_close=FALSE, no_dextery=FALSE, no_tk=FALSE)
814+
/mob/dead/observer/canUseTopic(atom/movable/M, be_close=FALSE, no_dexterity=FALSE, no_tk=FALSE)
815815
return IsAdminGhost(usr)
816816

817817
/mob/dead/observer/is_literate()

code/modules/mob/living/carbon/carbon.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
/mob/living/carbon/Topic(href, href_list)
220220
..()
221221
// Embed Stuff
222-
if(href_list["embedded_object"] && usr.canUseTopic(src, BE_CLOSE, NO_DEXTERY))
222+
if(href_list["embedded_object"] && usr.canUseTopic(src, BE_CLOSE, NO_DEXTERITY))
223223
var/obj/item/bodypart/L = locate(href_list["embedded_limb"]) in bodyparts
224224
if(!L)
225225
return

0 commit comments

Comments
 (0)