Fixed some quirks with var standardization, fixed compile error #1190.

Signed-off-by: Mloc <colmohici@gmail.com>
This commit is contained in:
Mloc
2012-05-30 12:07:13 +01:00
parent fbb67b2e42
commit 66f633edc0
6 changed files with 8 additions and 7 deletions

View File

@@ -1202,6 +1202,7 @@
#include "code\WorkInProgress\virus2\monkeydispensor.dm" #include "code\WorkInProgress\virus2\monkeydispensor.dm"
#include "code\WorkInProgress\virus2\Prob.dm" #include "code\WorkInProgress\virus2\Prob.dm"
#include "code\WorkInProgress\Wrongnumber\weldbackpack.dm" #include "code\WorkInProgress\Wrongnumber\weldbackpack.dm"
#include "code\ZAS\Airflow.dm"
#include "code\ZAS\Connection.dm" #include "code\ZAS\Connection.dm"
#include "code\ZAS\Creation.dm" #include "code\ZAS\Creation.dm"
#include "code\ZAS\Definition.dm" #include "code\ZAS\Definition.dm"

View File

@@ -6,7 +6,7 @@
var/screen = 0 // the screen number: var/screen = 0 // the screen number:
var/list/servers = list() // the servers located by the computer var/list/servers = list() // the servers located by the computer
var/var/obj/machinery/telecomms/server/SelectedServer var/obj/machinery/telecomms/server/SelectedServer
var/network = "NULL" // the network to probe var/network = "NULL" // the network to probe
var/temp = "" // temporary feedback messages var/temp = "" // temporary feedback messages

View File

@@ -13,7 +13,7 @@
var/screen = 0 // the screen number: var/screen = 0 // the screen number:
var/list/machines = list() // the machines located by the computer var/list/machines = list() // the machines located by the computer
var/var/obj/machinery/telecomms/SelectedMachine var/obj/machinery/telecomms/SelectedMachine
var/network = "NULL" // the network to probe var/network = "NULL" // the network to probe

View File

@@ -281,7 +281,7 @@ datum
lowertemp.temperature = max( min(lowertemp.temperature-2000,lowertemp.temperature / 2) ,0) lowertemp.temperature = max( min(lowertemp.temperature-2000,lowertemp.temperature / 2) ,0)
lowertemp.react() lowertemp.react()
T.assume_air(lowertemp) T.assume_air(lowertemp)
T.apply_fire_protection() //T.apply_fire_protection()
del(hotspot) del(hotspot)
if(istype(O,/obj/item/weapon/reagent_containers/food/snacks/monkeycube)) if(istype(O,/obj/item/weapon/reagent_containers/food/snacks/monkeycube))
var/obj/item/weapon/reagent_containers/food/snacks/monkeycube/cube = O var/obj/item/weapon/reagent_containers/food/snacks/monkeycube/cube = O

View File

@@ -225,7 +225,7 @@
if(mob.stat==2) return if(mob.stat==2) return
if(isAI(mob)) return AIMove(n,direct,mob) if(isAI(mob)) return AIMove(n,direct,mob)
if(mob.monkeyizing) return //This is sota the goto stop mobs from moving var
if(mob.incorporeal_move)//Move though walls if(mob.incorporeal_move)//Move though walls
Process_Incorpmove(direct) Process_Incorpmove(direct)

View File

@@ -64,9 +64,9 @@
var/list/datum/organ/external/children var/list/datum/organ/external/children
var/damage_msg = "\red You feel a intense pain" var/damage_msg = "\red You feel a intense pain"
var/var/open = 0 var/open = 0
var/var/stage = 0 var/stage = 0
var/var/wound = 0 var/wound = 0
New(mob/living/carbon/H) New(mob/living/carbon/H)
..(H) ..(H)