Fixed a smidgen of derpiness with that last code.

This commit is contained in:
SkyMarshal
2012-03-05 17:22:52 -07:00
parent 43f7487429
commit 3cb0a51b7f
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -210,7 +210,7 @@ MASS SPECTROMETER
for(var/i = 1, i < (stored.len + 1), i++) //Lets see if the object is already in there!
var/list/temp = stored[i]
var/atom/checker = temp[1]
var/atom_checker_scan = (A.original_atom.len ? checker.original_atom[1] == A.original_atom[1] : 0)
var/atom_checker_scan = (A.original_atom ? checker.original_atom[1] == A.original_atom[1] : 0)
if(checker.original_atom[1] == A || atom_checker_scan) //It is! Merge!
merged = 1
var/list/prints = temp[2]