Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Stained glass: crafting DONE + fix pink stained glass not having a name
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmMoltony committed Jan 10, 2024
1 parent c2e2101 commit 90371ef
Show file tree
Hide file tree
Showing 10 changed files with 54 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nitrofiles/crafting/bluesg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output bluesg
RECIPE
glass 8
bluedye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/greensg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output greensg
RECIPE
glass 8
greendye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/lgsg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output lightgraysg
RECIPE
glass 8
lightgraydye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/orangesg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output orangesg
RECIPE
glass 8
orangedye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/pinksg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output pinksg
RECIPE
glass 8
pinkdye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/purplesg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output purplesg
RECIPE
glass 8
purpledye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/redsg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output redsg
RECIPE
glass 8
reddye 1
5 changes: 5 additions & 0 deletions nitrofiles/crafting/yellowsg.rcp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
count 8
output yellowsg
RECIPE
glass 8
yellowdye 1
10 changes: 10 additions & 0 deletions nitrofiles/crafting_order.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,13 @@ pink_dye
red_dye1
red_dye2
yellow_dye

# stained glass
bluesg
greensg
lgsg
orangesg
pinksg
purplesg
redsg
yellowsg
4 changes: 4 additions & 0 deletions source/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -986,6 +986,8 @@ const char *getItemName(InventoryItem::ID iid)
return "Red Stained Glass";
case InventoryItem::ID::PurpleStainedGlass:
return "Purple Stained Glass";
case InventoryItem::ID::PinkStainedGlass:
return "Pink Stained Glass";
case InventoryItem::ID::OrangeStainedGlass:
return "Orange Stained Glass";
case InventoryItem::ID::LightGrayStainedGlass:
Expand Down Expand Up @@ -1179,6 +1181,8 @@ const char *getItemName(InventoryItem::ID iid)
return "Lsbtpqg tugmnq";
case InventoryItem::ID::PurpleStainedGlass:
return "Vkqnguqdqg tugmnq";
case InventoryItem::ID::PinkStainedGlass:
return "Rqjqdq gtugmnq";
case InventoryItem::ID::OrangeStainedGlass:
return "Psbpigdqg tugmnq";
case InventoryItem::ID::LightGrayStainedGlass:
Expand Down

0 comments on commit 90371ef

Please sign in to comment.