Attempt to fix inconsistent indentation?

This commit is contained in:
Rykka
2020-05-23 04:56:42 -04:00
parent eec5d912f7
commit fd45f289d0

View File

@@ -1243,27 +1243,27 @@
clear_fullscreens()
clear_alert("blind")
if (bodytemperature >= species.heat_level_1)
if(bodytemperature >= species.heat_level_1)
bodytemp.icon_state = "temp4"
else if (bodytemperature >= base_temperature + temp_step*3)
else if(bodytemperature >= base_temperature + temp_step*3)
bodytemp.icon_state = "temp3"
else if (bodytemperature >= base_temperature + temp_step*2)
else if(bodytemperature >= base_temperature + temp_step*2)
bodytemp.icon_state = "temp2"
else if (bodytemperature >= base_temperature + temp_step*1)
else if(bodytemperature >= base_temperature + temp_step*1)
bodytemp.icon_state = "temp1"
else
bodytemp.icon_state = "temp0"
else if (bodytemperature < base_temperature)
else if(bodytemperature < base_temperature)
temp_step = (base_temperature - species.cold_level_1)/4
if (bodytemperature <= species.cold_level_1)
if(bodytemperature <= species.cold_level_1)
bodytemp.icon_state = "temp-4"
else if (bodytemperature <= base_temperature - temp_step*3)
else if(bodytemperature <= base_temperature - temp_step*3)
bodytemp.icon_state = "temp-3"
else if (bodytemperature <= base_temperature - temp_step*2)
else if(bodytemperature <= base_temperature - temp_step*2)
bodytemp.icon_state = "temp-2"
else if (bodytemperature <= base_temperature - temp_step*1)
else if(bodytemperature <= base_temperature - temp_step*1)
bodytemp.icon_state = "temp-1"
else
bodytemp.icon_state = "temp0"