diff --git a/game/engines/default/data/gfx/background/tome.png b/game/engines/default/data/gfx/background/tome.png
index 3a12105ded55a45ed575d7b8d7c1c9436338bc89..89b6483d7d24ea94c455a3e4f7fc2220a6de3da2 100644
Binary files a/game/engines/default/data/gfx/background/tome.png and b/game/engines/default/data/gfx/background/tome.png differ
diff --git a/game/engines/default/engine/Module.lua b/game/engines/default/engine/Module.lua
index 71c35fa196ef666f2a39c1de29adbf311b47d1ea..3a5333f7f8b67ede9be41d2f272284c5540e0a12 100644
--- a/game/engines/default/engine/Module.lua
+++ b/game/engines/default/engine/Module.lua
@@ -106,7 +106,7 @@ function _M:loadDefinition(dir, team, incompatible)
 --	print("Loading module definition from", team and (dir.."/mod/init.lua") or (dir.."/init.lua"))
 	if mod_def then
 		-- Call the file body inside its own private environment
-		local mod = {rng=rng}
+		local mod = {rng=rng, config=config}
 		setfenv(mod_def, mod)
 		mod_def()
 		mod.rng = nil
diff --git a/game/engines/default/engine/dialogs/VideoOptions.lua b/game/engines/default/engine/dialogs/VideoOptions.lua
index 2d7574c7ac63b79474f6fa497aa6a581c807d616..f4286eaba98d86becfd2b1dede4bd50dadce2a76 100644
--- a/game/engines/default/engine/dialogs/VideoOptions.lua
+++ b/game/engines/default/engine/dialogs/VideoOptions.lua
@@ -145,5 +145,14 @@ function _M:generateList()
 		end), 50)
 	end,}
 
+	local zone = Textzone.new{width=self.c_desc.w, height=self.c_desc.h, text=string.toTString"Disallow boot images that could be fuond 'offensive'.#WHITE#"}
+	list[#list+1] = { zone=zone, name=string.toTString"#GOLD##{bold}#Censor boot#WHITE##{normal}#", status=function(item)
+		return tostring(config.settings.censor_boot and "enabled" or "disabled")
+	end, fct=function(item)
+		config.settings.censor_boot = not config.settings.censor_boot
+		game:saveSettings("censor_boot", ("censor_boot = %s\n"):format(tostring(config.settings.censor_boot)))
+		self.c_list:drawItem(item)
+	end,}
+
 	self.list = list
 end
diff --git a/game/engines/default/engine/init.lua b/game/engines/default/engine/init.lua
index c1477e039fe761cac66891dc6cf67cff39de4513..6c815a07fced73887fabd3583c02fb6579f7df41 100644
--- a/game/engines/default/engine/init.lua
+++ b/game/engines/default/engine/init.lua
@@ -59,6 +59,7 @@ mouse_cursor = true
 display_fps = 30
 gamma_correction = 120
 mouse_move = true
+censor_boot = true
 chat.filter = {}
 addons = {}
 ]]
diff --git a/game/engines/default/modules/boot/class/Game.lua b/game/engines/default/modules/boot/class/Game.lua
index ddab9c3b9571ca78e620cf5c2b2121eebe707abc..1331cb7c727b283c5fd83835cc1ecea155acdcbb 100644
--- a/game/engines/default/modules/boot/class/Game.lua
+++ b/game/engines/default/modules/boot/class/Game.lua
@@ -51,7 +51,13 @@ function _M:init()
 	engine.interface.GameSound.init(self)
 	engine.GameEnergyBased.init(self, engine.KeyBind.new(), 100, 100)
 	self.profile_font = core.display.newFont("/data/font/DroidSerif-Italic.ttf", 14)
-	self.background = core.display.loadImage("/data/gfx/background/tome3.png")
+
+	local background_name
+	if not config.settings.censor_boot then background_name = {"tome","tome2","tome3"}
+	else background_name = {"tome3"}
+	end
+	
+	self.background = core.display.loadImage("/data/gfx/background/"..util.getval(background_name)..".png")
 	if self.background then
 		self.background_w, self.background_h = self.background:getSize()
 		self.background, self.background_tw, self.background_th = self.background:glTexture()
diff --git a/game/engines/default/modules/boot/init.lua b/game/engines/default/modules/boot/init.lua
index 80f3d84802af3f6af85763af2e6acb3a0d6c939c..c5afddbad810aebfb1d2afc9923a8f00b3798f0e 100644
--- a/game/engines/default/modules/boot/init.lua
+++ b/game/engines/default/modules/boot/init.lua
@@ -30,5 +30,6 @@ Bootmenu!
 ]]
 starter = "mod.load"
 loading_wait_ticks = 1600
---background_name = {"tome","tome2","tome3"}
-background_name = {"tome3"}
+if not config.settings.censor_boot then background_name = {"tome","tome2","tome3"}
+else background_name = {"tome3"}
+end