Skip to content

Commit 4ace013

Browse files
committed
Upgrade for API 11
1 parent 0e2c040 commit 4ace013

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WoLua/dalamud.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<Import Project="framework.props" />
1616

1717
<ItemGroup>
18-
<PackageReference Include="DalamudPackager" Version="2.1.13" />
18+
<PackageReference Include="DalamudPackager" Version="11.0.0" />
1919
<Reference Include="Newtonsoft.Json">
2020
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
2121
<Private>False</Private>

examples/03-local-chat-messages/command.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Game.PrintChat("Yes, you can actually send chat messages on script load. It's not a GOOD idea, but you CAN do it.")
1+
Game.PrintMessage("Yes, you can actually send chat messages on script load. It's not a GOOD idea, but you CAN do it.")
22

33
Script(function()
44
Game.PrintError("Oh no! This script prints an error when called!")
5-
Game.PrintChat("Don't worry, nothing's actually wrong.")
5+
Game.PrintMessage("Don't worry, nothing's actually wrong.")
66
end)
77

88
-- yeah, this example is really that simple

0 commit comments

Comments
 (0)