Adding Condition to identify airport pickup#787
Merged
RussellLVP merged 3 commits intoLVPlayground:masterfrom Jul 22, 2020
Merged
Adding Condition to identify airport pickup#787RussellLVP merged 3 commits intoLVPlayground:masterfrom
RussellLVP merged 3 commits intoLVPlayground:masterfrom
Conversation
Solving LVPlayground#786 error from occuring.
Member
|
No. Just using the variable without comparing it to something means this test passes if the value is non-zero, which is always the case because the pickups were created. I think you'll want something like: if (Time->currentTime() - AirTime[playerid] < 60) {
if (pickupid == g_AirportPickup[0] || pickupid == g_AirportPickup[1] ||
pickupid == g_AirportPickup[2] || pickupid == g_AirportPickup[3]) {
SendClientMessage(playerid,Color::Red,"There are no flights departing right now! Try again later.");
return 1;
}
} |
Collaborator
Author
|
Thank you Russell. |
RussellLVP
approved these changes
Jul 22, 2020
Member
|
Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Solving #786 error from occurring.
This compiled well, But Is this good?