From 79c2e797bb23bd8cda131c185012a76367a9c6e1 Mon Sep 17 00:00:00 2001
From: Springf <10732668+SpringSkipper@users.noreply.github.com>
Date: Mon, 24 Jul 2023 10:45:25 -0400
Subject: [PATCH] Scrying Orb gains Nightvision (#21729)
Gives night vision to the scrying orb in addition to xray vision.
---
code/game/gamemodes/wizard/artefact.dm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm
index 8d816b41773..c455274c408 100644
--- a/code/game/gamemodes/wizard/artefact.dm
+++ b/code/game/gamemodes/wizard/artefact.dm
@@ -231,6 +231,7 @@
to_chat(current_owner, "Your otherworldly vision fades...")
REMOVE_TRAIT(current_owner, TRAIT_XRAY_VISION, SCRYING_ORB)
+ REMOVE_TRAIT(current_owner, TRAIT_NIGHT_VISION, SCRYING_ORB)
current_owner.update_sight()
current_owner.update_icons()
@@ -242,6 +243,7 @@
to_chat(current_owner, "You can see...everything!")
ADD_TRAIT(current_owner, TRAIT_XRAY_VISION, SCRYING_ORB)
+ ADD_TRAIT(current_owner, TRAIT_NIGHT_VISION, SCRYING_ORB)
current_owner.update_sight()
current_owner.update_icons()