mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 20:56:47 +01:00
followup
This commit is contained in:
@@ -21,3 +21,43 @@
|
||||
var/mob/M = user.mob
|
||||
M.tilt_left()
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_north
|
||||
hotkey_keys = list("CtrlShiftW", "CtrlShiftNorth")
|
||||
name = "pixel_shift_north"
|
||||
full_name = "Pixel Shift North"
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_north/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.pixel_shift(NORTH)
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_east
|
||||
hotkey_keys = list("CtrlShiftD", "CtrlShiftEast")
|
||||
name = "pixel_shift_east"
|
||||
full_name = "Pixel Shift East"
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_east/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.pixel_shift(EAST)
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_south
|
||||
hotkey_keys = list("CtrlShiftS", "CtrlShiftSouth")
|
||||
name = "pixel_shift_south"
|
||||
full_name = "Pixel Shift South"
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_south/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.pixel_shift(SOUTH)
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_west
|
||||
hotkey_keys = list("CtrlShiftA", "CtrlShiftWest")
|
||||
name = "pixel_shift_west"
|
||||
full_name = "Pixel Shift West"
|
||||
|
||||
/datum/keybinding/mob/pixel_shift/shift_west/down(client/user)
|
||||
var/mob/M = user.mob
|
||||
M.pixel_shift(WEST)
|
||||
return TRUE
|
||||
|
||||
Reference in New Issue
Block a user