Merge pull request #41459 from ShizCalev/error-data-corruption

Fixes a bunch of missing symbols
This commit is contained in:
oranges
2018-11-14 22:16:51 +13:00
committed by GitHub
7 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -456,9 +456,9 @@
connected_tracker.unset_control()
if(track==1 && trackrate) //manual tracking and set a rotation speed
if(nexttime <= world.time) //every time we need to increase/decrease the angle by 1...
if(nexttime <= world.time) //every time we need to increase/decrease the angle by 1°...
targetdir = (targetdir + trackrate/abs(trackrate) + 360) % 360 //... do it
nexttime += 36000/abs(trackrate) //reset the counter for the next 1
nexttime += 36000/abs(trackrate) //reset the counter for the next 1°
//rotates the panel to the passed angle
/obj/machinery/power/solar_control/proc/set_panels(currentdir)