mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 09:03:23 +01:00
Merge pull request #8573 from uraniummeltdown/drone
Makes Drones A Small Mob
This commit is contained in:
@@ -94,12 +94,8 @@
|
||||
M.last_bumped = world.time
|
||||
if(M.restrained() && !check_access(null))
|
||||
return
|
||||
if(M.mob_size > MOB_SIZE_SMALL)
|
||||
if(M.mob_size > MOB_SIZE_TINY)
|
||||
bumpopen(M)
|
||||
else if(ispet(M))
|
||||
var/mob/living/simple_animal/A = AM
|
||||
if(A.collar)
|
||||
bumpopen(M)
|
||||
return
|
||||
|
||||
if(ismecha(AM))
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
if(!ticker)
|
||||
return
|
||||
var/mob/living/M = AM
|
||||
if(!M.restrained() && M.mob_size > MOB_SIZE_SMALL && (!(isrobot(M) && M.stat)))
|
||||
if(!M.restrained() && M.mob_size > MOB_SIZE_TINY && (!(isrobot(M) && M.stat)))
|
||||
bumpopen(M)
|
||||
|
||||
/obj/machinery/door/window/bumpopen(mob/user)
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
req_access = list(access_engine, access_robotics)
|
||||
ventcrawler = 2
|
||||
magpulse = 1
|
||||
|
||||
mob_size = MOB_SIZE_SMALL
|
||||
default_language = "Drone"
|
||||
|
||||
// We need to keep track of a few module items so we don't need to do list operations
|
||||
|
||||
Reference in New Issue
Block a user