mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
[Bug Fix] Doors::GetSize() Perl Croak Typo. (#2027)
- Typo was causing GetIncline() to show twice on Spire and causing GetSize() not to show at all on Spire.
This commit is contained in:
+1
-1
@@ -233,7 +233,7 @@ XS(XS_Doors_GetSize); /* prototype to pass -Wmissing-prototypes */
|
||||
XS(XS_Doors_GetSize) {
|
||||
dXSARGS;
|
||||
if (items != 1)
|
||||
Perl_croak(aTHX_ "Usage: Doors::GetIncline(THIS)");
|
||||
Perl_croak(aTHX_ "Usage: Doors::GetSize(THIS)"); // @categories Doors
|
||||
{
|
||||
Doors *THIS;
|
||||
uint32 RETVAL;
|
||||
|
||||
Reference in New Issue
Block a user