mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +01:00
* Hard Del Fixes, Ref Tracking Changes
This commit is contained in:
@@ -55,7 +55,7 @@
|
||||
visible_message("[src] begins to overheat!")
|
||||
return
|
||||
var/value_to_add = entry_ports[index].value
|
||||
if(is_proper_datum(value_to_add))
|
||||
if(isdatum(value_to_add))
|
||||
value_to_add = WEAKREF(value_to_add)
|
||||
new_literal[key_ports[index].value] = entry_ports[index].value
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
if(islist(value) && get_list_count(value, max_list_count) >= max_list_count)
|
||||
visible_message("[src] begins to overheat!")
|
||||
return
|
||||
if(is_proper_datum(value))
|
||||
if(isdatum(value))
|
||||
new_literal += WEAKREF(value)
|
||||
else
|
||||
new_literal += list(value)
|
||||
|
||||
Reference in New Issue
Block a user