Skip to content

Commit

Permalink
Correção auto mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-tardivo-dart committed May 16, 2020
1 parent aaff231 commit 347fb97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Client/Source/Modules/C_AutoMap.vb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Module C_AutoMap

Sub LoadTilePrefab()
Dim Prefab As Integer, Layer As Integer
Dim cf = Path.Contents & "AutoMapper.ini"
Dim cf = Path.Contents & "\AutoMapper.ini"

ReDim Tile(TilePrefab.Count - 1)
For Prefab = 1 To TilePrefab.Count - 1
Expand Down Expand Up @@ -171,7 +171,7 @@ Module C_AutoMap
DetailFreq = buffer.ReadInt32
ResourceFreq = buffer.ReadInt32

Dim cf = Path.Contents & "AutoMapper.ini"
Dim cf = Path.Contents & "\AutoMapper.ini"

If Not File.Exists(cf) Then Exit Sub

Expand Down Expand Up @@ -208,7 +208,7 @@ Module C_AutoMap
End Sub

Friend Sub SendSaveAutoMapper()
Dim cf = Path.Contents & "AutoMapper.ini"
Dim cf = Path.Contents & "\AutoMapper.ini"
Dim buffer As New ASFW.ByteStream(4)

buffer.WriteInt32(ClientPackets.CSaveAutoMap)
Expand Down

0 comments on commit 347fb97

Please sign in to comment.