From 5a7ee28740aa1a1a383632ad5ee15a4df3a259e6 Mon Sep 17 00:00:00 2001 From: Kinglykrab <89047260+Kinglykrab@users.noreply.github.com> Date: Wed, 26 Jan 2022 15:57:18 -0500 Subject: [PATCH] [Bug Fix] Fix quest::updatespawntimer() Perl croak. (#1947) --- zone/embparser_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/embparser_api.cpp b/zone/embparser_api.cpp index 94e403508..67034c4ab 100644 --- a/zone/embparser_api.cpp +++ b/zone/embparser_api.cpp @@ -3051,7 +3051,7 @@ XS(XS__UpdateSpawnTimer); XS(XS__UpdateSpawnTimer) { dXSARGS; if (items != 2) - Perl_croak(aTHX_ "Usage: quest::UpdateSpawnTimer(uint32 spawn2_id, uint32 updated_time_till_repop)"); + Perl_croak(aTHX_ "Usage: quest::updatespawntimer(uint32 spawn2_id, uint32 updated_time_till_repop)"); uint32 spawn2_id = (int) SvIV(ST(0)); uint32 updated_time_till_repop = (int) SvIV(ST(1));