diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index 683621e5bf5..6db9606be7c 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -574,7 +574,7 @@ desc = "Truly, the tool of a madman. Who would possibly think to fight fire with an axe?" force = 5 w_class = 4.0 - //flags = ONBACK + flags = ONBACK twohanded = 1 force_unwielded = 5 force_wielded = 30 diff --git a/code/game/objects/items/item.dm b/code/game/objects/items/item.dm index c8d5e170840..e18f2304f68 100644 --- a/code/game/objects/items/item.dm +++ b/code/game/objects/items/item.dm @@ -203,7 +203,7 @@ force = force_wielded src.name = "[initial(name)] (Wielded)" src.update_icon() //If needed by the particular item - user << "\blue You grab the [initial(name)] with both hands, It is ready for use." + user << "\blue You grab the [initial(name)] with both hands." var/obj/item/weapon/offhand/O = new /obj/item/weapon/offhand(user) ////Let's reserve his other hand~ O.name = text("[initial(src.name)] - Offhand") diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 9ebb7044094..cd307b3212f 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -432,6 +432,9 @@ return if (!( W.flags & ONBACK )) return + if(W.twohanded && W.wielded) + usr << "Unwield the [initial(W.name)] first!" + return u_equip(W) back = W W.equipped(src, text) diff --git a/icons/changelog.html b/icons/changelog.html index c76c8a48563..d0501a824d5 100644 --- a/icons/changelog.html +++ b/icons/changelog.html @@ -54,17 +54,19 @@ Stuff which is in development and not yet visible to players or just code relate (ie. code improvements for expandability, etc.) should not be listed here. They should be listed in the changelog upon commit tho. Thanks. --> + 15 October 2011, White Cane Safety Day: - -15 October 2011: -
  • Doohl updated:
    • New hairstyles! YOU never asked for this!