10 lines
307 B
GDScript
10 lines
307 B
GDScript
extends WarpGlobal
|
|
|
|
#
|
|
func OnAreaEnter(player : PlayerAgent):
|
|
if player and player.progress:
|
|
if player.progress.GetQuest(ProgressCommons.Quest.TUTORIAL) < ProgressCommons.CompletedProgress:
|
|
Network.PushNotification("出城前先去找埃拉诺。", player.peerID)
|
|
return
|
|
super.OnAreaEnter(player)
|