| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion Untrumbled
 Expansion Untrumbled| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | Untrumbled removes a core game feature which some players find irritating, and prevents any possibility of vermin infestation, but does not cure existing infestations. | Untrumbled removes a core game feature which some players find irritating, and prevents any possibility of vermin infestation, but does not cure existing infestations. | 
| Identifier | oolite.oxp.Wildeblood.Untrumbled | oolite.oxp.Wildeblood.Untrumbled | 
| Title | Untrumbled | Untrumbled | 
| Category | Mechanics | Mechanics | 
| Author | Wildeblood | Wildeblood | 
| Version | 1.1 | 1.1 | 
| Tags | ||
| Required Oolite Version | ||
| Maximum Oolite Version | ||
| Required Expansions | ||
| Optional Expansions | ||
| Conflict Expansions | ||
| Information URL | n/a | |
| Download URL | https://wiki.alioth.net/img_auth.php/c/cd/Untrumbled.oxz | n/a | 
| License | Public domain. | Public domain. | 
| File Size | n/a | |
| Upload date | 1610873474 | 
Also read http://wiki.alioth.net/index.php/Untrumbled
| Path | |
|---|---|
| Config/script.js | this.name    = "Untrumbled";
this.version = "1.1"; // "Wildeblood", "phkb" June 17th, 2015
this.startUp = function () {
	"use strict";
	if (worldScripts["oolite-trumbles"]) {
		for (prop in worldScripts["oolite-trumbles"]) {
			if (prop !== "name" && prop !== "version" && prop !== "oolite_manifest_identifier") delete worldScripts["oolite-trumbles"][prop];
		}
		log(this.name, "Removed oolite-trumbles world script.");
	}
	delete missionVariables.trumbles;
	delete this.startUp;
}
 |