mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 13:39:16 +01:00
Fix Runtime in areas.dm,307: Cannot read null.len
area.ambience is never expected to be null.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
/area/awaymission/labyrinth/temple
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
/area/awaymission/labyrinth/temple/entry
|
||||
icon_state = "chapel"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
/area/awaymission/snowfield/base
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
// -- Mobs -- //
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
/area/awaymission/snowfield/base
|
||||
icon_state = "away"
|
||||
ambience = null // Todo: Add better ambience.
|
||||
ambience = list() // Todo: Add better ambience.
|
||||
|
||||
// -- Mobs -- //
|
||||
|
||||
|
||||
Reference in New Issue
Block a user