-
Notifications
You must be signed in to change notification settings - Fork 4
Fix offlineplayer issues #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
cerqiest
wants to merge
4
commits into
main
Choose a base branch
from
fix-offlineplayer-issues
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
2b1cad5
fix: property issues in offlineplayer
cerqiest babd167
fix: additional property issues in offlineplayer
cerqiest 9d678cf
refactor: remove useless type annotation
cerqiest 452b270
refactor: change property names to remove `is` prefix to be consisten…
cerqiest File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,6 @@ package dev.znci.rocket.scripting.globals.tables | |
|
|
||
| import dev.znci.rocket.scripting.PermissionsManager | ||
| import dev.znci.rocket.scripting.annotations.Global | ||
| import dev.znci.rocket.scripting.api.RocketError | ||
| import dev.znci.rocket.util.MessageFormatter | ||
| import dev.znci.twine.TwineNative | ||
| import dev.znci.twine.TwineTable | ||
|
|
@@ -97,7 +96,7 @@ data class TitleTimeTable( | |
|
|
||
| @Suppress("unused") | ||
| class LuaPlayer( | ||
| override val player: Player | ||
| val player: Player | ||
| ) : LuaOfflinePlayer(player) { | ||
| @TwineNativeFunction | ||
| fun send(message: Any): Boolean { | ||
|
|
@@ -275,7 +274,7 @@ open class LuaOfflinePlayer(val offlinePlayer: OfflinePlayer) : TwineNative("") | |
|
|
||
| @TwineNativeProperty | ||
| val lastDeathLocation | ||
| get() = offlinePlayer.lastDeathLocation | ||
| get() = offlinePlayer.lastDeathLocation?.let { LuaLocation.fromBukkit(it) } | ||
|
|
||
| @TwineNativeProperty | ||
| val lastLogin | ||
|
|
@@ -288,27 +287,20 @@ open class LuaOfflinePlayer(val offlinePlayer: OfflinePlayer) : TwineNative("") | |
| // location, name, and player are open because they are overridden in LuaPlayer with non-nullable values | ||
| // in the case of location and name and the actual player instance in the case of player | ||
| @TwineNativeProperty | ||
| open val location: LuaLocation? | ||
| get() { | ||
| val location = offlinePlayer.location | ||
| return if (location != null) { | ||
| LuaLocation.fromBukkit(location) | ||
| } else { | ||
| null | ||
| } | ||
| } | ||
| open val location | ||
| get() = offlinePlayer.location?.let { LuaLocation.fromBukkit(it) } | ||
|
|
||
| @TwineNativeProperty | ||
| open val name | ||
| get() = offlinePlayer.name | ||
|
|
||
| @TwineNativeProperty | ||
| open val player | ||
| get() = offlinePlayer.player | ||
| @TwineNativeProperty("player") | ||
| open val playerLuaProperty | ||
| get() = offlinePlayer.player?.let { LuaPlayer(it) } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question |
||
|
|
||
| @TwineNativeProperty | ||
| val respawnLocation | ||
| get() = offlinePlayer.respawnLocation | ||
| get() = offlinePlayer.respawnLocation?.let { LuaLocation.fromBukkit(it) } | ||
|
|
||
| @TwineNativeProperty | ||
| val uuid | ||
|
|
@@ -319,15 +311,15 @@ open class LuaOfflinePlayer(val offlinePlayer: OfflinePlayer) : TwineNative("") | |
| get() = offlinePlayer.hasPlayedBefore() | ||
|
|
||
| @TwineNativeProperty | ||
| val isBanned | ||
| val banned | ||
| get() = offlinePlayer.isBanned | ||
|
|
||
| @TwineNativeProperty | ||
| val isConnected | ||
| get() = offlinePlayer.isOnline | ||
| val connected | ||
| get() = offlinePlayer.isConnected | ||
|
|
||
| @TwineNativeProperty | ||
| val isOnline | ||
| val online | ||
| get() = offlinePlayer.isOnline | ||
|
|
||
| @TwineNativeProperty | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surely this doesn't work since the player is offline...