Skip to content

Commit

Permalink
boom
Browse files Browse the repository at this point in the history
  • Loading branch information
amylizzle committed Dec 25, 2023
1 parent fbc20c1 commit 047672c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OpenDreamRuntime/Rendering/ServerClientImagesSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace OpenDreamRuntime.Rendering;
public sealed class ServerClientImagesSystem : SharedClientImagesSystem {

private readonly PvsOverrideSystem _pvsOverrideSystem = default!;
[Dependency] private readonly PvsOverrideSystem _pvsOverrideSystem = default!;
public void AddImageObject(DreamConnection connection, DreamObjectImage imageObject) {
DreamObject? loc = imageObject.GetAttachedLoc();
if(loc == null)
Expand Down
3 changes: 3 additions & 0 deletions TestGame/code.dm
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@
for(var/turf/T in range(src, 2))
var/image/turf_image = image(icon = 'icons/hanoi.dmi', loc=T, icon_state="1")
src.client.images += turf_image
spawn(25)
src << "changing image"
i.icon_state = "5"
spawn(50)
src.client.images.Cut()

Expand Down

0 comments on commit 047672c

Please sign in to comment.