File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 5
5
using Oxide . Core ;
6
6
using System ;
7
7
8
- // Changes:
9
- // - Saving dataint for keys
10
- // - Fixed error with NPC deaths
11
-
12
8
namespace Oxide . Plugins
13
9
{
14
- [ Info ( "Backpacks" , "LaserHydra" , "2.1.7 " , ResourceId = 1408 ) ]
10
+ [ Info ( "Backpacks" , "LaserHydra" , "2.1.8 " , ResourceId = 1408 ) ]
15
11
[ Description ( "Allows players to have a Backpack which provides them extra inventory space." ) ]
16
12
internal class Backpacks : RustPlugin
17
13
{
@@ -80,7 +76,7 @@ private class Backpack
80
76
public StorageSize Size =>
81
77
_instance . permission . UserHasPermission ( ownerID . ToString ( ) , "backpacks.use.large" ) ? StorageSize . Large :
82
78
( _instance . permission . UserHasPermission ( ownerID . ToString ( ) , "backpacks.use.medium" ) ? StorageSize . Medium :
83
- ( _instance . permission . UserHasPermission ( ownerID . ToString ( ) , "backpacks.use.medium " ) ? StorageSize . Small : Configuration . BackpackSize ) ) ;
79
+ ( _instance . permission . UserHasPermission ( ownerID . ToString ( ) , "backpacks.use.small " ) ? StorageSize . Small : Configuration . BackpackSize ) ) ;
84
80
85
81
public Backpack ( ulong id )
86
82
{
You can’t perform that action at this time.
0 commit comments