Well, that's what happens if we end up copy-pasting all the stuff, right? :P

master
Icedream 2013-12-21 04:58:12 +01:00
parent 4d20224340
commit 7a3c9949e0
1 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ function SWEP:Disguise(entity)
owner:EmitSound("Disguiser.Disguise")
// We're now disguised!
victim:SetNetworkedBool("isDisguised", true)
owner:SetNetworkedBool("isDisguised", true)
self.DisguisedAs = entity:GetModel()
owner.Disguised = true
@ -229,7 +229,7 @@ function SWEP:Undisguise()
owner:EmitSound("Disguiser.Undisguise")
// We're no longer disguised
victim:SetNetworkedBool("isDisguised", false)
owner:SetNetworkedBool("isDisguised", false)
self:DisableThirdPerson(owner)
owner:DrawViewModel(true)
owner:DrawWorldModel(true)