Skip to content

Commit

Permalink
自動テレポート対象がIDリストを無視していた不具合の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0ou committed Aug 28, 2024
1 parent cb786b8 commit a030d3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Packages/jp.sh0uroom.vrcid-gimmick/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ v1.1.0
UserIDLoaderのテキスト出力について、複数のTextMeshProUGUIへの出力に対応
UserTeleporterで、自動テレポートが動作しない不具合を修正
その他コードの整理

v1.1.1
UserTeleporterで、自動テレポートが全プレイヤーに作動してしまう不具合を修正
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public override void Interact()

public override void OnPlayerJoined(VRCPlayerApi player)
{
if (isTeleportOnStart && player.isLocal)
if (isTeleportOnStart && player.isLocal && loader.CheckUserIDValid(isBlackList))
{
SendCustomEventDelayedFrames(nameof(Teleport), 5);
}
Expand Down
2 changes: 1 addition & 1 deletion Packages/jp.sh0uroom.vrcid-gimmick/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jp.sh0uroom.vrcid-gimmick",
"displayName": "VRCID Gimmicker",
"version": "1.1.0",
"version": "1.1.1",
"description": "A collection of gimmick tools that work only for specific users.",
"gitDependencies": {},
"vpmDependencies": {
Expand Down

0 comments on commit a030d3b

Please sign in to comment.