Old Version of Mod That Removes Turrets Actually
-
Endorsements
-
Unique DLs--
-
Total DLs--
-
Total views--
-
VersionOld
File information
Created by
peopleonmodworkshopUploaded by
zappypantzVirus scan
About this mod
Old version of mod that removes turrets because the new version may or may not work for people.
- Requirements
- Permissions and credits
Anyways, enjoy, cause turrets are stupid anyways, lol.
Update:
Since virus total doesn't seem to like the lua file code, just make an lua file named sentrygunbase.lua and paste this code below in it (or overwrite the current version's lua with the code below):
local STOPTURRETFROMSPAWNPRODUCE = SentryGunBase.activate_as_module
function SentryGunBase:activate_as_module(team_type, tweak_table_id, ...)
STOPTURRETFROMSPAWNPRODUCE(self, team_type, tweak_table_id, ...)
if tostring(team_type) == "combatant" or tostring(tweak_table_id) == "swat_van_turret_module" then
self._unit:character_damage():disable(nil, "explosion")
end
end