mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-03 05:52:17 +00:00
Signalers will now work with the PDA Signalers.
Numpad may once again be used to type numbers and operators. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2539 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -14,26 +14,38 @@
|
||||
/client/North()
|
||||
..()
|
||||
|
||||
|
||||
/client/South()
|
||||
..()
|
||||
|
||||
|
||||
/client/West()
|
||||
..()
|
||||
|
||||
|
||||
/client/East()
|
||||
..()
|
||||
|
||||
|
||||
/client/Northeast()
|
||||
..()
|
||||
swap_hand()
|
||||
return
|
||||
|
||||
|
||||
/client/Southeast()
|
||||
..()
|
||||
attack_self()
|
||||
return
|
||||
|
||||
|
||||
/client/Southwest()
|
||||
..()
|
||||
toggle_throw_mode()
|
||||
return
|
||||
|
||||
|
||||
/client/Northwest()
|
||||
..()
|
||||
drop_item()
|
||||
return
|
||||
|
||||
|
||||
/client/verb/swap_hand()
|
||||
set hidden = 1
|
||||
@@ -41,6 +53,7 @@
|
||||
mob:swap_hand()
|
||||
return
|
||||
|
||||
|
||||
/client/verb/attack_self()
|
||||
set hidden = 1
|
||||
var/obj/item/weapon/W = mob.equipped()
|
||||
@@ -48,6 +61,7 @@
|
||||
W.attack_self(mob)
|
||||
return
|
||||
|
||||
|
||||
/client/verb/toggle_throw_mode()
|
||||
set hidden = 1
|
||||
if(!istype(mob, /mob/living/carbon)) return
|
||||
@@ -55,12 +69,14 @@
|
||||
mob:toggle_throw_mode()
|
||||
return
|
||||
|
||||
|
||||
/client/verb/drop_item()
|
||||
set hidden = 1
|
||||
if(!isrobot(mob))
|
||||
mob.drop_item_v()
|
||||
return
|
||||
|
||||
|
||||
/client/Center()
|
||||
if (isobj(mob.loc))
|
||||
var/obj/O = mob.loc
|
||||
|
||||
Reference in New Issue
Block a user