Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
PrincessRTFM committed Mar 7, 2024
1 parent 1e8544f commit 4686106
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WoLua/Lua/Api/GameApi.cs
Original file line number Diff line number Diff line change
@@ -149,7 +149,7 @@ public unsafe void SetMapFlag(float x, float y) {
}

[LuaDoc("Sets the player's custom map flag marker to the location of the provided game world object or position.")]
public void SetMapFlag([AsLuaType("EntityWrapper|FateWrapper|WorldPosition")] IWorldObjectWrapper pos) {
public void SetMapFlag([AsLuaType("EntityWrapper|FateWrapper|PlayerApi|WorldPosition")] IWorldObjectWrapper pos) {
if (pos.MapX is float x && pos.MapY is float y)
this.SetMapFlag(x, y);
}
2 changes: 1 addition & 1 deletion WoLua/WoLua.csproj
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>WoLua</Product>
<Version>3.5.0</Version>
<Version>3.5.1</Version>
<Description>Warrior of... Lua? Write your own chat commands in lua for FFXIV/Dalamud!</Description>
<Copyright>Copyleft VariableVixen 2022</Copyright>
</PropertyGroup>

0 comments on commit 4686106

Please sign in to comment.