mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Fix MoMMIs being unable to reinforce glass.
This commit is contained in:
@@ -11,7 +11,7 @@ Click [here](https://github.com/Baystation12/Baystation12/archive/master.zip) to
|
|||||||
|
|
||||||
The more complicated and easier to update method is using git. You'll need to download git or some client from [here](http://git-scm.com/). When that's installed, right click in any folder and click on "Git Bash". When that opens, type in:
|
The more complicated and easier to update method is using git. You'll need to download git or some client from [here](http://git-scm.com/). When that's installed, right click in any folder and click on "Git Bash". When that opens, type in:
|
||||||
|
|
||||||
git clone git@github.com:Baystation12/Baystation12.git
|
git clone https://github.com/Baystation12/Baystation12.git
|
||||||
|
|
||||||
(hint: hold down ctrl and press insert to paste into git bash)
|
(hint: hold down ctrl and press insert to paste into git bash)
|
||||||
|
|
||||||
@@ -58,6 +58,12 @@ When you have done this, you'll need to recompile the code, but then it should w
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
For a basic setup, simply copy every file from config-example to config.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
### SQL Setup
|
### SQL Setup
|
||||||
|
|
||||||
The SQL backend for the library and stats tracking requires a MySQL server. Your server details go in /config/dbconfig.txt, and the SQL schema is in /SQL/tgstation_schema.sql. More detailed setup instructions arecoming soon, for now ask in our IRC channel.
|
The SQL backend for the library and stats tracking requires a MySQL server. Your server details go in /config/dbconfig.txt, and the SQL schema is in /SQL/tgstation_schema.sql. More detailed setup instructions arecoming soon, for now ask in our IRC channel.
|
||||||
|
|||||||
@@ -42,7 +42,10 @@
|
|||||||
var/replace = (user.get_inactive_hand()==G)
|
var/replace = (user.get_inactive_hand()==G)
|
||||||
G.use(1)
|
G.use(1)
|
||||||
if (!G && !RG && replace)
|
if (!G && !RG && replace)
|
||||||
user.put_in_hands(RG)
|
if(isMoMMI(user))
|
||||||
|
RG.loc=get_turf(user)
|
||||||
|
else
|
||||||
|
user.put_in_hands(RG)
|
||||||
else
|
else
|
||||||
return ..()
|
return ..()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user