From 078e4a09b1d8fd7806690ba272028cf3dd449a1e Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Thu, 16 Nov 2017 16:35:32 -0800 Subject: [PATCH] Grammar fixes on trig circuits (#32791) * Grammar fixes on trig circuits * Update trig.dm --- .../integrated_electronics/subtypes/trig.dm | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/modules/integrated_electronics/subtypes/trig.dm b/code/modules/integrated_electronics/subtypes/trig.dm index 8b789ed480..1d7f660bd4 100644 --- a/code/modules/integrated_electronics/subtypes/trig.dm +++ b/code/modules/integrated_electronics/subtypes/trig.dm @@ -21,7 +21,7 @@ /obj/item/integrated_circuit/trig/sine name = "sin circuit" - desc = "Has nothing to do with evil, unless you consider trigonometry to be evil. Outputs the sine of A." + desc = "Only evil if you're allergic to math. Takes a degree and outputs the sine of said degree." icon_state = "sine" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -41,7 +41,7 @@ /obj/item/integrated_circuit/trig/cosine name = "cos circuit" - desc = "Outputs the cosine of A." + desc = "Takes a degree and outputs the cosine of said degree." icon_state = "cosine" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -61,7 +61,7 @@ /obj/item/integrated_circuit/trig/tangent name = "tan circuit" - desc = "Outputs the tangent of A. Guaranteed to not go on a tangent about its existance." + desc = "Takes a degree and outputs the tangent of said degree." icon_state = "tangent" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -80,8 +80,8 @@ // Cosecant // /obj/item/integrated_circuit/trig/cosecant - name = "csc circuit" - desc = "Outputs the cosecant of A." + name = "cosecant (CSC) circuit" + desc = "Takes a degree and outputs the cosecant of said degree." icon_state = "cosecant" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -100,8 +100,8 @@ // Secant // /obj/item/integrated_circuit/trig/secant - name = "sec circuit" - desc = "Outputs the secant of A. Has nothing to do with the security department." + name = "secant (SEC) circuit" + desc = "Takes a degree and outputs the secant of said degree." icon_state = "secant" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -120,8 +120,8 @@ // Cotangent // /obj/item/integrated_circuit/trig/cotangent - name = "cot circuit" - desc = "Outputs the cotangent of A." + name = "cotangent (COT) circuit" + desc = "Takes a degree and outputs the cotangent of said degree." icon_state = "cotangent" inputs = list("A" = IC_PINTYPE_NUMBER) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH @@ -135,4 +135,4 @@ set_pin_data(IC_OUTPUT, 1, result) push_data() - activate_pin(2) \ No newline at end of file + activate_pin(2)