diff --git a/SQF/dayz_code/Configs/CfgMagazines/Buildings/Sandbag.hpp b/SQF/dayz_code/Configs/CfgMagazines/Buildings/Sandbag.hpp
index 4a786ca97..be6d5be6c 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/Buildings/Sandbag.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/Buildings/Sandbag.hpp
@@ -64,8 +64,8 @@ class BagFenceRound_DZ_kit: CA_Magazine
scope = 2;
count = 1;
type = 256;
- displayName = $STR_EQUIP_NAME_21_ROUND;
- descriptionShort = $STR_EQUIP_DESC_21;
+ displayName = $STR_EQUIP_NAME_SANDBAGS_ROUND;
+ descriptionShort = $STR_EQUIP_DESC_SANDBAGS_ROUND;
model = "\dayz_equip\models\sandbags.p3d";
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml
index c61fd41ff..c5ead4983 100644
--- a/SQF/dayz_code/stringtable.xml
+++ b/SQF/dayz_code/stringtable.xml
@@ -4308,6 +4308,19 @@
Jutové pytle, lze naplnit pískem nebo zeminou a použít je pro postavení opevnění.
Des sacs de jute qui peuvent être remplis de sable et utilisés pour des fortifications militaires.
+
+ Sandbag Fence (Round)
+ Sandsack (rund)
+ Огр-е из мешков (Круг)
+
+
+ Sacks made of hessian that can be filled with sand or soil and used for military fortification.
+ Jutesäcke, die mit Sand oder Erde gefüllt für Befestigungen verwendet werden können.
+ Мешки с песком для создания оборонительных сооружений.
+ Bolsas hechas de arpillera que pueden llenarse con arena o tierra y ser usadas para fortificación militar.
+ Jutové pytle, lze naplnit pískem nebo zeminou a použít je pro postavení opevnění.
+ Des sacs de jute qui peuvent être remplis de sable et utilisés pour des fortifications militaires.
+
Tank Trap Kit
Panzersperre
@@ -30172,12 +30185,7 @@
Wall with combination lock door constructed out of plywood and lumber.
Eine große Holzwand mit verschlossener Tür bestehend aus Sperr- und Bauholz.
Большая деревянная стена с дверью и кодовым замком.
-
-
- Sandbag Fence (Round)
- Sandsack (rund)
- Огр-е из мешков (Круг)
-
+
Sandbag Nest
Sandsacknest
diff --git a/SQF/dayz_server/compile/server_publishObject.sqf b/SQF/dayz_server/compile/server_publishObject.sqf
index 7d73813d5..949e3b78e 100644
--- a/SQF/dayz_server/compile/server_publishObject.sqf
+++ b/SQF/dayz_server/compile/server_publishObject.sqf
@@ -1,6 +1,6 @@
#include "\z\addons\dayz_server\compile\server_toggle_debug.hpp"
-private ["_isStatic","_type","_objectUID","_characterID","_object","_worldspace","_key","_ownerArray","_inventory","_clientKey","_exitReason","_player","_playerUID"];
+private ["_type","_objectUID","_characterID","_object","_worldspace","_key","_ownerArray","_inventory","_clientKey","_exitReason","_player","_playerUID"];
if (count _this < 6) exitWith {diag_log "Server_PublishObj error: Wrong parameter format";};