This commit is contained in:
Vaern 2023-06-26 09:36:33 -07:00
parent 296af599dc
commit ae88efa449

View File

@ -415,7 +415,7 @@ public class HbmChestContents {
public static ItemStack generateOfficeBook(Random rand) { //TODO rework this lore in general
String key;
int pages;
switch(rand.nextInt(5)) {
switch(rand.nextInt(10)) {
case 0:
key = "resignation_note"; pages = 3; break;
case 1:
@ -426,6 +426,16 @@ public class HbmChestContents {
key = "memo_schrab_rd"; pages = 4; break;
case 4:
key = "memo_schrab_nuke"; pages = 3; break;
case 5:
key = "bf_bomb_1"; pages = 4; break;
case 6:
key = "bf_bomb_2"; pages = 6; break;
case 7:
key = "bf_bomb_3"; pages = 6; break;
case 8:
key = "bf_bomb_4"; pages = 5; break;
case 10:
key = "bf_bomb_5"; pages = 9; break;
default:
return null;
}