Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gui/HP_WorldWorkerScreen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@

<BoxLayout profile="fs25_dialogButtonBox" size="1170px 60px">
<Button profile="buttonBack" text="CLOSE" onClick="onClickBack" />
<Button profile="buttonExtra1" text="PLACE HERE" onClick="onClickPlaceHere" />
<Button profile="hpButtonClearAll" text="MOVE HERE" onClick="onClickMoveHere" />
<Button profile="buttonExtra1" id="placeMoveButton" text="PLACE HERE" onClick="onClickPlaceHere" />
<Button profile="hpButtonClearAll" text="FACE ME" onClick="onClickFaceMe" />
<Button profile="hpButtonClear" text="REMOVE" onClick="onClickRemove" />
</BoxLayout>
</GuiElement>
</GUI>
</GUI>
6 changes: 6 additions & 0 deletions scripts/HP_SlotRegistry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@ end
if HP_WorldWorkerScreen == nil and source ~= nil then
source((g_currentModDirectory or "") .. "scripts/HP_WorldWorkerScreen.lua")
end
if HP_WorldPresence == nil and source ~= nil then
source((g_currentModDirectory or "") .. "scripts/HP_WorldPresence.lua")
end
if HP_WorldPresenceSmoothing == nil and source ~= nil then
source((g_currentModDirectory or "") .. "scripts/HP_WorldPresenceSmoothing.lua")
end
if HP_WorldWorkerInput == nil and source ~= nil then
source((g_currentModDirectory or "") .. "scripts/HP_WorldWorkerInput.lua")
end
Loading