From ff91d4818a02448e8560674daef4c83c6d6b8092 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Sun, 1 Jan 2017 21:53:31 -0800 Subject: [PATCH] Picky nits --- code/game/atoms_movable.dm | 6 +++--- code/game/objects/buckling.dm | 2 +- code/modules/mob/pulling.dm | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index d3c7b9765cb..107e8aee518 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -149,11 +149,11 @@ /mob/living/forceMove(atom/destination) if(buckled) - addtimer(src, "checkBuckled", 1, TRUE) + addtimer(src, "check_buckled", 1, TRUE) if(buckled_mob) - addtimer(buckled_mob, "checkBuckled", 1, TRUE) + addtimer(buckled_mob, "check_buckled", 1, TRUE) if(pulling) - addtimer(src, "checkPull", 1, TRUE) + addtimer(src, "check_pull", 1, TRUE) . = ..() if(client) reset_perspective(destination) diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm index e3506dfaa33..ea692339ac3 100644 --- a/code/game/objects/buckling.dm +++ b/code/game/objects/buckling.dm @@ -114,6 +114,6 @@ add_fingerprint(user) return M -/mob/living/proc/checkBuckled() +/mob/living/proc/check_buckled() if(buckled && !(buckled in loc)) buckled.unbuckle_mob(src, force=1) diff --git a/code/modules/mob/pulling.dm b/code/modules/mob/pulling.dm index 062688fd791..6a6a66675b0 100644 --- a/code/modules/mob/pulling.dm +++ b/code/modules/mob/pulling.dm @@ -36,6 +36,6 @@ if(pullin) pullin.update_icon(src) -/mob/living/proc/checkPull() +/mob/living/proc/check_pull() if(pulling && !(pulling in orange(1))) stop_pulling()