mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 21:10:30 +01:00
Bug fixes (#5290)
Newscaster no longer keep photo in them after you take it out. Fixes #5216 Added missing cameras in the bar. Fixes #5207 Added two emergency O2 wall lockers to the bar and kitchen. Fixes #5241 Fixed reference in red track pants(was referring to blue). Fixes #5276 Beepsky/ED209 now stop moving after they are being disabled. Fixes #5244 Cyborgs can not open/close curtains. Fixes #5284 ED 209 no longer fires from long distance, but gets closer if target is too far away to shoot.
This commit is contained in:
committed by
Werner
parent
4ffe1fb6f9
commit
c1899d967b
@@ -177,7 +177,7 @@
|
||||
pants["blue track pants"] = /obj/item/clothing/under/pants/track/blue
|
||||
pants["green track pants"] = /obj/item/clothing/under/pants/track/green
|
||||
pants["white track pants"] = /obj/item/clothing/under/pants/track/white
|
||||
pants["red track pants"] = /obj/item/clothing/under/pants/track/blue
|
||||
pants["red track pants"] = /obj/item/clothing/under/pants/track/red
|
||||
pants["camo pants"] = /obj/item/clothing/under/pants/camo
|
||||
pants["athletic shorts, black"] = /obj/item/clothing/under/shorts
|
||||
pants["athletic shorts, red"] = /obj/item/clothing/under/shorts/red
|
||||
|
||||
@@ -266,6 +266,9 @@
|
||||
qdel(src)
|
||||
|
||||
/mob/living/bot/secbot/ed209/RangedAttack(var/atom/A)
|
||||
if(!(target in view(7, src)))
|
||||
walk_to(src, target, 6, move_to_delay)
|
||||
return
|
||||
if(last_shot + shot_delay > world.time)
|
||||
src << "You are not ready to fire yet!"
|
||||
return
|
||||
|
||||
@@ -80,6 +80,7 @@
|
||||
|
||||
/mob/living/bot/secbot/turn_off()
|
||||
..()
|
||||
walk_to(src, src, 0, move_to_delay)
|
||||
target = null
|
||||
frustration = 0
|
||||
mode = SECBOT_IDLE
|
||||
|
||||
Reference in New Issue
Block a user