Set NPC collision to true if no tag

This commit is contained in:
JappaWakka 2025-01-25 09:32:55 +01:00
parent 3a47a87735
commit 83c6cc7027
1 changed files with 4 additions and 2 deletions

View File

@ -643,8 +643,10 @@
ScaleList = CType(GetTag(Tags, "Scale"), List(Of Single))
Scale = New Vector3(ScaleList(0), ScaleList(1), ScaleList(2))
End If
Dim Collision As Boolean = CBool(GetTag(Tags, "Collision"))
Dim Collision As Boolean = True
If TagExists(Tags, "Collision") = True Then
Collision = CBool(GetTag(Tags, "Collision"))
End If
Dim TextureID As String = CStr(GetTag(Tags, "TextureID"))
Dim Rotation As Integer = CInt(GetTag(Tags, "Rotation"))
Dim ActionValue As Integer = CInt(GetTag(Tags, "Action"))