-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
The following code from function UpdateAirdropTimer
in airdrop.inc
looks suspicious:
MoveObject(airdropObjectID, airdropX + movetoX, airdropY + movetoY, airdropZ + AIRDROP_OFFSET, 1.0, 0.0, 0.0, 0.0); |
Global variables
movetoX
and movetoY
are used on this line, but they weren't assigned any value throughout the whole file (so they contain 0
by default).
You'll probably want to either assign some values to these variables (if that's what you initially intended), or just remove them completely.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers