Display carry heavy objects on the clonk's back while swimming (#1764)

install-platforms
Fulgen301 2017-08-08 16:25:31 +02:00 committed by Julius Michaelis
parent eb1657c3e3
commit f80e9dbd1a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public func GetCarryBone() { return "main"; }
public func GetCarrySpecial(clonk)
{
var action = clonk->~GetAction();
if(action == "Scale" || action == "Hangle" || action == "Push")
if(action == "Scale" || action == "Hangle" || action == "Push" || action == "Swim")
return "skeleton_body";
}