From 81a9e1e37e37f52acdff7e9b889ce6541d3cb3c2 Mon Sep 17 00:00:00 2001 From: Junior Date: Tue, 2 Jul 2019 08:09:28 -0400 Subject: [PATCH] Change the initial volume to zero (0) --- tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tables.sql b/tables.sql index 415c4f1..8a50d58 100644 --- a/tables.sql +++ b/tables.sql @@ -153,7 +153,7 @@ CREATE TABLE `settings` ( LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'CHRISTMAS','false'); -INSERT INTO `settings` VALUES (2,'CURVOLUME','28'); +INSERT INTO `settings` VALUES (2,'CURVOLUME','0'); INSERT INTO `settings` VALUES (3,'CHRISTMASFREQ','4'); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES;