Fix parallax again (#3279)

Fix parallax being static when it shouldn't have been.
This commit is contained in:
Lohikar
2017-08-13 19:46:23 +03:00
committed by Erki
parent 1a7512330a
commit ab247a07d9
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ var/list/accessible_z_levels = list("8" = 5, "9" = 10, "7" = 15, "2" = 60)
moved_event.raise_event(src, old_loc, loc)
// Parallax.
update_client_hook()
update_client_hook(loc)
// Lighting.
var/datum/light_source/L
+4
View File
@@ -0,0 +1,4 @@
author: Lohikar
delete-after: True
changes:
- bugfix: "Fixed a bug which caused space parallax to always be static, regardless of preferences."