Skip to content

Commit

Permalink
spacing and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
marilynias committed Dec 20, 2024
1 parent 2ca66e0 commit 99c0259
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/json/furniture_and_terrain/furniture-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@
"name": "metal charcoal kiln",
"looks_like": "f_kiln_empty",
"description": "A metal kiln designed to burn wood and organic material into charcoal in the absence of oxygen. Much more efficient than its archaic rock counterpart.",
"//": "based on p13 of http://ir.kefri.org/jspui/bitstream/123456789/117/1/Charcoal%20Production%20using%20Improved%20Earth%20Portable%20metal%20Drum%20and%20Casamance%20Kilns%20Forest%20Products%20Research%20Centre%20Karura%20Issue%20May%202006.pdf",
"//": "Based on page 6 of https://github.com/user-attachments/files/18196633/UsingimprovedkilnstoproducecharcoalinKenya-Apracticalguide.pdf",
"symbol": "U",
"color": "blue",
"move_cost_mod": -1,
Expand Down
2 changes: 1 addition & 1 deletion src/iexamine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2991,7 +2991,7 @@ void iexamine::kiln_empty( Character &you, const tripoint_bub_ms &examp )
const float skill = you.get_skill_level( skill_fabrication );
int loss = 0;
// if the current kiln is a metal one, use a more efficient conversion rate otherwise default to assuming it is a rock pit kiln
if (cur_kiln_type == furn_f_kiln_metal_empty){
if( cur_kiln_type == furn_f_kiln_metal_empty ){
loss = 20 - 2 * skill;
}
else if(cur_kiln_type == furn_f_kiln_portable_empty){
Expand Down

0 comments on commit 99c0259

Please sign in to comment.