diff --git a/l10n/messages.properties b/l10n/messages.properties index 9353c4d8f..34e12adb9 100644 --- a/l10n/messages.properties +++ b/l10n/messages.properties @@ -1015,6 +1015,7 @@ Databases.materials.Spruce = Spruce Databases.materials.StyrofoamgenericEPS = Styrofoam (generic EPS) Databases.materials.StyrofoamBluefoamXPS = Styrofoam \"Blue foam\" (XPS) Databases.materials.Quantumtubing = Quantum tubing +Databases.materials.BlueTube = Blue tube !SURFACE_MATERIAL Databases.materials.Ripstopnylon = Ripstop nylon Databases.materials.Mylar = Mylar diff --git a/src/net/sf/openrocket/database/Databases.java b/src/net/sf/openrocket/database/Databases.java index fae1eb47e..1cfc0e8ec 100644 --- a/src/net/sf/openrocket/database/Databases.java +++ b/src/net/sf/openrocket/database/Databases.java @@ -59,6 +59,7 @@ public class Databases { // BULK_MATERIAL.add(new Material.Bulk("Styrofoam (Blue foam, XPS)", 32, false)); BULK_MATERIAL.add(new Material.Bulk(trans.get("Databases.materials.StyrofoamBluefoamXPS"), 32, false)); BULK_MATERIAL.add(new Material.Bulk(trans.get("Databases.materials.Quantumtubing"), 1050, false)); + BULK_MATERIAL.add(new Material.Bulk(trans.get("Databases.materials.BlueTube"), 1300, false)); SURFACE_MATERIAL.add(new Material.Surface(trans.get("Databases.materials.Ripstopnylon"), 0.067, false)); SURFACE_MATERIAL.add(new Material.Surface(trans.get("Databases.materials.Mylar"), 0.021, false));