From 7ae3cb0bb14ef5fc30c2c48f25be71c1413d788b Mon Sep 17 00:00:00 2001 From: monster860 Date: Thu, 16 Jun 2016 03:47:39 -0400 Subject: [PATCH] Rermove "100" from the list of power options in telesci (#4671) --- code/modules/telesci/telesci_computer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm index 2640b61bd33..b542f968516 100644 --- a/code/modules/telesci/telesci_computer.dm +++ b/code/modules/telesci/telesci_computer.dm @@ -24,7 +24,7 @@ // Based on the power used var/teleport_cooldown = 0 // every index requires a bluespace crystal - var/list/power_options = list(5, 10, 20, 25, 30, 40, 50, 80, 100) + var/list/power_options = list(5, 10, 20, 25, 30, 40, 50, 80) var/teleporting = 0 var/starting_crystals = 0 var/max_crystals = 4 @@ -396,4 +396,4 @@ teles_left = rand(30, 40) //angle_off = rand(-25, 25) power_off = rand(-4, 0) - rotation_off = rand(-10, 10) \ No newline at end of file + rotation_off = rand(-10, 10)