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:
mport2004@gmail.com
2011-11-21 07:25:48 +00:00
parent ab87ae6338
commit 7c8ed7b030
6 changed files with 73 additions and 273 deletions

View File

@@ -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