Skip to content

Commit

Permalink
fix small plot size
Browse files Browse the repository at this point in the history
Square just couldn't decide on what size plots actually are though all
the numbers for plot sizes end in ".5" now so I *hope* this change
covers them all. There's probably some table somewhere with these values
 but whatever.
  • Loading branch information
Drakansoul committed Oct 14, 2024
1 parent 2335a98 commit f8435f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions DisPlacePlugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Author": "Drakansoul",
"Name": "DisPlace Plugin",
"InternalName": "DisPlacePlugin",
"AssemblyVersion":"3.7.1",
"AssemblyVersion":"3.7.2",
"Punchline": "Automatically save & load furniture layouts in ANY house.",
"Description": "Automatically save & load the positions of house furniture. Copy other housing layouts. Import/export layouts from the MakePlace program.",
"ApplicableVersion": "any",
Expand All @@ -19,9 +19,9 @@
"LoadPriority": 0,
"IconUrl": "https://raw.githubusercontent.com/Drakansoul/DisPlaced/master/icon.png",
"DownloadCount": 0,
"DownloadLinkInstall": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.1/DisPlacePlugin.zip",
"DownloadLinkTesting": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.1/DisPlacePlugin.zip",
"DownloadLinkUpdate": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.1/DisPlacePlugin.zip",
"DownloadLinkInstall": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.2/DisPlacePlugin.zip",
"DownloadLinkTesting": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.2/DisPlacePlugin.zip",
"DownloadLinkUpdate": "https://github.com/Drakansoul/DisPlaced/releases/download/v3.7.2/DisPlacePlugin.zip",
"_isDip17Plugin": false,
"_Dip17Channel": null
}]
6 changes: 3 additions & 3 deletions DisPlacePlugin/DisPlacePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public DisPlacePlugin(IDalamudPluginInterface pi)
Memory.Instance.SetPlaceAnywhere(true);
LayoutManager = new SaveLayoutManager(this, Config);

DalamudApi.PluginLog.Info("DisPlace Plugin v3.7.1 initialized");
DalamudApi.PluginLog.Info("DisPlace Plugin v3.7.2 initialized");
}
public void Initialize()
{
Expand Down Expand Up @@ -639,8 +639,8 @@ public unsafe void LoadExterior()
zMax = 16.5;
break;
case "s":
xMax = 12.3;
zMax = 12.3;
xMax = 12.5;
zMax = 12.5;
break;
default:
yMax = 0;
Expand Down
2 changes: 1 addition & 1 deletion DisPlacePlugin/DisPlacePlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<PluginVersion>3.7.1</PluginVersion>
<PluginVersion>3.7.2</PluginVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit f8435f1

Please sign in to comment.