diff --git a/game.js b/game.js
index 4f0a1c7..dc48613 100644
--- a/game.js
+++ b/game.js
@@ -653,7 +653,7 @@ function toggle_verbose()
 {
   verbose = !verbose;
 
-  document.getElementById("button-verbose").innerHTML = "Descriptions: " + (verbose ? "Verbose" : "Simple");
+  document.getElementById("button-verbose").innerHTML = (verbose ? "Verbose" : "Simple");
 }
 
 function toggle_arousal()
diff --git a/recursive-macro.js b/recursive-macro.js
index 4bc7dfa..1f2d4c1 100644
--- a/recursive-macro.js
+++ b/recursive-macro.js
@@ -868,6 +868,8 @@ function Town(count = 1) {
 
   this.addContent("Car",250,3750,count);
 
+  this.addContent("Bus",50,150,count);
+
   this.addContent("Train",5,10,count);
 
   this.addContent("Small Skyscraper",2,10,count);
@@ -898,6 +900,8 @@ function City(count = 1) {
 
   this.addContent("Car",2500,37500,count);
 
+  this.addContent("Bus",150,500,count);
+
   this.addContent("Train",50,100,count);
 
   this.addContent("Tram",100,300,count);
diff --git a/stroll.html b/stroll.html
index 7085590..c482c05 100644
--- a/stroll.html
+++ b/stroll.html
@@ -88,7 +88,7 @@
         
         
         
-        
+