diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-06-03 17:42:59 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-06-08 20:20:45 +0200 |
commit | 1f94c5aef9d9c69b940cbdbf1f9443f20f1e7ba9 (patch) | |
tree | 6914ce14b57828fe53cf4cc26584461fbca3cffd /comp_map.go | |
parent | a5e7fe92269e44c5cc147d316730407d67f32f8a (diff) | |
download | hydra-dragonfire-1f94c5aef9d9c69b940cbdbf1f9443f20f1e7ba9.tar.xz |
Add path finding
Diffstat (limited to 'comp_map.go')
-rw-r--r-- | comp_map.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comp_map.go b/comp_map.go index c45155e..eed5039 100644 --- a/comp_map.go +++ b/comp_map.go @@ -7,7 +7,7 @@ import ( type CompMap struct { client *Client - mapdata *Map + mapdata *Map userdata *lua.LUserData } |