From 9c4371b1506a44444dbfce9e1ab015fdcd2bf753 Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Thu, 12 Mar 2026 01:36:27 -0500 Subject: [PATCH] Updated OverlaySettings Added shoutout_message, and shoutout_alert_message for when a user is shoutout, for both chat message, and Visual Alert message. --- lib/overlay_settings.gd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/overlay_settings.gd b/lib/overlay_settings.gd index 6f092514..998b6e12 100644 --- a/lib/overlay_settings.gd +++ b/lib/overlay_settings.gd @@ -17,5 +17,8 @@ class_name OverlaySettings @export var display_screen: int = -1 +# Shoutout Message: +@export var shoutout_message: String = "@{target} is an amazing streamer. Go give them a follow!" +@export var shoutout_alert_message: String = "{target} is an amazing streamer. Go give them a follow!" @export var script_storage: Dictionary