diff --git a/code/ATMOSPHERICS/atmospherics.dm b/code/ATMOSPHERICS/atmospherics.dm index 41f2276b61f..6b75c0481b0 100644 --- a/code/ATMOSPHERICS/atmospherics.dm +++ b/code/ATMOSPHERICS/atmospherics.dm @@ -86,7 +86,7 @@ Pipelines + Other Objects -> Pipe network var/datum/gas_mixture/int_air = return_air() var/datum/gas_mixture/env_air = loc.return_air() if ((int_air.return_pressure()-env_air.return_pressure()) > 2*ONE_ATMOSPHERE) - user << "You cannot unwrench this [src], it is too exerted due to internal pressure." + user << "You cannot unwrench [src], it is too exerted due to internal pressure." add_fingerprint(user) return 1 playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index e8ac2fe055b..4a9e05ee11e 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -494,6 +494,7 @@ obj/mecha/proc/can_use(mob/user) /obj/mecha/attack_animal(mob/living/simple_animal/user as mob) src.log_message("Attack by simple animal. Attacker - [user].",1) + user.changeNext_move(CLICK_CD_MELEE) if(user.melee_damage_upper == 0) user.emote("[user.friendly] [src]") else diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index 9e0c0f08e7f..4c773abce50 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -1,9 +1,10 @@ /mob/living/silicon/pai name = "pAI" icon = 'icons/obj/status_display.dmi' //invisibility! - mouse_opacity + mouse_opacity = 0 density = 0 mob_size = 0 + invisibility = 101 var/network = "SS13" var/obj/machinery/camera/current = null diff --git a/icons/mecha/mecha.dmi b/icons/mecha/mecha.dmi index c9e3455fa55..c4eb2e86dca 100644 Binary files a/icons/mecha/mecha.dmi and b/icons/mecha/mecha.dmi differ