mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-15 08:21:28 +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:
parent
6dffeacc6e
commit
2dfb7614cc
@ -233,7 +233,7 @@ XS(XS_Doors_GetSize); /* prototype to pass -Wmissing-prototypes */
|
|||||||
XS(XS_Doors_GetSize) {
|
XS(XS_Doors_GetSize) {
|
||||||
dXSARGS;
|
dXSARGS;
|
||||||
if (items != 1)
|
if (items != 1)
|
||||||
Perl_croak(aTHX_ "Usage: Doors::GetIncline(THIS)");
|
Perl_croak(aTHX_ "Usage: Doors::GetSize(THIS)"); // @categories Doors
|
||||||
{
|
{
|
||||||
Doors *THIS;
|
Doors *THIS;
|
||||||
uint32 RETVAL;
|
uint32 RETVAL;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user