Skip to content

Commit d26fe3a

Browse files
2026-02-21
Hammertime ------------------ = NEW = - Added prison cell door frame from location_community_police_01 to the hammertime tileset ht_vanilla_location_community_police_01 because they are not configured as a door frame by default. Hammertime_Crafting ------------------ = NEW = - Make Gravel Bag Hammertime_Furniture ------------------ = NEW = - Dark Console Table - Fancy Table - Light Console Table - Wooden Console Table Hammertime_Structure ------------------ = NEW = - Cobblestone W/ Moss 1 - Cobblestone W/ Moss 2 - Cobblestone W/ Moss 3 - Cobblestone W/ Moss 4 - Prison Cell Wall - Prison Cell Door - Prison Cell Window = TWEAKS = - Moved vanilla Tile Floor from Masonry to Floors category - Moved vanilla Dirt Floor from Outdoor to Floors category - Moved vanilla Gravel Floor from Outdoor to Floors category - Moved vanilla Sand Floor from Outdoor to Floors category
1 parent d2dc92d commit d26fe3a

53 files changed

Lines changed: 961 additions & 29 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.txt

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
********************
2+
2026-02-21
3+
********************
4+
Hammertime
5+
------------------
6+
= NEW =
7+
- Added prison cell door frame from location_community_police_01 to the hammertime tileset ht_vanilla_location_community_police_01 because they are not configured as a door frame by default.
8+
9+
Hammertime_Crafting
10+
------------------
11+
= NEW =
12+
- Make Gravel Bag
13+
14+
Hammertime_Furniture
15+
------------------
16+
= NEW =
17+
- Dark Console Table
18+
- Fancy Table
19+
- Light Console Table
20+
- Wooden Console Table
21+
22+
Hammertime_Structure
23+
------------------
24+
= NEW =
25+
- Cobblestone W/ Moss 1
26+
- Cobblestone W/ Moss 2
27+
- Cobblestone W/ Moss 3
28+
- Cobblestone W/ Moss 4
29+
- Prison Cell Wall
30+
- Prison Cell Door
31+
- Prison Cell Window
32+
33+
= TWEAKS =
34+
- Moved vanilla Tile Floor from Masonry to Floors category
35+
- Moved vanilla Dirt Floor from Outdoor to Floors category
36+
- Moved vanilla Gravel Floor from Outdoor to Floors category
37+
- Moved vanilla Sand Floor from Outdoor to Floors category
38+
39+
Other
40+
------------------
41+
- Updated representative pictures for udpated sub-mods to showcase new items/features on the workshop.
42+
143
********************
244
2026-02-18
345
********************

Contents/mods/Hammertime/42.13/media/lua/server/BuildRecipeCode/hammerBuildRecipeCode.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ hammerBuildRecipeCode = hammerBuildRecipeCode or {}
22
hammerBuildRecipeCode.GarageDoor = {}
33
hammerBuildRecipeCode.WallCabinet = {}
44
hammerBuildRecipeCode.WallCabinetCorner = {}
5-
hammerBuildRecipeCode.Seating = {}
65
--
76
-- DEBUG: We can inspect the contents of the params variable using this snippet.
87
-- Place the snipplet as the first line of any functions in this file and be sure to have PZ debug mode on
@@ -110,7 +109,7 @@ function hammerBuildRecipeCode.GarageDoor.OnCreate(params)
110109
--htPrint("---- END AFTER SPECIAL OBJECTS ON SQUARE -----")
111110

112111
-- We return objectAlreadyTransmitted = true to tell the vanilla building script (media\lua\server\BuildingObjects\ISBuildIsoEntity.lua (line 784))
113-
-- that the information as already been sent to the client dans not send the IsoThumpable to the client
112+
-- that the information as already been sent to the client and not send the IsoThumpable to the client
114113
return { objectAlreadyTransmitted = true }
115114
end
116115

Contents/mods/Hammertime/42.13/media/scripts/recipes/ht_Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module Base {
1616
{
1717
item 2026 [Base.WristWatch_Left_ClassicMilitary], /* Year */
1818
item 02 [Base.WristWatch_Left_ClassicGold], /* Month */
19-
item 18 [Base.WristWatch_Left_Expensive], /* Day */
19+
item 21 [Base.WristWatch_Left_Expensive], /* Day */
2020
}
2121
outputs
2222
{
469 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module Base {
2+
3+
/*
4+
* Make Gravel Bag
5+
* htMakeGravelBag
6+
*/
7+
8+
9+
craftRecipe htMakeGravelBag
10+
{
11+
timedAction = MakingElectrical,
12+
time = 20,
13+
Tags = AnySurfaceCraft,
14+
Category = Masonry,
15+
xpAward = Masonry:5,
16+
AllowBatchCraft = true,
17+
inputs
18+
{
19+
item 1 tags[base:clubhammer] mode:keep flags[MayDegradeLight],
20+
item 1 tags[base:burlapbag],
21+
item 5 tags[base:stone],
22+
}
23+
outputs
24+
{
25+
item 1 Base.Gravelbag,
26+
}
27+
}
28+
}

Contents/mods/Hammertime_Crafting/common/media/lua/shared/Translate/EN/Recipes_EN.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ Recipes_EN = {
1111
Recipe_htMakeLongBeigeCurtain = "Make Long Beige Curtain",
1212
Recipe_htMakeLongGrayCurtain = "Make Long Gray Curtain",
1313
Recipe_htMakeLongWhiteCurtain = "Make Long White Curtain",
14-
}
14+
15+
Recipe_htMakeGravelBag = "Make Gravel Bag",
16+
}
4.5 KB
Loading

Contents/mods/Hammertime_Furniture/42.13/media/scripts/entities/tables_high/htFurniture_tables_high_01_BroadWhiteTable.txt renamed to Contents/mods/Hammertime_Furniture/42.13/media/scripts/entities/tables_high/htFurniture_furniture_tables_high_01_BroadWhiteTable.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module Base
5050
component CraftRecipe
5151
{
5252
timedAction = BuildWallHammer,
53-
time = 50,
53+
time = 300,
5454
SkillRequired = Woodwork:5,
5555
xpAward = Woodwork:50,
5656
category = Tables,
@@ -64,4 +64,4 @@ module Base
6464
}
6565
}
6666
}
67-
}
67+
}

0 commit comments

Comments
 (0)