From 91a1887479796cada8fdb82199cf45c86242b7df Mon Sep 17 00:00:00 2001 From: Rickoo Date: Sat, 20 Feb 2016 19:25:39 +0900 Subject: [PATCH] Update GetDataHandlers.cs Attempt to correct Celestial Sigil not functioning #1065 (https://github.com/NyxStudios/TShock/issues/1065). It seems to work well. --- TShockAPI/GetDataHandlers.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 7c5b4738..927a36dd 100755 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -3560,6 +3560,7 @@ namespace TShockAPI case -5: case -6: case -7: + case -8: invasion = true; break; case 4: @@ -3607,6 +3608,9 @@ namespace TShockAPI string boss; switch (Type) { + case -8: + boss = "a Moon Lord"; + break; case -7: boss = "a Martian invasion"; break;