From c6d94edb843425c92beee5b0e8c90a16ada0a9ca Mon Sep 17 00:00:00 2001 From: "petethegoat@gmail.com" Date: Sat, 3 Dec 2011 17:26:16 +0000 Subject: [PATCH] Fixed up some of the APC construction/deconstruction messages. Changed the popcorn sprite to one that doesn't suck, by Cheridan. Updated dat changelog. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2596 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/power/apc.dm | 18 +++++++++--------- html/changelog.html | 17 ++++++++++++++++- icons/obj/food.dmi | Bin 77243 -> 76738 bytes icons/obj/trash.dmi | Bin 3762 -> 3849 bytes 4 files changed, 25 insertions(+), 10 deletions(-) diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index c95aaf65bc5..28ca1fd0814 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -219,8 +219,8 @@ if ((stat & BROKEN) || malfhack) user.visible_message(\ "\red [user.name] has broken the power control board inside [src.name]!",\ - "You broke the charred power control board and remove remains.", - "You hear crack") + "You broke the charred power control board and remove the remains.", + "You hear a crack!") //ticker.mode:apcs-- //XSI said no and I agreed. -rastaf0 else user.visible_message(\ @@ -274,7 +274,7 @@ return updateicon() else if(emagged || malfhack) - user << "The interface is broken" + user << "The interface is broken." else wiresexposed = !wiresexposed user << "The wires have been [wiresexposed ? "exposed" : "unexposed"]" @@ -315,7 +315,7 @@ user << "You fail to [ locked ? "unlock" : "lock"] the APC interface." else if (istype(W, /obj/item/weapon/cable_coil) && !terminal && opened && has_electronics!=2) if (src.loc:intact) - user << "\red You must remove the floor plating first." + user << "\red You must remove the floor plating in front of the APC first." return var/obj/item/weapon/cable_coil/C = W if(C.amount < 10) @@ -339,7 +339,7 @@ terminal.connect_to_network() else if (istype(W, /obj/item/weapon/wirecutters) && terminal && opened && has_electronics!=2) if (src.loc:intact) - user << "\red You must remove the floor plating first." + user << "\red You must remove the floor plating in front of the APC first." return user << "You begin to cut cables..." playsound(src.loc, 'Deconstruct.ogg', 50, 1) @@ -378,7 +378,7 @@ new /obj/item/stack/sheet/metal(loc) user.visible_message(\ "\red [src] has been cut apart by [user.name] with the weldingtool.",\ - "You disassembled brocken APC frame.",\ + "You disassembled the broken APC frame.",\ "\red You hear welding.") else new /obj/item/apc_frame(loc) @@ -394,13 +394,13 @@ if (opened==2) opened = 1 user.visible_message(\ - "\red [user.name] has replaced the damaged APC frontal panel with new one.",\ - "You replace the damaged APC frontal panel with new one.") + "\red [user.name] has replaced the damaged APC frontal panel with a new one.",\ + "You replace the damaged APC frontal panel with a new one.") del(W) updateicon() else if (istype(W, /obj/item/apc_frame) && opened && ((stat & BROKEN) || malfhack)) if (has_electronics) - user << "You cannot repair this heavy damaged APC until broken electronics stills inside." + user << "You cannot repair this APC until you remove the electronics still inside." return user << "You begin to replace the damaged APC frame..." if(do_after(user, 50)) diff --git a/html/changelog.html b/html/changelog.html index ab9d1a0d9bc..45c2582e979 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -54,6 +54,22 @@ 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. --> +3 December 2011 +
    +
  • Petethegoat updated: +
      +
    • Fixed all known vending machine issues.
    • +
    • Fixed a minor visual bug with emagged lockers.
    • +
    • Clarified some of the APC construction/deconstruction messages.
    • +
    +
  • +
  • Numbers updated: +
      +
    • Potency variations tipped in favour of bigger changes over smaller periods of time.
    • +
    +
  • +
+ 30 November 2011