diff --git a/code/WorkInProgress/Cael_Aislinn/Tajara/tajaran.dm b/code/WorkInProgress/Cael_Aislinn/Tajara/tajaran.dm index 728ca9f8236..6e2cac4529c 100644 --- a/code/WorkInProgress/Cael_Aislinn/Tajara/tajaran.dm +++ b/code/WorkInProgress/Cael_Aislinn/Tajara/tajaran.dm @@ -624,8 +624,8 @@ /mob/living/carbon/human/tajaran/co2overloadtime = null /mob/living/carbon/human/tajaran/temperature_resistance = T0C+70 -//I just need this for some vars, please don't hurt me. -- Erthilo +/* //This is silly. -- Erthilo /mob/living/carbon/human/tajaran/Emissary/ unacidable = 1 var/aegis = 1 @@ -712,4 +712,5 @@ src.show_message("\red [src]'s eyes open suddenlly.", 3, "\red \"I gave a solemn vow to never die for long.\"", 2) src.heal_overall_damage(9001,9001) src.stat = 0 - aegis = 0 \ No newline at end of file + aegis = 0 +*/ \ No newline at end of file diff --git a/code/game/objects/storage/storage.dm b/code/game/objects/storage/storage.dm index 7a80dbec9ce..a266e6474c0 100644 --- a/code/game/objects/storage/storage.dm +++ b/code/game/objects/storage/storage.dm @@ -176,9 +176,13 @@ src.icon_state = "giftbag2" if (istype(W, /obj/item/weapon/gun/energy/crossbow)) return //STEALTHY - for(var/mob/O in viewers(user, null)) - O.show_message(text("\blue [user] has added [W] to [src]!")) - //Foreach goto(139) + for(var/mob/M in viewers(user, null)) + if (M == user) + user << "\blue You put the [W] into [src]." + else if (M in range(1)) //If someone is standing close enough, they can tell what it is... + M.show_message(text("\blue [user] puts [W] into [src].")) + else if (W.w_class >= 3.0) //Otherwise they can only see large or normal items from a distance... + M.show_message(text("\blue [user] puts [W] into [src].")) return /obj/item/weapon/storage/dropped(mob/user as mob) diff --git a/html/changelog.html b/html/changelog.html index e8b4007cb1c..6ccdcf49e5e 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -47,6 +47,25 @@ Stuff which is in development and not yet visible to players or just code relate should be listed in the changelog upon commit though. Thanks. --> +