mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
[Bug Fix] Objects::GetTiltX() and Objects::GetTiltY() Perl Croak Typos. (#2028)
- Typo was causing GetIncline() to show three times on Spire and causing GetTiltX() and GetTiltY() not to show at all on Spire.
This commit is contained in:
parent
2dfb7614cc
commit
cc2ef11158
@ -666,7 +666,7 @@ XS(XS_Object_GetTiltX); /* prototype to pass -Wmissing-prototypes */
|
||||
XS(XS_Object_GetTiltX) {
|
||||
dXSARGS;
|
||||
if (items != 1)
|
||||
Perl_croak(aTHX_ "Usage: Object::GetSize(THIS)");
|
||||
Perl_croak(aTHX_ "Usage: Object::GetTiltX(THIS)"); // @categories Objects
|
||||
{
|
||||
Object *THIS;
|
||||
float RETVAL;
|
||||
@ -683,7 +683,7 @@ XS(XS_Object_GetTiltY); /* prototype to pass -Wmissing-prototypes */
|
||||
XS(XS_Object_GetTiltY) {
|
||||
dXSARGS;
|
||||
if (items != 1)
|
||||
Perl_croak(aTHX_ "Usage: Object::GetSize(THIS)");
|
||||
Perl_croak(aTHX_ "Usage: Object::GetTiltY(THIS)"); // @categories Objects
|
||||
{
|
||||
Object *THIS;
|
||||
float RETVAL;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user