diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm index c7ffbd572e..3898b48d47 100644 --- a/code/game/objects/items/weapons/cards_ids.dm +++ b/code/game/objects/items/weapons/cards_ids.dm @@ -15,7 +15,8 @@ name = "card" desc = "Does card things." icon = 'icons/obj/card.dmi' - w_class = 1.0 + w_class = 1 + slot_flags = SLOT_EARS var/associated_account_number = 0 var/list/files = list( ) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index e197939d1b..606c389ffa 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -508,9 +508,14 @@ /mob/new_player/is_ready() return ready && ..() +// Prevents lobby players from seeing say, even with ghostears /mob/new_player/hear_say(var/message, var/verb = "says", var/datum/language/language = null, var/alt_name = "",var/italics = 0, var/mob/speaker = null) return +// Prevents lobby players from seeing emotes, even with ghosteyes +/mob/new_player/show_message(msg, type, alt, alt_type) + return + /mob/new_player/hear_radio() return diff --git a/code/modules/projectiles/guns/projectile/pistol.dm b/code/modules/projectiles/guns/projectile/pistol.dm index 9caf66af4b..15471da2a2 100644 --- a/code/modules/projectiles/guns/projectile/pistol.dm +++ b/code/modules/projectiles/guns/projectile/pistol.dm @@ -124,6 +124,13 @@ magazine_type = /obj/item/ammo_magazine/a50 allowed_magazines = list(/obj/item/ammo_magazine/a50) +/obj/item/weapon/gun/projectile/deagle/update_icon() + ..() + if(ammo_magazine) + icon_state = "[initial(icon_state)]" + else + icon_state = "[initial(icon_state)]-e" + /obj/item/weapon/gun/projectile/deagle/gold desc = "A gold plated gun folded over a million times by superior martian gunsmiths. Uses .50 AE rounds." icon_state = "deagleg" diff --git a/html/changelog.html b/html/changelog.html index 1723a560d0..d292d520ff 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -53,6 +53,40 @@ -->
+

14 June 2016

+

Arokha updated:

+ +

Datraen updated:

+ +

GinjaNinja32 updated:

+ +

Yoshax updated:

+ +

08 June 2016

Yoshax updated: