From 8cceef1167286908c7e699ef5aa44ff843db2b51 Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Sat, 20 Sep 2025 15:09:21 +0200 Subject: [PATCH] chat_command_god_mode 1.0.3 Added Origins robot exit as a waittill to re-apply god mode, since the game's script disables invulnerability when you exit it --- chat_commands/chat_command_god_mode.gsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat_commands/chat_command_god_mode.gsc b/chat_commands/chat_command_god_mode.gsc index b63cea2..b07bb19 100644 --- a/chat_commands/chat_command_god_mode.gsc +++ b/chat_commands/chat_command_god_mode.gsc @@ -60,7 +60,7 @@ ThreadGodMode() for(;;) { - self waittill("spawned_player"); + self waittill_any("spawned_player", "gr_eject_sequence_complete"); // Origins robot ejected self DoGodMode(true); }