Update v0.3

- Lays out structure for item-based modular computers (Tablets)
- Changes how icons for modular computers will be handled.
- NTNet adjustments
- Few fixes
This commit is contained in:
Atlantis
2015-07-26 21:54:14 +02:00
parent d5b6585f2e
commit dacf0568f3
20 changed files with 612 additions and 137 deletions

View File

@@ -20,6 +20,8 @@
/datum/computer_hardware/network_card/Destroy()
if(holder && (holder.network_card == src))
holder.network_card = null
if(holder2 && (holder2.network_card == src))
holder2.network_card = null
holder = null
..()
@@ -43,4 +45,9 @@
if(long_range) // Computer is not on station, but it has upgraded network card. Low signal.
return 1
return 0 // Computer is not on station and does not have upgraded network card. No signal.
return 0 // Computer is not on station and does not have upgraded network card. No signal.
/datum/computer_hardware/network_card/Destroy()
if(holder && (holder.network_card == src))
holder.network_card = null
..()