From 5fd2b4485ef495dfd6a53d5b4e11695988b23009 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Sun, 17 Nov 2013 15:37:07 +0000 Subject: [PATCH 1/4] Removed the angle offset. Made bluespace crystals a little easier to research. --- code/modules/telesci/telesci_computer.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm index 85232a41068..3ba07f6c007 100644 --- a/code/modules/telesci/telesci_computer.dm +++ b/code/modules/telesci/telesci_computer.dm @@ -12,7 +12,7 @@ var/z_co = 1 var/power_off var/rotation_off - var/angle_off + //var/angle_off var/rotation = 0 var/angle = 45 @@ -152,7 +152,7 @@ var/truePower = Clamp(power + power_off, 1, 1000) var/trueRotation = rotation + rotation_off - var/trueAngle = Clamp(angle + angle_off, 1, 90) + var/trueAngle = Clamp(angle, 1, 90) var/datum/projectile_data/proj_data = projectile_trajectory(telepad.x, telepad.y, trueRotation, trueAngle, truePower) last_tele_data = proj_data @@ -304,6 +304,6 @@ /obj/machinery/computer/telescience/proc/recalibrate() teles_left = rand(30, 40) - angle_off = rand(-25, 25) + //angle_off = rand(-25, 25) power_off = rand(-4, 0) rotation_off = rand(-10, 10) \ No newline at end of file From 36f6ce77b72a71ea915a89eef10c6a1f8e2c59e1 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Sun, 17 Nov 2013 15:38:28 +0000 Subject: [PATCH 2/4] Forgot a file. --- code/modules/research/designs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 6177fbde9f9..fbae5f41ff2 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -1578,9 +1578,9 @@ datum/design/bluespace_crystal name = "Artificial Bluespace Crystal" desc = "A small blue crystal with mystical properties." id = "bluespace_crystal" - req_tech = list("bluespace" = 5, "materials" = 7) + req_tech = list("bluespace" = 4, "materials" = 6) build_type = PROTOLATHE - materials = list("$gold" = 1500, "$diamond" = 3000, "$plasma" = 1500) + materials = list("$diamond" = 1500, "$plasma" = 1500) reliability_base = 100 build_path = "/obj/item/bluespace_crystal/artificial" From fc49fda5e5479086b7736ce1304a6d01018daeb6 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Sun, 17 Nov 2013 19:25:14 +0000 Subject: [PATCH 3/4] Grammar fixes. --- code/modules/telesci/telesci_computer.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm index 3ba07f6c007..e1682cfbbfc 100644 --- a/code/modules/telesci/telesci_computer.dm +++ b/code/modules/telesci/telesci_computer.dm @@ -36,7 +36,7 @@ /obj/machinery/computer/telescience/examine() ..() - usr << "There are [crystals.len] bluespace crystals in the crystal ports." + usr << "There are [crystals.len ? crystals.len : "no"] bluespace crystals in the crystal slots." /obj/machinery/computer/telescience/initialize() ..() @@ -66,12 +66,12 @@ /obj/machinery/computer/telescience/attackby(obj/item/W, mob/user) if(istype(W, /obj/item/bluespace_crystal)) if(crystals.len >= power_options.len) - user << "There are not enough crystal ports." + user << "There are not enough crystal slots." return user.drop_item() crystals += W W.loc = null - user.visible_message("[user] inserts a [W] into the [src]'s crystal port.") + user.visible_message("[user] inserts [W] into \the [src]'s crystal slot.") else ..() From 602a2772d2633db443e11e3603b973cabe359237 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Sun, 17 Nov 2013 19:35:04 +0000 Subject: [PATCH 4/4] Another grammar thing. --- code/modules/reagents/Chemistry-Recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 49038693074..8b2b69a1bd9 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -1480,7 +1480,7 @@ datum feedback_add_details("slime_cores_used","[replacetext(name," ","_")]") if(holder.my_atom) var/obj/item/bluespace_crystal/BC = new(get_turf(holder.my_atom)) - BC.visible_message("The [BC] appears out of thin air!") + BC.visible_message("The [BC.name] appears out of thin air!") //Cerulean