diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm index c44df798026..d8c4c69e0ab 100644 --- a/code/__defines/misc.dm +++ b/code/__defines/misc.dm @@ -149,6 +149,7 @@ #define MAT_GLASS "glass" #define MAT_SILVER "silver" #define MAT_GOLD "gold" +#define MAT_URANIUM "uranium" //Did it #define MAT_TITANIUM "titanium" #define MAT_PHORON "phoron" #define MAT_DIAMOND "diamond" diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 4d061899e87..20f5a617cf5 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -395,7 +395,7 @@ return 0 // Do after stuff here - user << "You start to weld the [src].." + user << "You start to weld [src].." playsound(src.loc, WT.usesound, 50, 1) WT.eyecheck(user) busy = 1 diff --git a/code/game/objects/items/weapons/tools/weldingtool.dm b/code/game/objects/items/weapons/tools/weldingtool.dm index 3a09d6611aa..7c2f2ea26fa 100644 --- a/code/game/objects/items/weapons/tools/weldingtool.dm +++ b/code/game/objects/items/weapons/tools/weldingtool.dm @@ -3,7 +3,7 @@ * Welding Tool */ /obj/item/weapon/weldingtool - name = "welding tool" + name = "\improper welding tool" icon = 'icons/obj/tools.dmi' icon_state = "welder" item_state = "welder"