Update StoryBoxInteractServer.cpp (#1500)

Update StoryBoxInteractServer.cpp
This commit is contained in:
David Markowitz 2024-03-08 17:29:40 -08:00 committed by GitHub
parent 4bc4624bc9
commit 0b4f70a76b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ void StoryBoxInteractServer::OnUse(Entity* self, Entity* user) {
return;
}
if (!self->HasVar(u"storyText") || !self->HasVar(u"altFlagID")) return;
if (!self->HasVar(u"storyText")) return;
const auto storyText = self->GetVarAsString(u"storyText");
if (storyText.length() > 2) {
auto storyValue = GeneralUtils::TryParse<uint32_t>(storyText.substr(storyText.length() - 2));