Revert "isrobot() fix"

This reverts commit 61c0eaa4a3.
This commit is contained in:
Atlantis
2015-05-20 12:18:23 +02:00
parent 61c0eaa4a3
commit 5592534ecc
2 changed files with 3 additions and 6 deletions

View File

@@ -47,7 +47,7 @@
user << "Access Denied. This robot is not linked to you."
return
// Cyborgs may blow up themselves via the console
if(isrobot(user) && user != target)
if(user.isRobot() && user != target)
user << "Access Denied."
return
var/choice = input("Really detonate [target.name]?") in list ("Yes", "No")
@@ -79,7 +79,7 @@
user << "Access Denied. This robot is not linked to you."
return
if(isrobot(user))
if(user.isRobot())
user << "Access Denied."
return